Author: Lennart Borgman (gmail)
Date: Sep 17, 2008 16:53
Xah wrote: is there a way to setup emacs so that keybindings defined in the global keymap always override specific bindings in major or minor modes? I mean, so that i don't have to define hooks for every mode i might use. See (info "(elisp) Searching Keymaps")
|
| Show full article (0.29Kb) · Show article thread |
Author: Xah
Date: Sep 17, 2008 16:04
is there a way to setup emacs so that keybindings defined in the global keymap always override specific bindings in major or minor modes? I mean, so that i don't have to define hooks for every mode i might use. Xah ∑ http://xahlee.org/ ☄
|
| Show full article (0.25Kb) |
|
|
Author: Xah
Date: Sep 17, 2008 15:51
...with the Control? In summary, the notation for a Meta/Control+Shift+‹letter› keybinding used in macro is not consistant. For Meta, "-N" is effective but...might have miscommunicated. I try again: I want to define a keybinding with the Shift down. e.g. Ctrl+Shift+n. In emacs... This seems to be a bug. i'm trying to set keybindings for both Ctrl+n and Ctrl+Shift+n, by: (global-set...
|
| Show full article (2.45Kb) · Show article thread |
Author: B. T. Raven
Date: Sep 17, 2008 08:52
... both M-n and M-N. I might have miscommunicated. I try again: I want to define a keybinding with the Shift down. e.g. Ctrl+Shift+n. In emacs, it appears there are 2 notations that can be ....org/ ☄ --------------------- This seems to be a bug. i'm trying to set keybindings for both Ctrl+n and Ctrl+Shift+n, by: (global-set-key (kbd "C-N") 'f1) (...
|
| Show full article (1.52Kb) · Show article thread |
Author: Xah
Date: Sep 16, 2008 12:35
... for both M-n and M-N. I might have miscommunicated. I try again: I want to define a keybinding with the Shift down. e.g. Ctrl+Shift+n. In emacs, it appears there are 2 notations that can...property. Xah ∑ http://xahlee.org/ ☄ --------------------- This seems to be a bug. i'm trying to set keybindings for both Ctrl+n and Ctrl+Shift+n, by: (global-set-key (kbd "C-N") 'f1) ...
|
| Show full article (1.21Kb) · Show article thread |
Author: Xah
Date: Sep 15, 2008 02:59
This seems to be a bug. i'm trying to set keybindings for both Ctrl+n and Ctrl+Shift+n, by: (global-set-key (kbd "C-N") 'f1) (global-set-key (kbd "C-n") 'f2) however, that doesn't work. Emacs will take both Ctrl+Shift+n and Ctrl+Shift+n to be whichever is evaluated last. In this case, f2. But the following works: (global-set-key (kbd "C-S-n") 'f1) (global-set-key (kbd "C-n") 'f2...
|
| Show full article (0.59Kb) |
Author: Xah
Date: Sep 6, 2008 21:20
> The erognomic keybinding has a new version. http://xahlee.org/emacs/ergonomic_emacs_keybinding.html Much improved new version 3.4. Fixed compatility with cua mode, isearch, minibuffer, shell/comint mode, info mode, and other modes: awk, rcirc, w3m, nxml. Compatible with other major programing modes: c-mode, c++-mode, java, sh, js, perl, php, python. Also added just-one-space, ...
|
| Show full article (0.50Kb) · Show article thread |
Author: Xah
Date: Sep 6, 2008 20:52
> The erognomic keybinding has a new version. http://xahlee.org/emacs/ergonomic_emacs_keybinding.html Much improved new version 3.4. Fixed compatility with cua mode, isearch, minibuffer, shell/comint mode, info mode, and other modes: awk, rcirc, w3m, nxml. Compatible with other major programing modes: c-mode, c++-mode, java, sh, js, perl, php, python. Also added just-one-space, ...
|
| Show full article (0.50Kb) · Show article thread |
Author: Xah
Date: Sep 3, 2008 11:57
... On Sep 2, 5:21 pm, Will Parsons <oud...@nodomain.invalid> wrote: Xahwrote: The erognomic keybinding has a new version. http://xahlee.org/emacs/ergonomic_emacs_keybinding.html A visual image ...But i wanted to hold out a bit. there are many issues in designing a ergonomic keybinding set. Basically, you just have so many physical keys and in a fixed keyboard layout, and...
|
| Show full article (4.90Kb) · Show article thread |
Author: Will Parsons
Date: Sep 2, 2008 17:21
Xah wrote: The erognomic keybinding has a new version. http://xahlee.org/emacs/ergonomic_emacs_keybinding.html A visual image for old and new layout can be seen at: http://xahlee.org/emacs/ergonomic_emacs_keybinding_change.html Description of the main changes: ? Added delete-backward-char, delete-char, delete-backward-word, delete-word commands. ? The undo, cut,...
|
| Show full article (2.13Kb) · Show article thread |
|