Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions autoload/xolox/misc/msg.vim
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ function! xolox#misc#msg#info(...) " {{{1
"
" [printf()]: http://vimdoc.sourceforge.net/htmldoc/eval.html#printf()
" [string()]: http://vimdoc.sourceforge.net/htmldoc/eval.html#string()
call s:show_message('title', a:000)
call s:show_message('None', a:000)
endfunction

function! xolox#misc#msg#warn(...) " {{{1
" Show a formatted warning message to the user.
"
" This function has the same argument handling as the
" `xolox#misc#msg#info()` function.
call s:show_message('warningmsg', a:000)
call s:show_message('WarningMsg', a:000)
endfunction

function! xolox#misc#msg#debug(...) " {{{1
Expand All @@ -50,7 +50,7 @@ function! xolox#misc#msg#debug(...) " {{{1
"
" ['verbose']: http://vimdoc.sourceforge.net/htmldoc/options.html#'verbose'
if &vbs >= 1
call s:show_message('question', a:000)
call s:show_message('Question', a:000)
endif
endfunction

Expand Down