diff options
author | Josh Rahm <rahm@google.com> | 2022-08-27 13:13:52 -0600 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2022-08-27 13:13:52 -0600 |
commit | 9fc81bbe8792f8d37efa494428638d4c36844e2b (patch) | |
tree | 094b4690e024f3397f7721c99e76eec76382b051 | |
parent | 8a1c3a51721c2beb0f3bee92589ffbe88b8d3cbc (diff) | |
download | fieldmarshal.vim-9fc81bbe8792f8d37efa494428638d4c36844e2b.tar.gz fieldmarshal.vim-9fc81bbe8792f8d37efa494428638d4c36844e2b.tar.bz2 fieldmarshal.vim-9fc81bbe8792f8d37efa494428638d4c36844e2b.zip |
subwords.vim: T/F should clear the subword mark.
-rw-r--r-- | plugin/subwords.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugin/subwords.vim b/plugin/subwords.vim index bab15cf..163f97d 100644 --- a/plugin/subwords.vim +++ b/plugin/subwords.vim @@ -85,6 +85,8 @@ if g:subwords_include_bindings noremap <expr> <silent> t <SID>clear_subword_mark() . "t" noremap <expr> <silent> f <SID>clear_subword_mark() . "f" + noremap <expr> <silent> T <SID>clear_subword_mark() . "T" + noremap <expr> <silent> F <SID>clear_subword_mark() . "F" endif " Return the type of meta-word (i.e. camelCase, snake_case). If |