Sublime Text 2 console input

前端 未结 2 1108
野趣味
野趣味 2020-11-22 06:07

I use Sublime Text 2 but it won\'t let me enter any value when my code asks for user input. (In other words: input() in Python and gets in Ruby fai

2条回答
  •  遥遥无期
    2020-11-22 07:08

    Sublime text doesn't support that. But you can get around it (at least in python) by using SublimeREPL, I use this for everything, it works pretty great. Its a little cooky though, as the tab is still editable like a normal sublime tab (which is good and bad)...

    It also allows you to run the interpreter in multiple tabs, its basically awesome.

    To install it you need package control this lets you easily install plugins. To get it go here, and follow the instructions. Once thats done:

    • in Sublime press ctrl + shift + P (linux command in ST for 'goto anything').
    • Type in 'install',
    • click on 'sublime package control: install package'.
    • Then select SublimeREPL. It will install it automatically.
    • To use it go to Tools>sublimerepl>python from the menus.

    To make the default build system SublimeREPL, you can follow these instructions.

提交回复
热议问题