You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
问题2:
Taglist: Exuberant ctags (http://ctags.sf.net) not found in PATH. Plugin is not loaded.
解决方案:
在Powervim/.vimrc文件中(最下面)添加(中文也要添加):
let Tlist_Show_One_File=1 "不同时显示多个文件的tag,只显示当前文件的
let Tlist_Exit_OnlyWindow=1 "如果taglist窗口是最后一个窗口,则退出vim
let Tlist_Ctags_Cmd="/usr/bin/ctags" "将taglist与ctags关联
The text was updated successfully, but these errors were encountered:
问题1:
处理 /home/xx/.vimrc时发生错误:
第 43 行:
E197: 不能设定语言为 "zh_CN.gb2312"
解决方案(一行一行运行):
cd /var/lib/locales/supported.d/
sudo vi zh-hans (用管理员权限打开zh-hans)
添加以下两行(原有的不要删):
zh_CN.GBK GBK
zh_CN GB2312
按Esc后:wq! 保存退出
sudo dpkg-reconfigure --force locales
选择zh_CN.GBK
之后等运行zh_CN.UTF-8... 结束就可以了
问题2:
Taglist: Exuberant ctags (http://ctags.sf.net) not found in PATH. Plugin is not loaded.
解决方案:
在Powervim/.vimrc文件中(最下面)添加(中文也要添加):
let Tlist_Show_One_File=1 "不同时显示多个文件的tag,只显示当前文件的
let Tlist_Exit_OnlyWindow=1 "如果taglist窗口是最后一个窗口,则退出vim
let Tlist_Ctags_Cmd="/usr/bin/ctags" "将taglist与ctags关联
The text was updated successfully, but these errors were encountered: