diff options
author | Ivan Tham | 2021-06-05 10:15:50 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-06 12:30:18 +0000 |
commit | 40744ce8356cb9307f8cb9b2adf2c57b80b1ef9f (patch) | |
tree | 3fc2a99ecdeb9e027d7c093c660e8863622b46b2 /helix-core/src/lib.rs | |
parent | aa8a8baeeb06cd94ed6329c535483f30835ec426 (diff) |
Add ctrl-w in insert mode
It seemed to panic when I pressed too many times, but that is from
lsp side.
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r-- | helix-core/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index 6b93de78..4be3e71b 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -16,6 +16,7 @@ pub mod selection; mod state; pub mod syntax; mod transaction; +pub mod words; pub(crate) fn find_first_non_whitespace_char2(line: RopeSlice) -> Option<usize> { // find first non-whitespace char |