diff options
author | Blaž Hrastnik | 2022-03-04 04:42:47 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-03-07 05:41:28 +0000 |
commit | 19247ff0ec448a07b1f57b646738a606f73f61b5 (patch) | |
tree | 7145eeedd6da99c435080ee56bd0e619b353d800 /xtask | |
parent | 9bfb0caf1b4bafdac8eb964f38f7820740056fff (diff) |
Split out typable commands into a separate file
Diffstat (limited to 'xtask')
-rw-r--r-- | xtask/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs index d24a29cc..ad0eb16f 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -107,7 +107,7 @@ pub mod md_gen { use crate::path; use std::fs; - use helix_term::commands::cmd::TYPABLE_COMMAND_LIST; + use helix_term::commands::TYPABLE_COMMAND_LIST; pub const TYPABLE_COMMANDS_MD_OUTPUT: &str = "typable-cmd.md"; pub const LANG_SUPPORT_MD_OUTPUT: &str = "lang-support.md"; |