274 questions
0 votes
1 answer
72 views
Preventing CTRL + F from searching the content of iframes
I have this page with a lot of text and multiple Google sheets embedded inside iframes. When I search for something using CTRL + F it brings up like 35 results and only 3 of them are from my text (the ...
0 votes
1 answer
389 views
How Can I Simultaneously Press Ctrl + A While Using Python Selenium?
I am using action chains and lines like the following: actions.click(elementimclickingon).send_keys(Keys.CONTROL + "A").perform() I have subsequent actions in the above line before, like ....
0 votes
1 answer
88 views
How to define Ctrl - Q on German keyboard on C?
I am writing a vim-like text editor on C in Ubuntu in vim. Ubuntu is on WSL on Windows. I am working on a German keyboard. I am following a tutorial and I need to define ctrl + Q combination to stop ...
0 votes
1 answer
82 views
Quarkus Maven project, ctrl click not working
I have an existing maven project done with Quarkus where ctrl click does not work (Eclipse). eclipse.buildId=4.31.0.20240307-1200 java.version=19.0.1 java.vendor=Oracle Corporation BootLoader ...
0 votes
1 answer
537 views
How can I add a command to VS Code?
We would like to contribute to the VS Code GitHub and would like to add function to some commands. However, we could not find where the commands are defined. Could anyone tell me which dir these code ...
3 votes
1 answer
119 views
how to trap/disable CTRL+C in GFORTH
how to trap/disable CTRL+C in GFORTH ? I often use common case...endcase statement on key but ctl+c is still possible to user. I would add a function or something to disable it inside a word like ...
1 vote
1 answer
65 views
What could be causing my previously functioning Ctrl c shortcut to no longer work in VSC?
VSC ignores Ctrl c My VSC ignores Ctrl c, it used to stop the process and send a sigint but it no longer works this is what my code looks like: import signal import sys import time def signal_handler(...
1 vote
0 answers
79 views
Ctrl + / for commenting does not work anymore in JupyterLab
I have been commenting (multiple) lines for quite some time using ctrl + /, as it is way quicker than adding # for each line. Suddenly I'm not able anymore to comment lines this way, and I cannot find ...
1 vote
0 answers
63 views
how to stop a process when "ctrl+c" is pressed in java?
i am using the following in one of my application. public static void concatenation(List<String> commands) throws IOException { if (commands.get(1).equals(">")) { String ...
0 votes
1 answer
2k views
How to enable right click functionlity having open link in new tab in angular
In angular, I want to navigate to the link on staying at the tab and also should enable right click option showing this popup. When I click directly on link, It should open in same tab and when I ...
0 votes
1 answer
71 views
Wierd behaviour on clicking ctrl-y in termux-linux
So basically i use emmet and coc-completions as a neovim developer in termux (it's an android app that runs linux environment). Today all of the sudden, my ctrl-y button started taking 2-3 sec to even ...
3 votes
1 answer
698 views
Ctrl+V not working in PyCharm Community Edition on Ubuntu 22.04.1 LTS
Ctrl+v shortcut does not work inside Pycharm. Shift+Insert works and Ctrl+Shift+v works as well. Also Ctrl+c works just fine. I have tried uninstalling and re-installing PyCharm with all available ...
2 votes
1 answer
99 views
Ctrl Char regex too restrictive
From another thread on this site I found this regex that I used to detect all ctrl chars for an AWS WAF rule: (?i)0x([01][0-9A-F]|7F) My issue is it's too restrictive; it blocked a URI that contains: ...
0 votes
1 answer
667 views
CTRL+F shortcut for clicking arrow down/up
in the browser like chrome, there is a shortcut called CTRL+F the problem that sometimes I don't find directly what I want so I click the arrow yes it work fine, but I want to use a shortcut also ...
0 votes
0 answers
1k views
How can I send Shift + (Right Control Key) using VBA?
I have a slightly less than usual application that we are writing an automation script against using VBA, and there is a need to send the keystroke +. Is this possible? We can get the right ctrl key ...