我在linux c ++项目开发团队中,团队构建系统将构建结果转储到名为" build.result"的文件中。
我正在检查另一位同事的构建问题,并且必须vi这个" build.result"并通过那些构建错误(gcc编译,链接等)逐行检查,然后使用另一个终端来更改代码。
这不方便,我想知道是否
1. vim can use "quickfix" window to load this "build.result"
2. so that I can traverse errors lines that has file names, and press "enter" to open them.
感谢。
答案 0 :(得分:2)
尝试vim -q build.result
-q -qf -q [errorfile] QuickFix mode. The file with the name [errorfile] is read and the first error is displayed. See quickfix. If [errorfile] is not given, the 'errorfile' option is used for the file name. See 'errorfile' for the default value. {not in Vi}