aboutsummaryrefslogtreecommitdiff
path: root/autoload/camelcasemotion.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/camelcasemotion.vim')
-rw-r--r--autoload/camelcasemotion.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/autoload/camelcasemotion.vim b/autoload/camelcasemotion.vim
index 6b6dd50..eebcc74 100644
--- a/autoload/camelcasemotion.vim
+++ b/autoload/camelcasemotion.vim
@@ -33,6 +33,7 @@ call add(s:forward_to_next_list, '\m\<\D') " word
call add(s:forward_to_next_list, '^$') " empty line
call add(s:forward_to_next_list, '\%(^\|\s\)\+\zs\k\@!\S') " non-keyword after whitespaces
call add(s:forward_to_next_list, '\>\<') " non-whitespace after word
+call add(s:forward_to_next_list, '[{}\[\]()<>]') " brackets, parens, braces
call add(s:forward_to_next_list, '\d\+') " number
call add(s:forward_to_next_list, '\l\+\zs\%(\u\|\d\)') " lowercase followed by capital letter or number
call add(s:forward_to_next_list, '\u\+\zs\%(\u\l\|\d\)') " ALLCAPS followed by CamelCase or number