Skip to content

Commit 6468ae9

Browse files
committed
Make :SearchNotes support | without escaping (reported by Avi Yagodnick)
1 parent 96a16ed commit 6468ae9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugin/notes.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
" Vim plug-in
22
" Author: Peter Odding <peter@peterodding.com>
3-
" Last Change: June 14, 2011
3+
" Last Change: June 17, 2011
44
" URL: http://peterodding.com/code/vim/notes/
55
" License: MIT
6-
" Version: 0.9.1
6+
" Version: 0.9.2
77

88
" Support for automatic update using the GLVS plug-in.
99
" GetLatestVimScripts: 3375 1 :AutoInstall: notes.zip
@@ -45,7 +45,7 @@ endif
4545
command! -bar -bang -nargs=? -complete=customlist,xolox#notes#cmd_complete Note call xolox#notes#edit(<q-bang>, <q-args>)
4646
command! -bar -bang -range NoteFromSelectedText call xolox#notes#from_selection(<q-bang>)
4747
command! -bar -bang DeleteNote call xolox#notes#delete(<q-bang>)
48-
command! -bar -bang -nargs=? SearchNotes call xolox#notes#search(<q-bang>, <q-args>)
48+
command! -bang -nargs=? SearchNotes call xolox#notes#search(<q-bang>, <q-args>)
4949
command! -bar -bang RelatedNotes call xolox#notes#related(<q-bang>)
5050
command! -bar -bang -nargs=? RecentNotes call xolox#notes#recent(<q-bang>, <q-args>)
5151

0 commit comments

Comments
 (0)