I dont know why this occurs but you can solve this issue reloading the window:
- CTRL + SHIFT + P
- Developer: Reload Window
I dont know why this occurs but you can solve this issue reloading the window:
- CTRL + SHIFT + P
- Developer: Reload Window
This suggestion from https://github.com/microsoft/vscode-jupyter/issues/13263 solved it ror me, just add the following to the keyboard shortcuts json:
{ "key": "down", "command": "-editor.action.scrollDownHover", "when": "editorHoverFocused" },
{ "key": "left", "command": "-editor.action.scrollLeftHover", "when": "editorHoverFocused" },
{ "key": "right", "command": "-editor.action.scrollRightHover", "when": "editorHoverFocused" },
{ "key": "up", "command": "-editor.action.scrollUpHover", "when": "editorHoverFocused" },
{ "key": "home", "command": "-editor.action.goToTopHover", "when": "editorHoverFocused" },
{ "key": "end", "command": "-editor.action.goToBottomHover", "when": "editorHoverFocused" },
Arrows key behavior between chunks in python jupyter notebook
Arrow key freezes while working in Jupyter notebook
Up and down arrow keys stop working in cells
visual studio code - Prevent arrow keys from going to the previous/next cell - Stack Overflow
I know this sounds lazy but I move around so much (and I do know about vscode shortcuts like ctrl+g), but I really would love something where I can just type like crazy and just move to where I need using arrow keys.
I'm thinking of maybe converting my alt keys to left and right arrow, which doesn't solve the up and down issue, but it does let me easily read them with my thumb.
What would you do? Or rather, what do you do?
This seems to happen to me when I open a solution and there are files already open. I used to close the files, then close and re-open the solution to fix it, but now I just hit Alt + Enter.
Here is the blog where I found this trick.
i'm still seeing this issue even after the ALT + ENTER.
However i did notice if i had more than one window open if i clicked into each file then attempted backspace, eventually it worked on one, and then I seemed back in a working state.
I am simply doing this Build your own Shell | CodeCrafters using Go.
When I run my code, I used to be able to use arrow keys to move the cursor as usual in the terminal. But I believe after probably pressing something accidentally which I cannot remember what it was, when I press any arrow key (even Delete, Home, End buttons, etc), this string "^[[A" and others appear.
I asked chatgpt what it was and they are arrow key escape codes.
As I said, I may have pressed something accidentally which changed vscode settings. How do i get the setting back where pressing any arrow keys just move the cursor, not display these strings? I could not find any keywords for this issue.
Please help me get the old behavior back.
Thank you in advance!