diff --git a/autoload/xolox/notes.vim b/autoload/xolox/notes.vim index a5a90a1..562db77 100644 --- a/autoload/xolox/notes.vim +++ b/autoload/xolox/notes.vim @@ -1,12 +1,12 @@ " Vim auto-load script " Author: Peter Odding -" Last Change: May 21, 2013 +" Last Change: May 25, 2013 " URL: http://peterodding.com/code/vim/notes/ " Note: This file is encoded in UTF-8 including a byte order mark so " that Vim loads the script using the right encoding transparently. -let g:xolox#notes#version = '0.21.4' +let g:xolox#notes#version = '0.21.5' let s:scriptdir = expand(':p:h') function! xolox#notes#init() " {{{1 @@ -287,7 +287,7 @@ function! xolox#notes#select(filter) " {{{1 let choice = inputlist(choices) if choice > 0 && choice < len(choices) let fname = values[choice] - call xolox#misc#msg#debug("notes.vim %s: User selected note: %s", g:xolox#notes#version, string(filter), fname) + call xolox#misc#msg#debug("notes.vim %s: User selected note: %s", g:xolox#notes#version, fname) return fname endif endif