MCPcopy Create free account
hub / github.com/Shougo/deoplete.nvim / error_vim

Function error_vim

rplugin/python3/deoplete/util.py:103–110  ·  view source on GitHub ↗
(vim: Nvim, msg: str)

Source from the content-addressed store, hash-verified

101
102
103def error_vim(vim: Nvim, msg: str) -> None:
104 throwpoint = vim.eval('v:throwpoint')
105 if throwpoint != '':
106 error(vim, 'v:throwpoint = ' + throwpoint)
107 exception = vim.eval('v:exception')
108 if exception != '':
109 error(vim, 'v:exception = ' + exception)
110 error_tb(vim, msg)
111
112
113def escape(expr: str) -> str:

Callers 2

print_errorMethod · 0.90
print_errorMethod · 0.90

Calls 2

errorFunction · 0.85
error_tbFunction · 0.85

Tested by

no test coverage detected