diff options
author | Blaž Hrastnik | 2021-03-05 08:55:06 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-05 08:55:06 +0000 |
commit | 05aa0d6991820625189c7e367a6d033682ef4e4e (patch) | |
tree | 5df9b307e4cdb87c4566d40e4d67996457ea057c /helix-term/src/commands.rs | |
parent | 1d42b959159751078b3bbc159a45cebe51d924fa (diff) |
minor: dead code
Diffstat (limited to 'helix-term/src/commands.rs')
-rw-r--r-- | helix-term/src/commands.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index e6b7cebd..4a5f1007 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -797,10 +797,6 @@ pub mod insert { } } -pub fn insert_char_prompt(prompt: &mut Prompt, c: char) { - prompt.insert_char(c); -} - // Undo / Redo // TODO: each command could simply return a Option<transaction>, then the higher level handles |