私はPythonスクリプトプラグインを使用してその方法を見つけました。明らかにdsublimeによるエラーは、単一のキーマップの下で複数のコマンドを実行するオプションがありません。 私はここからメソッドを使用:https://forum.sublimetext.com/t/run-multiple-commands-command/6848
手順は次のとおりです。
- 崇高 - ツール - 開発者 - 新しいプラグイン
ここで見つけるrun_multiple_commands.pyからコピーコード:https://gist.github.com/bgmort/7ae52ea4270f1c404321c20d1b97733c#file-run_multiple_commands-py ファイルをgithubと同じ名前で保存してください:run_multiple_commands.py
- 崇高 - 環境設定 - キーバインディングユーザー
コード:
{
"keys": ["ctrl+enter"],
"command": "run_multiple_commands",
"args": {
"commands": [
{ "command": "repl_transfer_current", "args": {"scope": "lines"} },
{ "command": "move", "args": {"by": "lines", "forward": true} }
]
}
}
またはそれに加えて、ファイルが空の場合は[]追加:
[{
"keys": ["ctrl+enter"],
"command": "run_multiple_commands",
"args": {
"commands": [
{ "command": "repl_transfer_current", "args": {"scope": "lines"} },
{ "command": "move", "args": {"by": "lines", "forward": true} }
]
}
}]
出典
2016-05-20 14:12:37
dom