sublimeのNode.jsプラグインとtext3環境を構築する

1.sublimeをダウンロード
URL:http://www.sublimetext.com/2

2.sublimeのnodejsプラグインをダウンロード
https://github.com/tanepiper/SublimeText-Nodejs

3.zipファイルを解凍し、フォルダーを"Nodejs"にリネームする

4.sublimeを開く、"preference" –> “Browse packages", ディレクトリを開く

5."Nodejs"フォルダを4のフォルダにコピーする

6.NodejsフォルダのNodejs.sublime-build”を変更
内容:
{
“cmd": [“node", “$file"],
“file_regex": “^[ ]*File \"(…*?)\", line ([0-9]*)",
“selector": “source.js",
“shell":true,
“encoding": “cp1252",
“windows":
{
“cmd": [“taskkill /F /IM node.exe & node", “$file"]
},
“linux":
{
“cmd": [“killall node; node", “$file"]
}
}

修正前:"encoding": “cp1252″
修正後:"encoding": “utf8"

7.“Nodejs.sublime-settings"または“preference” –> “package settings” –> “Nodejs”–>“setting-default”
下記を変更
{
// save before running commands
“save_first": true,
// if present, use this command instead of plain “node"
// e.g. “/usr/bin/node" or “C:\bin\node.exe"
“node_command": /usr/bin/nodejs,
// Same for NPM command
“npm_command": /usr/bin/npm,
// as 'NODE_PATH’ environment variable for node runtime
“node_path": false,

“expert_mode": false,

“ouput_to_new_tab": false
}

Ruby

Posted by arkgame