Skip to content

Commit

Permalink
Bug fix for xolox#notes#select()
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed May 25, 2013
1 parent 061c030 commit 825b30e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions autoload/xolox/notes.vim
@@ -1,12 +1,12 @@
" Vim auto-load script
" Author: Peter Odding <peter@peterodding.com>
" 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('<sfile>:p:h')

function! xolox#notes#init() " {{{1
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 825b30e

Please sign in to comment.