Postępując zgodnie z instrukcjami tutaj , skonfigurowałem nową instalację SublimeText do użytku z R. Nie mam innych zainstalowanych wtyczek SublimeText. Skróty klawiaturowe konfigurowane za pomocą instrukcji w powyższym linku nie działają. Skonfigurowałem plik powiązania klucza użytkownika zgodnie z instrukcją.
W pliku powiązań domyślnych nie ma żadnych sprzecznych powiązań klawiszy.
Niemniej jednak mogę wykonać mój kod R w REPL, klikając menu:
Narzędzia> SublimeREPL> Eval in REPL> Selekcja ( Ctrl+ Shift+ R)
Jeśli faktycznie naciskam skrót Ctrl+ Shift+ R, nic się nie dzieje.
Oto kopia mojego pliku powiązania klucza użytkownika:
[
// Modified Sublime-REPL keybindings for an "R-friendly" set of shortcuts.
// For more information, see http://tomschenkjr.net/2012/05/17/using-sublime-text-2-for-r/
// Executes a selection of text in REPL, latter only displays code and does not execute
{ "keys": ["ctrl+shift+r"], "command": "repl_transfer_current", "args": {"scope": "selection"}},
{ "keys": ["ctrl+shift+r", "r"], "command": "repl_transfer_current", "args": {"scope": "selection", "action":"view_write"}},
// Executes the entire file (build) in REPL, latter only displays code and does not execute
{ "keys": ["ctrl + f7"], "command": "repl_transfer_current", "args": {"scope": "file"}},
{ "keys": ["ctrl + f7", "r"], "command": "repl_transfer_current", "args": {"scope": "file", "action":"view_write"}},
// Executes line(s) of text in REPL terminal, latter only displays code and does not execute
{ "keys": ["ctrl+alt+r"], "command": "repl_transfer_current", "args": {"scope": "lines"}},
{ "keys": ["ctrl+alt+r", "r"], "command": "repl_transfer_current", "args": {"scope": "lines", "action":"view_write"}},
// Executes a block (e.g., a custom function) of text in REPL terminal, latter only displays code and does not execute
{ "keys": ["ctrl+shift+alt+r"], "command": "repl_transfer_current", "args": {"scope": "block"}},
{ "keys": ["ctrl+shift+alt+r", "r"], "command": "repl_transfer_current", "args": {"scope": "block", "action":"view_write"}}
]
Co ja robię źle?
sublime.log_commands(True)
aktywowanym. Inne popularne skróty, takie jak ctrl + a, ctrl + c itp. Działają i są zgłaszane w konsoli.
sublime.log_commands(True)
. Następnie powiedz nam, co mówi konsola po wprowadzeniu powiązania klawiszy.