Skip to main content
How are we doing? Please help us improve Stack Overflow. Take our short survey
Filter by
Sorted by
Tagged with
0 votes
0 answers
32 views

I would like to use the arrow keys as keyboard shortcuts in an app that I am building for iOS/iPadOS, for the sake of users with a hardware keyboard. The following code works fine for iPhone, but not ...
Anton's user avatar
  • 3,399
0 votes
0 answers
42 views

I have a key binding such as alt+s alt+u. It works when i hold down both keys alt and s, then just press u. But if I press u again, it doesn't repeat; i must release alt and s, then hold them down ...
hrs's user avatar
  • 417
2 votes
1 answer
103 views

Before Xcode 26, I used to be able to: Press ⇧⌘O to “Open Quickly” and search for a file. Then hit ⇧⌘↩ (Shift–Command–Return) to open the layout menu. Use hjkl (vim-style directions) to place the ...
ChaseChoi's user avatar
  • 145
1 vote
1 answer
88 views

I have an application that relies on the deprecated keyCode property for keyboard shortcuts. I need to update my code to use a modern alternative that works consistently regardless of the user's ...
tsveti's user avatar
  • 19
1 vote
0 answers
45 views

I am currently trying to adopt keyboard shortcuts for frequent tasks, where using the mouse has become cumbersome. When writting c and c++, I find myself setting up two tab groups and opening make, .h,...
PedroCarreiras's user avatar
0 votes
1 answer
46 views

I would like to override browser's keyboard shortcuts. I created an Angular Service that listen the 'keydown' event and manage it. I tried to use stopPropagation(), preventDefault(), ...
Niccolò Boddi's user avatar
1 vote
1 answer
78 views

I use Qt Creator 17.0.1. I want to open and close the bottom panel (the one that shows Issues, Search Results, Application Output, etc.) using keyboard shortcuts: Which shortcuts can do this?
Artyom Fedosov's user avatar
1 vote
0 answers
42 views

I’m trying to create a custom keybinding in Visual Studio 2022. Specifically, I want to bind Ctrl+Y so that it works as an alternative to Tab/Enter for confirming a menu selection. For example, when I ...
Daniel Aviv's user avatar
0 votes
0 answers
49 views

I have a custom keyboard and I want to map "n", "e", "i", "u" for movement, instead of "b", "n", "f", "p". I wish to ...
RFV's user avatar
  • 839
2 votes
0 answers
82 views

I need to copy the list of validation errors for the currently open file in Android Studio. I am referring to the Problems tool window (which opens with Alt+6), and specifically the list shown in the ...
SL5net's user avatar
  • 2,630
-3 votes
1 answer
75 views

After the recent update, I can no longer use Cmd+S to save files in the diff view. Steps to reproduce: Ctrl+Shift+G Click a changed file Edit the file in the editable view of the diff view (right ...
Timothy Alexis Vass's user avatar
0 votes
1 answer
56 views

I'm using VSCode with a keybinding that sends a command to the terminal, where IPython is running (not Jupyter Notebook, just plain IPython in the terminal). I want to select a line of code (e.g. ...
Nguyễn Cảnh Dũng's user avatar
1 vote
3 answers
4k views

in other editor we can collapse method with keyboard shortcuts like we used to in VS Code. I want to know how to do that in Cursor AI Editor. I get some reference from some podcast and other websites. ...
Piyush Sapariya's user avatar
0 votes
0 answers
48 views

I'm trying to override default browser behavior for the following key combinations using the hotkeys.js library: CTRL+S (save) CTRL+N (new window) CTRL+T (new tab) CTRL+U (view source) I want to use ...
Raju Paladiya's user avatar
2 votes
0 answers
42 views

In VSCode editor (not terminal) while selecting text, usually anchor end will be fixed and expand/shrink happens only from cursor end. Now, is there a operation available in VSCode to switch anchor ...
Sourav Kannantha B's user avatar
1 vote
1 answer
100 views

I have a File menu in my fyne app, I'm running KDE on linux. I can't work out how to add a keyboard shortcut to activate the file menu. I have the following code: fileMenu := fyne.NewMenu("File&...
kristianp's user avatar
  • 6,015
6 votes
2 answers
221 views

After applying KB5058499, the Ctrl+Break keyboard shortcut in Visual Basic 6 stopped working (Windows 11 Pro 24H2 26100.4188). Ctrl+Break is the native shortcut to pause code execution in the VB6 IDE. ...
Cléber Oliveira's user avatar
0 votes
0 answers
36 views

I'm rather enjoying Workbench but I'd like it better if I didn't have to take my hands off the keyboard. Sometimes I want to type code, sometimes I want to scroll around the schema navigator, and ...
Matt Lavallee's user avatar
0 votes
1 answer
43 views

I’m trying to implement a keyboard shortcut that triggers when the user presses: • Windows/Linux: Alt + Z • macOS: Option + Z The problem is with using event.code === 'KeyZ'. It works fine on a ...
Giorgi Mamisashvili's user avatar
0 votes
0 answers
151 views

In both WhatsApp and Telegram there is a button within the UITextView that allows the user to directly display the stickers to send within the chat. I have tried searching online but no luck, does ...
Mike Walker's user avatar
  • 3,196
1 vote
1 answer
111 views

I try to switch from Ubuntu to Mac in my Python development. I use and I cannot use shortcut that is used by Mac OS. For example, show Terminal in PyCharm it's Command+F12 However this shortcut is ...
Svitlana's user avatar
  • 2,392
0 votes
0 answers
16 views

I need to hide Macros from the Macro list and I've tried making them Private Subs but I want to be able to call the Macro with a short cut. My assigned shortcuts seem to disable when the routine is ...
Mel Angel's user avatar
0 votes
1 answer
48 views

I have setup a connection to my local SQL Server, over the "SQL Server Object Explorer" in Visual Studio. Is there a way, built in or maybe with an extension, for setting the focus to a ...
Dom84's user avatar
  • 866
0 votes
0 answers
24 views

I need to select the current line with a shortcut, entire line. I found Shift + Home and Shift + End which works but not precisely how I need it to work. I mean, if the caret is not in the first ...
Ivan Samsonov's user avatar
0 votes
0 answers
42 views

I have an example file as follow int OddNumber_1= 1; int OddNumber_2 = 3; int OddNumber_3 = 5; How to select (Keyboard shortcut) "OddNumber" in all three lines at same time and update to &...
Dojo Arun's user avatar
  • 459
0 votes
0 answers
20 views

I'm developing a menu bar app and this is my code: @main struct MyApp: App { var body: some Scene { Settings { SettingsView() } ...
Andrea Mario Lufino's user avatar
2 votes
1 answer
377 views

I'm using VS Code to edit a file with lots of tabs. Github Copilot by default binds tab key to the "commit inline suggestion" action. I want to disable that default keybinding so I don't ...
Cornelius Roemer's user avatar
0 votes
1 answer
70 views

I am unable to either use or re-create the ctrl+enter VS Code shortcut on macOS. Other combinations ending in enter work just fine. I have tried to: load VS Code without any extensions through code --...
Wasserwaage's user avatar
4 votes
1 answer
131 views

I have a CRME of a Delphi application with the following menu (i've reproduced this in both Delphi XE6 and Delphi 7): If you press N, it will run handler for N̲ew. If you press O, it will run handler ...
Ian Boyd's user avatar
  • 259k
0 votes
0 answers
41 views

I want to make webOS app with Flutter and use this app in TV, I have a List of items, consider 3 rows which are having 10 items each, and all scrollable, I want to move between them by keyboard and ...
mohsen's user avatar
  • 31
1 vote
3 answers
109 views

When searching for a way to add keyboard shortcuts to websites I typically find solutions like this: document.addEventListener('keyup', event => { if (event.key === 'f') { … } }); ...
tobib's user avatar
  • 2,504
-1 votes
1 answer
98 views

I have a Safari App Extension which allows users to switch between last open tabs with a shortcut option+tab in the same way it's possible to switch between last open apps with command+tab. Here is ...
Oleh Kopyl's user avatar
0 votes
0 answers
54 views

I want the interactive window to behave just like the editor where ENTER inserts a newline and SHIFT+ENTER runs the block. I found the interactive.execute keyboard shortcut and changed it from ENTER ...
Jay Chooi's user avatar
0 votes
1 answer
147 views

I have made an offline decision support tool in a single HTML page. The page asks a series of Y/N questions, with strictly binary branching, using horizontally arranged radio buttons. Then shows the ...
Gavin's user avatar
  • 499
1 vote
0 answers
94 views

I can't find a way to switching between the tabs on Warp Terminal (MacOS version). One can use the card coded ^ + Tab or ^ + Shift + Tab for back switching, but I want to use Command + -> and ...
Hermann Schwarz's user avatar
1 vote
2 answers
120 views

I would like to use the window key to open an app launcher, which has its own shortcut (alt + space), while also preserving the combination shortcuts (win + 1, win + d, win + tab, etc.). I have tried ...
Aaras's user avatar
  • 51
0 votes
0 answers
34 views

What is the keyboard shortcut to switch between the top pane which starts with the "Elements" panel, and the next pane which starts with the "Styles" panel, in Chrome Developer ...
catquas's user avatar
  • 794
1 vote
1 answer
386 views

I am setting up a Mac for the first time after coming from Linux. My primary IDE is VS Code and I used the ALT + z shortcut quite a lot in Linux to toggle word-wrap in files with long lines of code. ...
Avik's user avatar
  • 979
0 votes
0 answers
231 views

I have MobaXTerm in Windows 11. How do I copy and paste text with only keyboard shortcuts from nano editor in MobaXTterm to any window in Windows 11? I want to copy and paste text in file A from nano ...
goahead97's user avatar
1 vote
0 answers
153 views

I am unable to use shortcut keys in Jupyter Notebook (IPython version 8.27.0; Jupyter Notebook version 7.2.2) anymore. I am running Python 3.12.3 (Conda 25.1.0) on Windows 10 (Build 22621). For ...
Shirmila Hewa's user avatar
2 votes
1 answer
97 views

I am currently using an accelerator table to handle shortcuts such as Ctrl + A, Alt + B, etc. But I was wondering, is there any possibility I can modify the table to accept multi-letter key ...
pbhat's user avatar
  • 23
0 votes
0 answers
206 views

I needed to buy an external keyboard for my Macbook Air, because the old Apple Magic abandoned me. I opted for the keyboard in question, iPad version, but I noticed that this is not completely ...
macuser's user avatar
  • 597
6 votes
2 answers
1k views

Coming back from hollidays I start up my work computer, start Visual Studio 2022 Professional and all of a sudden Ctrl+C, that I expect to use to copy marked text, now doesn't work as expected. Insted ...
Toby Fieldgroove's user avatar
3 votes
1 answer
104 views

While programming in JavaScript / TypeScript in VS Code, I often need to follow documentation links of functions, which appear on mouse hover. I want to be able to do this without using a mouse. Here'...
NaBrHCl's user avatar
  • 33
2 votes
1 answer
743 views

The Ctrl+V and Ctrl+Shift+V keys do not work in VS Code. I changed everything in the hotkeys, but to no avail. I'm using Fedora 41 Hyperland ML4W. It’s interesting that everything works in the GNOME ...
Искандер Бакиров's user avatar
0 votes
1 answer
1k views

Is it possible to easily change resolution on Ubuntu 24.04 with keyboard shortcuts? I use some older CAD applications that unfortunately do not scale well to my 5120x2160 res and the small fonts are ...
GDG's user avatar
  • 409
0 votes
0 answers
65 views

When I press the keyboard shortcut ⌘ + right arrow in RStudio on a Mac, the cursor move to the end of the line (see left hand arrow in attached). What keyboard shortcut can I use to move the cursor to ...
luciano's user avatar
  • 14k
1 vote
0 answers
488 views

In Microsoft Visual Studio Professional 2019, I used to be able to use the Ctrl+Alt+l (small L, not big i) keyboard shortcut to change focus to the Solution Explorer (corresponding to the View....
Foad S. Farimani's user avatar
1 vote
1 answer
59 views

After creating my first shortcut, which worked well, I tried to make a new one to move the cursor to the end of the line, but here I faced a problem: the shortcut didn't work. // Place your key ...
EL MAHDI's user avatar
2 votes
2 answers
844 views

I've seen the sparkle icon in the terminal for adding the suggestion, though this requires two mouse clicks which then pastes into the terminal line git commit -m "[Copilot suggestion here...]. ...
SWA's user avatar
  • 57

1
2 3 4 5
113