Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过在 .vimrc 文件中添加以下语句来添加 cscope 使用的快捷方式。
" cscope mappings if has("cscope") nmap <C-\>s :scs find s <C-R>=expand("<cword>")<CR><CR> endif
我:so ~/.vimrc在 vim 应用程序中使用了该文件。
:so ~/.vimrc
但是,当我单击Ctrl+\并且s我的终端挂起时。请帮忙。我的外壳是/usr/local/bin/tcsh
Ctrl+\
s
/usr/local/bin/tcsh
谢谢
奇丹巴拉姆
它挂起的原因可能是因为您没有正确按下映射。按 ctrl+\ 然后 s 。但是您可能正在按 ctrl+s 导致挂起。要确定是否是 ctrl+s 是罪魁祸首,请尝试 ctrl+q 查看终端是否恢复,然后您可以继续。