Can I run the compiler without it opening a pane ? #3155
-
Hello, I'm searching for a certain setup and I might have missed a configuration parameter, but I've been unable to do what I want for a few days. To put it shortly, I want to launch the compiler |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
I really don't understand what you mean. Starting the compiler should neither open a neovim buffer or open a window. There's no such thing as "a pane" in Vim/Neovim lingo, so I guess you mean "window". VimTeX also doesn't generally open any buffers. Again, I think you are using the wrong vocabulary, which makes it hard to understand what you mean. Perhaps you are talking about the quickfix window? This is a feature in Vim where, after compiling, we parse the logs for errors and show them in a dedicated window called the quickfix window. By default, this will open if there are errors or warnings. If you don't care about these, you can disable it with e.g. |
Beta Was this translation helpful? Give feedback.
I really don't understand what you mean. Starting the compiler should neither open a neovim buffer or open a window. There's no such thing as "a pane" in Vim/Neovim lingo, so I guess you mean "window".
VimTeX also doesn't generally open any buffers. Again, I think you are using the wrong vocabulary, which makes it hard to understand what you mean.
Perhaps you are talking about the quickfix window? This is a feature in Vim where, after compiling, we parse the logs for errors and show them in a dedicated window called the quickfix window. By default, this will open if there are errors or warnings. If you don't care about these, you can disable it with e.g.
let g:vimtex_quickfix_mode = 0
. No…