Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (3)

30
votes
9answers
21k views

Emacs on Mac OS X Leopard key bindings

I'm a Mac user and I've decided to learn Emacs. I've read that to reduce hand strain and improve accuracy the CTRL and CAPS LOCK keys should be swapped. How do I do this in Leopard? Also, in Terminal ...
22
votes
3answers
699 views

In vim, why is 'j' used for down and 'k' for up?

I've been using vim for many years and have never really thought about it. A friend of mine asked why that is, noting that in our culture, left would usually map to up while right would map to down, ...
18
votes
6answers
6k views

Keybinding a RelayCommand

I'm using the RelayCommand in my app. It's great for putting the code in the viewmodel, but how do I bind keystrokes to my command? RoutedUICommand has its InputGestures property, which makes the ...
17
votes
4answers
14k views

How to capture CTRL+TAB, CTRL+SHIFT+TAB in WPF?

Does anyone have 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 ...
13
votes
2answers
2k views

Emacs: print key binding for a command or list all key bindings

In Emacs (GNU 23.2, *nix), how can I: list the key sequences bound to a particular command? For example, how can we list all the key sequences that execute save-buffers-kill-emacs, with the output ...
11
votes
5answers
4k views

Emacs global-set-key to C-TAB

I'm trying to set a key-binding to Ctrl+TAB in Emacs. I used the following call: (global-set-key (read-kbd-macro "C-TAB") 'my-func) However, whenever I use it, I get a <C-tab> is undefined ...
9
votes
3answers
2k views

How can I change the keybinding used to autocomplete in vim?

I'm not a big fan of Ctrl-n, I'd like to be able to use Ctrl-Space. Any ideas how I can do that?
8
votes
2answers
761 views

Can Emacs differentiate between ctrl-r and ctrl-shift-r?

I'd like to bind Ctrl + R to 'isearch-backward and bind Ctrl + Shift + R to 'tags-apropos but I can't distinguish between the two key presses. Can emacs differentiate between Ctrl + R and Ctrl + ...
7
votes
1answer
480 views

How does Java dispatch KeyEvents?

I've read the definite tutorial on key bindings a few times, but my brain cache doesn't seem large enough to hold the complicated processes. I was debugging a key binding problem (turned out I was ...
6
votes
3answers
744 views

Detect if a key is bound to something in vim

I'd like to know if there is a way to figure out if a key does something in vim. I know that I can use :map to see user-defined mappings, but is there something for the built-in stuff? For example, I ...
5
votes
2answers
368 views

Vim: list free keybindings

Is there some way to list unused keybinds? I guess if the answer is no, it would be a good feature-request (especially for these undecided types like myself). Edit: To make it more precise, I know ...
5
votes
2answers
236 views

Globally overriding emacs keybindings

Is there a command to globally override a keybinding such that it overrides even the local settings of major modes? global-set-key is overridden by major mode bindings, as stated here: ...
5
votes
2answers
255 views

List all Keybindings for a certain emacs mode

I know that I can list all the keybidings avaliable in emacs by using C-h b, but is it possible to list only the keybindings that apply to a certain mode, say dired-mode. In dired+, I can do ? h ...
4
votes
2answers
63 views

Emacs how to get copy-paste, shift arrow text highlight, etc

I need to know how to make Emacs usable for a person so used to windows... Specifically what I really need are: 1) Copy-paste keys 2) Shift arrow to select text 3) The backspace acting regularly, ...
4
votes
1answer
50 views

Comparing functionality between KeyListeners and Key Bindings

This question arose when an anonymous user downvoted an answer of mine involving KeyListeners and suggested the use of Key Bindings instead. This anonymous user informed me that the KeyListener ...
4
votes
2answers
149 views

java swing key bindings - missing action for released key

Having registered key bindings for "SPACE" and "released SPACE" which works as advertised when space is the only key pressed/released, I notice that pressing space, then pressing ctrl (or any other ...
4
votes
1answer
175 views

How to disable camel case selection in Eclipse

Is it possible to disable support for camel case in the Eclipse text editor? I want the next word key binding to select the next word, not the next fragment of a word. I'd given up on eclipse because ...
4
votes
2answers
2k views

WPF datagrid and the tab key

Another datagrid keybindings question I have a datagrid. It has selection mode set to FullRow and KeyboardNavigation.TabNavigation="Once" which I was hoping would get my desired result but it ...
4
votes
5answers
597 views

Binding M-<up> / M-<down> in emacs 23.1.1

I'm trying to put in a feature that I miss from eclipse, where Alt+[Up/Down] transposes the lines up or down, but can not for the life of me figure out how to assign to these keys properly. I am using ...
4
votes
1answer
744 views

tmux up-pane/down-pane missing

I'd like to rebind the action of changing the active pane in tmux. In version 1.1, I did it like this: bind-key -n C-] up-pane bind-key -n C-[ down-pane I've upgraded to to version 1.3 recently, ...
4
votes
1answer
416 views

KeyBinding on a TreeViewItem

I have a typical treeview and a viewmodel. The viewmodel has an observable collection of other viewmodels that serves as a data source for the tree. public class TreeViewVM { public ...
4
votes
3answers
329 views

Assign multiple Emacs keybindings to a single command?

I'm giving ErgoEmacs mode a try to see if I can use Emacs more comfortably. Some of its keybindings are fairly intuitive, but in many cases I don't want to outright replace the defaults. For example, ...
4
votes
3answers
628 views

Emacs cheat sheet that lists equivalents to everyday vim commands

There were two things that I want to know how to do in Emacs (23.2, *nix): Go to the first character after indentation in a line Go to the first character that's the equivalent to a given ...
4
votes
2answers
2k views

WPF Key-Binding- Can I create a single key-binding that fires a command every time control is pressed with any number and then passes the number to the command as a parameter?

I need to create hot-keys for every control + number combination and would prefer not to have create ten commands. Is there any way to do this?
4
votes
2answers
253 views

In which file was the keybinding defined?

Considering a keystroke in Emacs, e.g. C-x C-s. I can figure out which function it invokes by typing C-h c keystroke, but how can I find where this keybinding was defined? (Maybe the right answer is ...
3
votes
3answers
53 views

Copy/Paste Keybindings Don't Work

I have the following keybindings in my MainWindow: <KeyBinding Command="{Binding OpenCommand}" Gesture="Ctrl+O"/> <KeyBinding Command="{Binding SaveCommand}" Gesture="Ctrl+S"/> ...
3
votes
2answers
62 views

Rebind keys in Emacs to change commenting style in source code

I am trying to document certain sections of my code using Doxygen. I want to use the javadoc style of comments viz /** * My Documentation goes here */ Now in Emacs I can comment out a ...
3
votes
1answer
68 views

Is it possible to implement emacs style keybindings in all Qt programs (probably as a qt plugin)?

Gtk programs can have different keybinding themes by binding different keys to gtk signals, but afaik, qt programs cannot do that now. Since Qt support plugins (as most of this kind of library do, ...
3
votes
1answer
109 views

java keylistener not called

I have written a sample code using KeyListener in Java, I have created a JPanel, then set its focusable to true, I have created a KeyListener, requested a focus and then added the KeyListener to my ...
3
votes
2answers
158 views

How to make “Enter” Key Behave like Submit on a JFrame

I'm Building a Client/Server application. and I want to to make it easy for the user at the Authentication Frame. I want to know how to make enter-key submits the login and password to the Database ...
3
votes
2answers
131 views

Using Key Bindings with Arrow Keys

I'm creating a game that uses the arrow keys to move a sprite. I've added key bindings for the arrow keys and the letter n, but arrow keys aren't working. Here's my code: public class MyPanel extends ...
3
votes
1answer
161 views

How do you prevent the VS Shell from getting priority on key/command bindings in a VSPackage ToolWindow?

I have wpf a user control that accepts input gestures to perform various commands. In the example image below, the user can press Ctrl+N to execute the New command to create a new item in the ...
3
votes
4answers
128 views

In vim, is there a way to rebind “*” to highlight the current word, without advancing to the next?

I often use * to highlight all instances of the current word, and the fact that it advances to the next word is pretty annoying. I'd like to disable this behavior, knowing that I can always use "n" if ...
3
votes
2answers
272 views

Emacs for Erlang with vi like keybindings and handy short references?

I have come accross vi-style keybindings for Emacs, but my past experience in mixing Lisp based config in .emacs file for enabling various modes etc., hasn't been very pleasant so far. Read several ...
3
votes
1answer
303 views

WPF Keybinding of ALT+0 does not work

Does anyone know why keybinding to ALT+0 thru ALT+9 does not work in WPF? I even tried it in the WPFApplicationFramework Shortcut Key example and nothing happens if you change the Modifier to the ALT ...
3
votes
1answer
536 views

How to set a key binding to make Emacs as transparent/opaque as I want?

I want to have a command in Emacs to make it as opaque/transparent as I want (refer to the fabulous question that pointed out that transparency is possible in Emacs, and the EmacsWiki page linked ...
3
votes
7answers
1k views

How to turn off alternative Enter with Ctrl+M in Linux

Why is Ctrl+M bound to Enter in Ubuntu Jaunty? How to turn it off? I'm using Emacs and would like to bind Ctrl+M to some other command.
3
votes
4answers
205 views

Emacs How to redefine Shift-R for expected use

I've checked my elisp files to make sure that I do not have any bindings that contain Shift+R (and I have not found any). I expect SHIFT+R to print an uppercase character, but instead I get R R ...
3
votes
2answers
238 views

Universal keybindings in Eclipse

I want to be able to use CTRL-SHIFT-T to open a Java Type (source code file) from any perspective in Eclipse. Unfortunately, the keybinding only works in the Java perspective. I tried defining the ...
2
votes
2answers
53 views

Why do key bindings die?

This application needs to send a motor move command when a GUI button or an arrow key is pressed and a motor stop command when the GUI button or an arrow key is released. These bindings work fine for ...
2
votes
1answer
45 views

Java KeyListener Not Registering Arrow Keys

I'm writing a simple program in Java which includes a KeyListener with the following overriding they KeyTyped method: @Override public void keyTyped(KeyEvent e) { int key ...
2
votes
0answers
56 views

How to type guillemets in Emacs? [migrated]

How to type guillemets (book title mark in Chinese) in Emacs (efficiently)?
2
votes
4answers
91 views

EEmacs how to bind command to all keys? P.S. Except some

I want to make a minor-mode (foo-mode) which has its keymap (foo-mode-map), but when the user presses any key not in (foo-mode-map), the minor-mode should quit. How do I bind the turn-off-foo-mode ...
2
votes
3answers
90 views

In Emacs, what is the command to move the pointer to the location of the last edit?

What lisp config command would bind this command, if it's not already bound? Also, If I wanted to bind C-x h, C-M-\, and , to a single C-M-\, how would this be done? Thanks in advance
2
votes
2answers
47 views

Java KeyBindings with JFileChooser

I would like to add Key bindings to my JFileChooser in order to open a file preview window when the SPACE key is pressed. Because of the source code is too big, I just did a simple dirty code : ...
2
votes
2answers
57 views

Key bindings for a repetitive action in VIM editor

I use Vim + Cscope for coding in a large repository. With the integration of cscope in Vim, say to find the definition of variable, i have to type ":cs f g " on vi's command line. Is there a easy ...
2
votes
1answer
59 views

Multiple KeyBinding like Visual Studio in WPF

I have tried to read many posts on StackOverflow about how to implement the KeyBinding like Visual Studio Ctrl+Shift+ A or Ctrl+K,Ctrl+C but no luck I have found this article on on blogspot ...
2
votes
2answers
335 views

Java - KeyListener, keyPressed versus keyTyped

I have a JFrame (well, a class which extends JFrame) and I want to do an action when I press the F5 key. So, I made the class implement KeyListener. And with that, came three methods, keyPressed, ...
2
votes
2answers
169 views

Keyboard Actionlistener

I am trying to make a space ship (PlayerShip.gif) in my game move left, right, up, and down when the coresponding keys are pressed. I know i need an keyboardListener but im having issues figuring out ...
2
votes
1answer
88 views

Key binding in Eclipse for Maven package command

I want to bind the mvn package command in eclipse. So I used the normal procedure to do this: Window->Preferences->General->Keys and then I filtered for Maven. The only commands that showed up were ...

1 2 3 4