Sublime Text 2 + Eval in REPL
Posted
by
user330121
on Super User
See other posts from Super User
or by user330121
Published on 2014-06-06T18:26:27Z
Indexed on
2014/06/07
3:33 UTC
Read the original article
Hit count: 303
keyboard-shortcuts
|sublime-text-2
Using sublime text 2 on windows 8, I've set my key-bindings to:
[
{
"keys": ["ctrl+alt+f"],
"args": {
"id": "repl_f#",
"file": "config/F/Main.sublime-menu"
},
"command": "run_existing_window_command"
},
{
"keys": ["ctrl+shift+enter"],
"args": {
"scope": "selection"
},
"command": "repl_transfer_current"
}
]
But when I press "ctrl+shift+enter" I get the following error. Does anyone know how to resolve this?
Traceback (most recent call last):
File ".\sublime_plugin.py", line 356, in run_
File ".\text_transfer.py", line 123, in run
File ".\sublimerepl.py", line 437, in find_repl
File ".\repls\subprocess_repl.py", line 185, in is_alive
File ".\subprocess.py", line 705, in poll
File ".\subprocess.py", line 874, in _internal_poll
WindowsError: [Error 6] The handle is invalid
© Super User or respective owner