diff options
Diffstat (limited to '')
-rw-r--r-- | autoload/unison.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/unison.vim b/autoload/unison.vim index e91699f0..292deda6 100644 --- a/autoload/unison.vim +++ b/autoload/unison.vim @@ -66,7 +66,7 @@ function! unison#Complete(findstart, base) abort " " (List.fol<cursor> " ^ - while start > 0 && line[start - 1] !~ '\v\s|[(){}\[\]]' + while start > 0 && line[start - 1] !~ '\v\s|[!(){}\[\]]' let start -= 1 endwhile return start |