Alexandru Dima
Alexandru Dima
@navdeepio Can you please follow our troubleshooting guide at https://github.com/Microsoft/vscode/wiki/Keybindings#troubleshoot If nothing in there works, then please proceed to create a new issue using the steps in the "I have...
@Chillee [This method](https://github.com/Microsoft/node-native-keymap/blob/master/src/keyboard_x.cc#L146) needs to be enhanced to account for `setxkbmap` customizations and then we might need some tweaks [here to cover mappings of those scan codes](https://github.com/Microsoft/vscode/blob/a9936c4ff6738d69d441158c89b7e4a20c137e1c/src/vs/workbench/services/keybinding/common/scanCode.ts#L471)
The work would be split between making first a change in `native-keymap` and then in `vscode`. * the work in `native-keymap` would involve finding and using X11 specific methods that...
We are dispatching by default based on scan codes because those are the only things we receive from Chromium/Electron which we can **trust** to reflect reality and which have not...
@andyl Configure `"keyboard.dispatch": "keyCode"`. Restart VS Code.
They are working on it, it just takes time... https://wicg.github.io/keyboard-map/
Thanks to https://github.com/microsoft/vscode/pull/203605 It is now possible to configure `editor.wordSegmenterLocales` to define the locales to be used for word segmenting
I share the sentiment, I find that this is one of the fundamental flaws of TextMate. When including another grammar, there should be a straight-forward way to specify a bail...
> I can't use a language server since this needs to work in VSCode web, how can I achieve this highlighting? You could try using semantic tokens. There you can...
I've pushed https://github.com/microsoft/vscode/commit/44dafcc8408a3645e61b87af76e05c063b428f40 which could help here. But basically the inspect tokens widget is not prepared to deal with TM scopes, it can only deal with flat tokens. That is...