It works perfectly for block comments in JavaScript(/* */ style), but it does support single line comments(// style). So, is it possible to support multi line single line comment folding for python(hopefully for all language) in future? @aeschlivscodebot bot added editor editor-contrib la...
Type: Bug During normal usage, the "Add Line Comment" keyboard shortcut doesnt work. I am using the default of Ctrl + /. My keyboard works because I can use other Ctrl keyboard shortcuts fine. VS Code version: Code 1.88.1 (e170252, 2024-...
You should have 2 options: a) Jupyter: Run Selection/Line in Interactive Window with SHIFT+ENTER as key binding, and b) Python: Run Selection/Line in Python Terminal with (probably) also SHIFT+ENTER You need to change the key binding for the Python (i did for ALT+ENTER). The thing is...
To add buttons see "Adding new buttons" section ofHelp.mdfile in repo. Go through therepo, it's fairly simple to understand code and add a button. Send me a PR!How can I disable/Enable a button? By going to vscode settings (CTRL+,orCMD+,) and search for "shortcut menu bar". ...
Type: Bug Suddenly, delete line keyboard shortcut stopped working. (Cmd + shift + K) When I press the shortcut, it does nothing as of now. I have launched vscode disabling all the extensions with code --disable-extensions and still no lu...
VSCode calls this "select all occurrences of find match", and the gist is that I'd like to be able to select a piece of text (usually a word, a function name, a variable name, etc.) hit the keyboard combo (e.g., Cmd-Ctrl-g) and have all ...
Original file line numberDiff line numberDiff line change @@ -0,0 +1,13 @@ import 'dart:io'; /// Normalizes root paths, making them valid for path navigation Directory normalizeRootPath(Directory path) { // Add a trailing path separator to the root of a drive in Windows if (Platform...