ctrl Questions
32
Solved
In Visual Studio Code Ctrl+V is not working on editor.
However from the command palette Ctrl+Shift+V is working.
Jacey asked 25/7, 2018 at 14:8
3
Solved
Question: How to actively check if a certain (decoration) key is pressed, like CTRL or SHIFT, like:
if (SomeKeyboardRelatedService.isControlPressed()) {...}
background
I'd like to check if a certa...
4
If you stop a python script with Ctrl+C, will it execute any finally blocks, or will it literally stop the script where it is?
10
Solved
I am trying to capture ctrl+z key combination in javascript with this code:
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<script type='te...
Swatch asked 15/4, 2013 at 2:0
7
Solved
I'm trying to prevent the default Ctrl+MouseWheel zoom behavior in Chrome with JavaScript, for the other browsers I use preventDefault() and stopPropagation() in the callback function for mouse-whe...
Putnem asked 25/7, 2013 at 16:59
11
Solved
In :help tag it says that one can go to a tag definition using the CTRL-] keystroke. But I can't get this to work. I thought I messed some mappings with my plugins, so I cleaned .vimrc. But I still...
4
Is there a way to bind a keyboard-key to scroll horizontally?
I tried many different things and I cannot seem to put it together.
Hypogeum asked 19/10, 2018 at 11:45
7
Solved
I have a WPF RichTextBox with isReadOnly set to True. I would like users to be able to click on HyperLinks contained within the RichTextBox, without them having to hold down Ctrl.
The Click event ...
Bakken asked 17/4, 2009 at 21:28
5
Solved
In my case the move-right button is ;
I want Ctrl; to move the cursor 7 characters to the right.
I've tried the below .vimrc mapping, but it doesn't work:
nmap <c-;> 7;
9
If I write code creating an infinite loop, with my new Excel, the Ctrl + Break no longer works. Neither does the Esc key, etc.
I've looked all over the web and it appears that Microsoft has a bug ...
Winstonwinstonn asked 12/2, 2014 at 19:32
1
Back in Windows 7, Ctrl+C worked fine for killing tasks such as gradle. On Windows 10, it does not. I upgraded to Git Bash 2.20.1, where it claims it is fixed (can't find a web link, the release no...
Hann asked 23/1, 2019 at 13:9
5
Solved
I am trying to make a script run when Ctrl + Alt + e is pressed.
How can Tampermonkey fire on a simultaneous ctrl, alt, and e key?
I have tried ctrlKey, and altKey. I've found nothing that works.
...
Slesvig asked 1/6, 2016 at 1:18
2
Solved
I have noticed that on any python 3 program no matter how basic it is if you press CTRL c it will crash the program for example:
test=input("Say hello")
if test=="hello":
print("Hello!")
else:
p...
Boozer asked 17/6, 2016 at 17:58
3
Solved
I have a bash script which does some work, which is done fairly quick.
It should then idle until the user decides to terminate it, followed by some clean-up code.
This is why I trap the CTRL+c eve...
5
Solved
I am building a tool using C#. It's a Windows application. I have one text box on a form, and I want to assign focus to that text box when the user presses Ctrl + F or Ctrl + S.
How do I do this?
...
Uncaredfor asked 23/3, 2010 at 10:32
2
Solved
I have a script such as follows:
for ((i=0; i < $srccount; i++)); do
echo -e "\"${src[$i]}\" will be synchronized to \"${dest[$i]}\""
echo -e $'Press any key to continue or Ctrl+C to exit...\...
2
I am currently creating a website on Codeanywhere that communicates with a back-end API/server. I ran my server.js node script with my ports on 8080 (front-end) and 8081 (server). However, I normal...
Mainsail asked 25/11, 2017 at 22:25
2
Solved
How can I catch when user press Ctrl click ?
I can do it for single click using:
<input ng-click="some_function()"/>
but I need something like:
<input ng-CTRL-click="some_nice_functio...
Tristantristas asked 27/11, 2014 at 21:10
13
How can I determine in KeyDown that CtrlUp was pressed.
private void listView1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Control && e.KeyCode == Keys.Up)
{
//do stu...
2
I'm Going to start a console application. The problem is how to determine that the CTRL key is pressed alone without any other key.
using System;
using System.Text;
public class ConsoleKeyExample
...
Kalb asked 3/11, 2015 at 1:52
3
Solved
If I have a winform, may I know how can I control the zoom level of the font in the application (as well as the application window itself obviously) by using Ctrl + Mouse Scroll Wheel? I see there ...
3
Solved
I set my Caps Lock to be a Ctrl in Ubuntu 16.04 using:
setxkbmap -option 'caps:ctrl_modifier'
But when I change my keyboard from En to Cs, the Caps Lock becomes a Caps Lock again, not a Ctrl.
To...
Laroche asked 5/10, 2016 at 15:20
4
Solved
In Qt's QKeyEvent, I can check whether Ctrl was pressed by checking if ev->key() is Qt::Key_Control, but how can I distinguish between the left and right Ctrl keys?
I also need the same thing fo...
Enamelware asked 1/7, 2012 at 15:32
5
What would be some sample code that will trap the Ctrl+Tab and Ctrl+Shift+Tab for a WPF application?
We have created KeyDown events and also tried adding command bindings with input gestures, but ...
Ludlow asked 1/5, 2009 at 21:28
3
Solved
When I want to search files I use Ctrl+,. The search box pops up and then I start typing. But the built-in preview just grabs whatever I have typed and opens the file. Even though I am still ...
Hereinto asked 11/11, 2013 at 18:32
1 Next >
© 2022 - 2024 — McMap. All rights reserved.