Please vote:
http://sublimetext.userecho.com/topic/93643-/
C0D312 wrote:I'd be happy to help if you'd like (my diabolical plan to get my hands on it faster). I'm on OS X btw.
Any plans on charging for this?
GuriK wrote:Is it possible to just run current file and see output ?
for example command like this : node server.js
is there a way to set this up so that I can use iPython
>>> import foo
>>> foo.fact(6)
720
>>> foo.fact('asd')
>>> 1+1
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/user/Utilities/foo.py", line 41, in fact
return 1 if n == 1 else n * fact(n - 1)
TypeError: unsupported operand type(s) for -: 'str' and 'int'
2
>>> sys.version
'3.2 (r32:88452, Feb 20 2011, 10:19:59) \n[GCC 4.0.1 (Apple Inc. build 5493)]'
>>> >>> import foo
>>> foo.fact(10)
3628800
>>> foo.fact('asd')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/user/Utilities/foo.py", line 41, in fact
return 1 if n == 1 else n * fact(n - 1)
TypeError: unsupported operand type(s) for -: 'str' and 'int'
>>> sys.version
'2.7.1 (r271:86832, Jun 16 2011, 16:59:05) \n[GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)]'
>>> havri wrote:Does anyone know where is the problem, please?
"cmd": ["python", "-i", "-u"]C0D312 wrote:How's progress on terminal emulation?
Return to Plugin Announcements
Users browsing this forum: No registered users and 6 guests