I'm using vim with python-mode plugin. When I quit vim with wq
or q
, the code check on the bottom doesn't quit. Just wondering if there is a config for quitting code check when vim quit? Thanks
Asked
Active
Viewed 262 times
2

Meninx - メネンックス
- 6,331
- 16
- 30

yfeng
- 61
- 5
-
I don't use that plugin but looks like it keeps the location list window open while you code? You can use `:wqa` or `:qa` to close all windows. – iovis Aug 19 '16 at 17:56
-
I also don't use that plugin but it sounds something like this issue: http://stackoverflow.com/questions/2066590/automatically-quit-vim-if-nerdtree-is-last-and-only-buffer, so it might be usefull to you! – dNitro Aug 19 '16 at 19:29
-
@iovis, thanks! :wqa or :qa works fine with me – yfeng Aug 19 '16 at 21:01
-
@dNitro, I changed a little bit of the vimscript from here: https://github.com/scrooloose/nerdtree/issues/21 and it works on my vim. Thanks! – yfeng Aug 19 '16 at 21:01
-
@yfeng maybe you could post what you modified as an answer and accept it? glad you found a solution. – metasyn Feb 02 '17 at 17:15