0

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
Ari
  • 4,121
  • 8
  • 40
  • 56
  • Do you get the same error with another key mapping? – AGS Jun 10 '14 at 17:32
  • @AGS No, I do not get the same error with any other key mapping. – Ari Jun 11 '14 at 16:18
  • Well, I am not sure how to solve the problem - but see these two SublimeREPL issues [#271](https://github.com/wuub/SublimeREPL/issues/271) and [#312](https://github.com/wuub/SublimeREPL/issues/312). – AGS Jun 11 '14 at 16:52
  • Thanks for the links. I was able to "solve" the issue by mapping the key-binding to another configuration, specifically `alt+enter` – Ari Jun 24 '14 at 16:48

0 Answers0