TL DR
How to find exactly where the error started vimor nvim(which file?) When I am interested in fixing the actual problem, and not just removing the bad plugin? Anything better than straceguesswork to find the source of the error?
Problem
I often add a plugin to my configurator vimor nvimget errors on hooks (opening a buffer, closing, writing):
"test.py" [New] 0L, 0C written
Error detected while processing function 343[12]..272:
line 8:
E716: Key not present in Dictionary: _exec
E116: Invalid arguments for function get(a:args, 'exec', a:1['_exec'])
E15: Invalid expression: get(a:args, 'exec', a:1['_exec'])
The problem is that I have no idea where they come from, only get the line number of an unknown file, and I know that this is not my configuration file vim/ nvim.
source
share