长文件路径在 Vim 快速修复窗口中被分成多行,然后例如不允许跳转到 qf.xml 中显示的错误位置。
文件(和周围的行)在 quickfix 窗口中显示为(示例是 neomakes pdflatex 的输出)
|| Enter file name:
|| /long/path/to/file/.../loca
tionOfTexFiles/myTexFile.tex|144 error| Emergency stop.
|| read
为了能够通过 lnext/cnext 跟随文件行,我应该有
/long/path/to/file/.../locationOfTexFiles/myTexFile.tex|144 error| Emergency stop.
对于快速修复文件,我有以下相关(在我看来)设置为:
setlocal nolinebreak
setlocal nowrap
setlocal textwidth=9999
所以我想知道如何在快速修复窗口中的一行中显示文件路径?