Skip to content

Commit 825b30e

Browse files
committed
Bug fix for xolox#notes#select()
1 parent 061c030 commit 825b30e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

autoload/xolox/notes.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
" Vim auto-load script
22
" Author: Peter Odding <peter@peterodding.com>
3-
" Last Change: May 21, 2013
3+
" Last Change: May 25, 2013
44
" URL: http://peterodding.com/code/vim/notes/
55

66
" Note: This file is encoded in UTF-8 including a byte order mark so
77
" that Vim loads the script using the right encoding transparently.
88

9-
let g:xolox#notes#version = '0.21.4'
9+
let g:xolox#notes#version = '0.21.5'
1010
let s:scriptdir = expand('<sfile>:p:h')
1111

1212
function! xolox#notes#init() " {{{1
@@ -287,7 +287,7 @@ function! xolox#notes#select(filter) " {{{1
287287
let choice = inputlist(choices)
288288
if choice > 0 && choice < len(choices)
289289
let fname = values[choice]
290-
call xolox#misc#msg#debug("notes.vim %s: User selected note: %s", g:xolox#notes#version, string(filter), fname)
290+
call xolox#misc#msg#debug("notes.vim %s: User selected note: %s", g:xolox#notes#version, fname)
291291
return fname
292292
endif
293293
endif

0 commit comments

Comments
 (0)