Python2or3.x.xで動かしたい
確認Version: Atom1.25.0
script3.17.3
初投稿です。
CoffeeScriptに詳しくないので...うまくやる人はもっとうまくやるはず...。
とりあえず動けばいい人向けです。
-
パッケージ"script"をインストール
-
コンフィグフォルダを開く
Settings -> OpenConfigFolder -
"python.coffee"を開く
script -> lib -> grammars -> python.coffee -
以下を修正する
exports.Python =
'Selection Based':
command: 'python'
args: (context) -> ['-u', '-c', context.getCode()]
'File Based':
command: 'python'
args: ({filepath}) -> ['-u', filepath]
python2.x.xを使用するならcommand: 'python'
python3.x.xを使用するならcommand: 'python3'
以上...他に根本的な解決の仕方がある気がする...。