Configure vim's: make para alternar ou abrir abas em erro

4

Quando executo :make do vim e há um erro, ele abre esse arquivo no número da linha de erro no buffer atual. Se possível, eu preferiria alternar as guias para o arquivo, se já estiver aberto, ou criar uma nova guia com o arquivo de erro. Isso é possível?

    
por Peter Zich 25.04.2012 / 08:51

1 resposta

3

Você pode trabalhar com uma janela de quickfix:

In the quickfix window, each line is one error. The line number is equal to the error number. You can use ":.cc" to jump to the error under the cursor. Hitting the Enter key or double-clicking the mouse on a line has the same effect. The file containing the error is opened in the window above the quickfix window. If there already is a window for that file, it is used instead.

(da quickfix.txt do Vim, Seção 2)

Basta digitar

:help quickfix-window

no vim para chegar lá.

Por exemplo

:copen

abre uma janela de quickfix.

    
por 25.04.2012 / 12:01

Tags