We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6741089 commit 66d3529Copy full SHA for 66d3529
lib/grammars/python.coffee
@@ -2,14 +2,14 @@ GrammarUtils = require '../grammar-utils'
2
3
exports.Python =
4
'Selection Based':
5
- command: 'python'
+ command: 'python3'
6
args: (context) ->
7
code = context.getCode()
8
tmpFile = GrammarUtils.createTempFileWithCode(code)
9
return ['-u', tmpFile]
10
11
'File Based':
12
13
args: ({filepath}) -> ['-u', filepath]
14
15
exports.MagicPython = exports.Python
0 commit comments