遗憾的是,我是Vimscript的新手,但是未能编写将.coffee文件切换为相应的.js文件的函数.
我想知道是否有人已经这样做了?
我知道vim-coffee-script插件有功能:CoffeeCompile监视,但是您看到的文件不是您存储在本地的真实文件.
具有这样的功能(如果将.coffee和.js文件存储在同一目录中)会很酷:
function! GoToJS()
" get current file path in a string variable
" change the .coffee extention to a .js extention
" open the .js file
endfunction
这样的事情真的很酷-
解决方法:
尝试使用vim插件a.vim
.它是可配置的.将它们添加到.vimrc中:
let g:alternateExtensions_coffee = 'js'
let g:alternateExtensions_js = 'coffee'