Visual Studio Code: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 11: | Line 11: | ||
== Troubleshooting == |
== Troubleshooting == |
||
=== Cannot maximimize window in X11 server / SSH-forwarded session === |
=== Cannot maximimize window in X11 server / SSH-forwarded session === |
||
See [https://github.com/Microsoft/vscode/issues/65232 issue #65232]. The fix: |
See [https://github.com/Microsoft/vscode/issues/65232 issue #65232]. The fix (File → Preferences → Settings): |
||
<source lang="text"> |
<source lang="text"> |
||
"window.titleBarStyle": "native" |
"window.titleBarStyle": "native" |
||
</source> |
|||
=== AltGr moves the cursor to the left in X11 server / SSH-forwarded session === |
|||
See [https://github.com/Microsoft/vscode/issues/24783 issue #24783]. The fix (File → Preferences → Settings): |
|||
<source lang="text"> |
|||
"keyboard.dispatch": "keyCode" |
|||
</source> |
</source> |
Revision as of 13:32, 19 February 2019
Visual Studio Code is the new cross-platform editor from Microsoft based on Electron.
Links
External links
On this wiki:
Troubleshooting
Cannot maximimize window in X11 server / SSH-forwarded session
See issue #65232. The fix (File → Preferences → Settings):
"window.titleBarStyle": "native"
AltGr moves the cursor to the left in X11 server / SSH-forwarded session
See issue #24783. The fix (File → Preferences → Settings):
"keyboard.dispatch": "keyCode"