崇高な使用方法? Sublime Text3 で SublimeREPL ショートカット キーを設定するにはどうすればよいですか?以下に修正方法を紹介しますので、必要な友人の役に立てば幸いです。
Python の実行には sublime を使用しているため、input() 関数があると ctrl b でデータ入力ができないため、デバッグ用に sublimeREPL をダウンロードしてインストールしました。
ただし、sublimeREPL にはカスタム ショートカット キーがないため、自分で設定するしかありません。
インターネットにはたくさんの方法がありますが、どれも効果がなく、一晩悩んだ結果、ようやく正しい方法を見つけました。
まず、sublimerepl の設定ファイルを見つけます。
手順: 環境設定 -> パッケージの参照 -> SublimeREPL フォルダー -> config フォルダー -> Python フォルダー -> Default.sublime-commands(テキスト形式で開く)
[ { "caption": "SublimeREPL: Python", "command": "run_existing_window_command", "args": { "id": "repl_python", "file": "config/Python/Main.sublime-menu" } }, { "caption": "SublimeREPL: Python - PDB current file", "command": "run_existing_window_command", "args": { "id": "repl_python_pdb", "file": "config/Python/Main.sublime-menu" } }, { "caption": "SublimeREPL: Python - RUN current file", "command": "run_existing_window_command", "args": { "id": "repl_python_run", "file": "config/Python/Main.sublime-menu" } }, { "command": "python_virtualenv_repl", "caption": "SublimeREPL: Python - virtualenv" }, { "caption": "SublimeREPL: Python - IPython", "command": "run_existing_window_command", "args": { "id": "repl_python_ipython", "file": "config/Python/Main.sublime-menu" } } ]
これは repl 設定ファイルです。必要なコマンドを見つけてコピーします。
これを「設定」->「キーバインド」ユーザーに貼り付けます。
コードは次のとおりです。
[ { "keys": ["f5"],//这是自己设的快捷键 “” "command": "run_existing_window_command", "args": { "id": "repl_python_run", "file": "config/Python/Main.sublime-menu" } } ]
最後に保存するだけです。
画像
sublime を開くたびに更新するためのヒント
preferences->seting user -》 { "font_size": 13, "update_check":false, }
さらに sublime 関連の技術記事については、 # をご覧ください。 ##崇高な列.
以上がSublime Text3 で SublimeREPL ショートカット キーを設定する方法 (Python)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。