way to debug vim
Find the right issue submit info, might be some info for getting verbose of runtime debug. Such as SpaceVim Issue Tracker or vim-jedi issue tracker, providing detailed guide for stepwise debugging info
Dis functional shortcut key
Typical scenario would be triggered some error or unexpected behavior after press some key. Then it's essential to get the details by identify what happened firstly after certain key pressed (or what vim thought should be happened)
:verb map K?
Python Plugin
For python plugin, try to find python env issue inside of vim
:python import sys; print sys.path; import jedi
评论