美文网首页
Mac, vsCode 单行执行快捷键(shift + ente

Mac, vsCode 单行执行快捷键(shift + ente

作者: 工程无尽藏 | 来源:发表于2020-07-16 12:24 被阅读0次

    最近在学Python,使用的vsCode。但是遇到个小问题:shift + enter在Terminal中执行单行的默认快捷键组合没用,很不方便。
    搜索了一番,找到了一个替代方案。把快捷键改成了F9,很香。具体操作方式如下:

    1、进到 View > Command Palette... and run "Preferences: Open Keyboard Shortcuts (JSON)"

    2、添加以下内容:

    [
        {
            "key": "f9",
            "command": "python.execSelectionInTerminal",
            "when": "editorTextFocus && !findInputFocussed && !python.datascience.ownsSelection && !replaceInputFocussed && editorLangId == 'python'"
        },
    ]
    
    

    3、打开一个Python文件,选中单行代码单机右键,找到"Run Selection/Line in Python Terminal",bingo,新快捷键变成F9了。


    image.png

    参考:
    https://github.com/microsoft/vscode-python/issues/12057

    相关文章

      网友评论

          本文标题:Mac, vsCode 单行执行快捷键(shift + ente

          本文链接:https://www.haomeiwen.com/subject/tfrphktx.html