可悲的是,我是 Vimscript 的新手,未能编写从.coffee
文件切换到相应.js
文件的函数。
我想知道是否有人已经这样做了?
我知道有:CoffeeCompile watch
vim-coffee-script 插件的功能,但是您看到的文件不是您在本地存储的真实文件。
拥有这样的功能会很酷(如果您将.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
像这样的东西真的很酷-