在只读模式下使用 VIM 作为 cscope 中的查看器
我尝试将环境变量 VIEWER/EDITOR 设置为: '/usr/bin/vim -R',但是,我收到错误:无法执行 vim -R:没有这样的文件或目录
cscope 中是否有一个标志可以以只读模式打开文件?或者,EDITOR/VIEWER可以设置为只读模式的VIM吗?提前致谢!
I tried setting the environment variables VIEWER/EDITOR to: '/usr/bin/vim -R', but, I got the error:Cannot exec vim -R: No such file or directory
Is there a flag in cscope to open up files in read-only mode? Or, can the EDITOR/VIEWER be set to VIM in read-only mode? Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这只是空白的问题。
最简单的解决方案是使用通常与 vim 一起安装的
view
。它与
vim -R
相同。其他解决方案只是在您的路径中创建简单的脚本只需调用
vim -R
即可。然后使用 chmod +x view.sh 创建一个文件 view.sh
,之后您也可以使用它。
最后的选择是尝试不带引号的
'usr/bin/vim -R'
。this is just a problem with whitespace.
The easiest solution is to use
view
which is usually installed with vim.It is the same as
vim -R
. Other solutions are just creating simple scripts in your paththat simply call
vim -R
.Create a file view.sh with
then
chmod +x view.sh
and after that you can use this also.The final option would be to try
'usr/bin/vim -R'
without the quotes.只需在 gnome-terminal 中输入“export CSCOPE_EDITOR=view”,然后执行 cscope -R :它将以只读模式打开 cscope
Just type 'export CSCOPE_EDITOR=view' in gnome-terminal and then do cscope -R : It will open cscope in read-only mode