vscode-todotasks icon indicating copy to clipboard operation
vscode-todotasks copied to clipboard

HotKey: Can not change ctrl+enter

Open taoqf opened this issue 8 years ago • 1 comments

After I changed the hotkey:

    {
        "key": "alt+i",
        "command": "task.new",
        "when": "editorTextFocus"
    }

ctrl+enter could not do the editor.action.insertLineAfter except i have the keybindings.json like this:

    {
        "key": "alt+i",
        "command": "task.new",
        "when": "editorTextFocus"
    },
    {
        "key": "ctrl+enter",
        "command": "editor.action.insertLineAfter",
        "when": "editorTextFocus"
    }

could this be fixed?

taoqf avatar Jul 27 '16 02:07 taoqf

@taoqf I can't replicate the issue on VSCode 1.6.1, the command(insertLineAfter) is working properly after rebinding it in the keybinding.json file. vscode-todotasks version:

Version
0.4.0
Last updated
9/30/2016, 1:33:11 PM

This is both with and without having the alt+i command rebound to task.new

dtasev avatar Oct 21 '16 18:10 dtasev