在只读模式下使用 VIM 作为 cscope 中的查看器

发布于 2024-12-04 22:47:31 字数 175 浏览 2 评论 0原文

我尝试将环境变量 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谁与争疯 2024-12-11 22:47:31

这只是空白的问题。
最简单的解决方案是使用通常与 vim 一起安装的 view
它与vim -R相同。其他解决方案只是在您的路径中创建简单的脚本
只需调用 vim -R 即可。
然后使用 chmod +x view.sh 创建一个文件 view.sh

#!/bin/sh
vim -R $@

,之后您也可以使用它。

最后的选择是尝试不带引号的 '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 path
that simply call vim -R.
Create a file view.sh with

#!/bin/sh
vim -R $@

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.

彩扇题诗 2024-12-11 22:47:31

只需在 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文