aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-22 22:05:29 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-22 22:05:29 +1200
commit85f334a1754dcda9eb66f2305208b343763346a5 (patch)
treed960a6eefb43df1b08a88a6d9c0b92cb9e5e3db6
parentFind digraph help file a little more correctly (diff)
downloadvim-digraph-search-85f334a1754dcda9eb66f2305208b343763346a5.tar.gz
vim-digraph-search-85f334a1754dcda9eb66f2305208b343763346a5.zip
Remove unneeded pattern qualifier
-rw-r--r--autoload/digraph_search.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/digraph_search.vim b/autoload/digraph_search.vim
index d342f38..1a9dc92 100644
--- a/autoload/digraph_search.vim
+++ b/autoload/digraph_search.vim
@@ -45,7 +45,7 @@ function! s:Digraphs() abort
" Flag whether we're in one of the digraph tables; look for the heading
let table = table && strlen(line)
- \ || line =~# '\C\*digraph-table\%(-mbyte\)\=\*$'
+ \ || line =~# '\*digraph-table\%(-mbyte\)\=\*$'
" Skip to next line if not in a table
if !table
continue