0

我通过以下方式安装了 coffeeScript 和 CoffeeLint:

# .bashrc
export NODE_MODULES=/home/uqmlore1/apps/node_modules

$ npm install --prefix /home/uqmlore1/apps/node_modules -g coffee-script
$ coffee -v
CoffeeScript version 1.6.3

$ npm install --prefix /home/uqmlore1/apps/node_modules -g coffeelint
$ coffeelint
bash: coffeelint: command not found
$ ls ~/apps/node_modules/lib/node_modules/coffeelint/bin
coffeelint

比我用 vundle安装vim-coffee-script 插件。但是我无法从 Vim 编译,CoffeeLint 也不起作用。这是我用于 CoffeeScript的.vimrc 。我做错了什么?

4

1 回答 1

4

阅读手册会有所收获:

let coffee_linter = '/home/uqmlore1/apps/node_modules/lib/node_modules/coffeelint/bin/coffeelint'

在您.vimrc可能会有所帮助。

于 2013-10-15T07:39:04.610 回答