vscode-sublime-keybindings
vscode-sublime-keybindings copied to clipboard
`ctrl+shift+d` is (almost) wrong
Hi!
ctrl+shift+d
should triggers editor.action.copyLinesDownAction
only if there's no selection, as mentioned on #10 . Otherwise, it should duplicate the selection content.
I tried to do a Pull Request, but it´s blocked by VSCode #2075.
See #100 for a replacement.
See https://github.com/microsoft/vscode/issues/2075. This is build-in now and just needs a key assigned (add other keys):
{
"key": "ctrl+shift+d",
"command": "editor.action.duplicateSelection",
"when": "editorTextFocus && !editorReadonly"
}
I'd be happy to do a PR but found that #105 never even got a sign of appreciation- so maintainers of this repo are on their own :(
@andig , sometimes they take a long time, but I think you should try.
To be frank, I won‘t unless there is better support and appreciation of contributions. As-is sadly it doesn‘t work for me.