summaryrefslogtreecommitdiffstats
path: root/vim/vimrc
diff options
context:
space:
mode:
authorAudric Schiltknecht <audric.schiltknecht@viagenie.ca>2017-09-14 18:05:07 -0400
committerAudric Schiltknecht <audric.schiltknecht@viagenie.ca>2017-09-14 18:05:07 -0400
commitd3f01559abc553235c8ccfad02e2344afdc12417 (patch)
treeb106b6c8152cd869631d43d5718d5e02fd2cb34e /vim/vimrc
parentda596439bb47e7cd1966d2a5a36450d32e0c21dd (diff)
downloaddotfiles-d3f01559abc553235c8ccfad02e2344afdc12417.tar.gz
dotfiles-d3f01559abc553235c8ccfad02e2344afdc12417.tar.bz2
dotfiles-d3f01559abc553235c8ccfad02e2344afdc12417.zip
vim: Fix error with parens matching highlight
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 42e9d26..b1e17a3 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -335,7 +335,7 @@ autocmd BufNewFile * silent! call LoadTemplate('%:e', 'all')
autocmd BufRead * silent! call LoadTemplate('%:e', 'noTemplate')
" Surlignement des champs à remplir dans les templates
-3match Todo /<+.\++>/
+match Todo /<+.\++>/
"" Aide mémoire
" Variable indiquant l'état de l'affichage de l'aide
@@ -349,7 +349,7 @@ function! HelpMemory()
0read $HOME/.vim/memory.txt
highlight Memory ctermfg=white ctermbg=blue
"3match Memory /^.\+\ \+:/
- 3match Memory /<.\+>/
+ match Memory /<.\+>/
else
bdelete helpMemory
let g:helpDisplay = 0