Change key suggestion "M-p" -> "M-o"

"M-p" conflicts with e.g. `shell-mode' and the minibuffer binding.

Fixes #123
old-master
Oleh Krehel 8 years ago
parent ceea53d7b6
commit 208ea2a4e8
  1. 7
      README.md
  2. 4
      ace-window.el

@ -19,8 +19,8 @@ and pack it into a single key binding, similar to `other-window`.
## Setup
Just assign `ace-window` to a short key binding, as switching windows
is a common task. I suggest <kbd>M-p</kbd>, as it's short and not
bound in the default Emacs.
is a common task. I suggest <kbd>M-o</kbd>, as it's short and not
bound to anything important in the default Emacs.
## Usage
@ -77,7 +77,7 @@ have `aw-dispatch-always` set to `t`.
## Customization
Aside from binding `ace-window`:
(global-set-key (kbd "M-p") 'ace-window)
(global-set-key (kbd "M-o") 'ace-window)
the following customizations are available:
@ -161,4 +161,3 @@ When t, `ace-window` will ignore buffers and major-modes in
### `aw-ignore-current`
When t, `ace-window` will ignore `selected-window'.

@ -35,9 +35,9 @@
;;
;; To setup this package, just add to your .emacs:
;;
;; (global-set-key (kbd "M-p") 'ace-window)
;; (global-set-key (kbd "M-o") 'ace-window)
;;
;; replacing "M-p" with an appropriate shortcut.
;; replacing "M-o" with an appropriate shortcut.
;;
;; By default, ace-window uses numbers for window labels so the window
;; labeling is intuitively ordered. But if you prefer to type keys on

Loading…
Cancel
Save