Sublime Forum

The new build won't let me use a keybinding to run SublimeREPL

#41

It seems that “run_existing_window_command” doesn’t work in Sublime 4 / Windows 10.

[
{ “keys”: [“f6”], “command”: “run_existing_window_command”, “args”:
{
“id”: “repl_haskell”,
“file”: “Data/Packages/SublimeREPL/config/Haskell/Main.sublime-menu”
}
}]

So I fall back to

{ “keys”: [“ctrl+r”],
“command”: “repl_open”,
“args”: {
“cmd”: [“D:/Haskell/stackRepl.bat”, “$folder”],
“cwd”: “$folder”,
“encoding”: “utf8”,
“type”: “sublime_haskell”
}

0 Likes