Microsoft VS Code – Jump 10 lines vertically at once

Put this into keybindings.json { “key”: “ctrl+up”, “command”: “cursorMove”, “args”: { “to”: “up”, “by”: “line”, “value”: 10 }, “when”: “editorTextFocus” }, { “key”: “ctrl+down”, “command”: “cursorMove”, “args”: { “to”: “down”, “by”: “line”, “value”: 10 }, “when”: “editorTextFocus” }, cursorMove – Move cursor to a logical position in the view args: to: A mandatory logical position … Read more

VSCode: Is it possible to suppress experimental decorator warnings

I was having this same error. I added the following tsconfig.json file to my project root, restarted VSCode and it finally went away: { “compilerOptions”: { “emitDecoratorMetadata”: true, “experimentalDecorators”: true, “module”: “amd”, “target”: “ES6″ } } UPDATE: I’ve noticed that sometimes VS Code will not suppress this warning until you add a “files” array in … Read more

I’ve already setup the ssh key, but VSCode keeps asking for password

It was a problem with the config file. The VSCode needs the “absolute” path. In case of MacOS, ssh-copy-id seems to only copy the absolute path relative to the user. In other words, it omits “/Users/username” before “/.ssh“. Adding “/Users/username” in the IdentityFile attribute in .ssh/config solved the problem.

VS Code: Case sensitive replacement after pressing Crtl – D

With 1.37 (July 2019), it is possible through a find/replace (which now can replace by preserving case). Issue 9798 has been implemented by PR 78003. issue 78397 has been implemented by PR 79111 (1.38 only) for search/replace. From 1.37 release notes: You can now preserve case when doing replacement in the editor’s Find widget. The … Read more