Skip to content

Commit 91339ed

Browse files
committed
Fix echomsg call
Echomsg is a command, not Vimscript function. Also, call takes function name as first argument and other arguments as additional varargs.
1 parent 734c0a2 commit 91339ed

File tree

1 file changed

+1
-1
lines changed
  • rplugin/python3/deoplete/sources

1 file changed

+1
-1
lines changed

rplugin/python3/deoplete/sources/acid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def on_init(self, context):
6565
if loaded:
6666
self.acid_sessions = SessionHandler()
6767
else:
68-
self.vim.call('echom "Acid.nvim not found. Please install it."')
68+
self.vim.command('echomsg "Acid.nvim not found. Please install it."')
6969
self.sessions = {}
7070

7171
def get_wc(self, url):

0 commit comments

Comments
 (0)