python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Is there a way to always stay at the searched-for Symbol location when using vscode and pressing `esc` key?
Let's say I use Go to Symbol in Editor. Let's further say I have a function def run(): (this is Python) that I want to jump to.
If I type @run in the Symbol search dropbox, the viewport will shift to...
JL Peyret
Votes: 0
Answers: 1
keyboard.is_pressed() recognizes combination of two keys wrongly in python
This example code:
while 1:
if keyboard.is_pressed('ctrl+alt'):
print('to')
But when I press alt+ctrl it prints to. Tried using:
while 1:
if keyboard.is_pressed('ctrl+alt') and not ...
Devil Ishere
Votes: 0
Answers: 2
Redo Deletes Line In Visual Studio Code - (Redo: CTRL + Y)
My Problem: Ctrl + Y deletes the line of code instead of Redo'ing
I've been seeing similar questions to this problem but there isn't an answer to it.
Meric
Votes: 0
Answers: 1