Подскажите как использовать эти команды? Они только для компиляции и отладки СИ? Мне бы для пыха и питона...
:make - This will run the regular old make in the command line for you. :copen - Opens the quickfix window, to show the results of the compilation. Opens the window even if there are no errors in compilation. :cw[indow] - Opens the quickfix window only if there is an error. If quickfix window is open and there are now errors, the window is closed.
Double click or press enter on the error in the quick fix window to take you to the corresponding error in the source code.
:cn - Goto the next error in source code. :cp - Goto the previous error in source code. :cfirst - Goto the first error in source code. :clast - Goto the last error in source code.