当前位置: 首页 > 工具软件 > cVim > 使用案例 >

改变cvim的路径

步兴为
2023-12-01

1. 移动位置

按照网上的安装教程,cvim的所有文件夹doc、plugin、ftplugin等都需要直接放在 ~/.vim中。作为一个轻度强迫症,我想把他们都放入~/.vim/bundle/cvim中,然后这么放之后cvim无法正常工作,会报错。错误类似于”c-support/templates/Templates’ does not exist or is not readable“。

2. 修改c.vim

然后就开始了我的折腾。既然cvim的执行依靠c.vim,那么这个文件里或许有路径的设置。于是看代码,发现文件前面部分确实有好几处设置路径的地方。先备份然后修改,果然成功了。
打开c.vim文件,可以看到有Windows和Linux分支判断。我用的Linux操作系统,所以修改Linux部分。
修改了以下三处地方:
let s:plugin_dir = $HOME.’/.vim/bundle/cvim/’
let s:C_CodeSnippets = $HOME.’/.vim/bundle/cvim/c-support/codesnippets/’
let s:C_LocalTemplateFile = $HOME.’/.vim/bundle/cvim/c-support/templates/Templates’

 类似资料: