您好,登錄后才能下訂單哦!
小編給大家分享一下Sublime Text3如何配置SublimeREPL快捷鍵,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
因為用sublime運行python,如果有input()函數(shù),ctrl+b是不能輸入數(shù)據(jù)的,所以下載安裝了sublimeREPL進行調(diào)試。
但是sublimeREPL沒有自定義快捷鍵,所以只有自己設(shè)置。
網(wǎng)上很多方法但是都沒有效果,最后折騰了一晚上終于找到正確方式。
首先找到sublimerepl的配置文件。
步驟:Preferences-->Browse Packages-->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的配置文件,找到你需要的命令復制下來。
粘貼到Preferences-->Key Bindings User
代碼如下
[ { "keys": ["f5"],//這是自己設(shè)的快捷鍵 “” "command": "run_existing_window_command", "args": { "id": "repl_python_run", "file": "config/Python/Main.sublime-menu" } } ]
最后保存就行了。
如圖
關(guān)于sublime 每次打開更新的提示
preferences->seting user -》 { "font_size": 13, "update_check":false, }
看完了這篇文章,相信你對“Sublime Text3如何配置SublimeREPL快捷鍵”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。