Make an error message more clear

This commit is contained in:
EinfachToll 2018-11-01 21:12:14 +01:00
parent 6a6aeff013
commit 90722a4703

View File

@ -743,7 +743,7 @@ function! vimwiki#base#edit_file(command, filename, anchor, ...)
try try
execute a:command fname execute a:command fname
catch /E37:/ catch /E37:/
echomsg 'Vimwiki: The current file is modified. Hint: Take a look at' echomsg 'Vimwiki: Can''t leave the current buffer, because it is modified. Hint: Take a look at'
\ ''':h g:vimwiki_autowriteall'' to see how to save automatically.' \ ''':h g:vimwiki_autowriteall'' to see how to save automatically.'
return return
catch /E325:/ catch /E325:/
@ -1292,12 +1292,10 @@ function! vimwiki#base#rename_link()
let new_link = input('Enter new name: ') let new_link = input('Enter new name: ')
if new_link =~# '[/\\]' if new_link =~# '[/\\]'
" It is actually doable but I do not have free time to do it.
echomsg 'Vimwiki Error: Cannot rename to a filename with path!' echomsg 'Vimwiki Error: Cannot rename to a filename with path!'
return return
endif endif
" check new_fname - it should be 'good', not empty
if substitute(new_link, '\s', '', 'g') == '' if substitute(new_link, '\s', '', 'g') == ''
echomsg 'Vimwiki Error: Cannot rename to an empty filename!' echomsg 'Vimwiki Error: Cannot rename to an empty filename!'
return return