[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] master e931071 04/20: When selecting from many windows, prioritiz
From: |
Oleh Krehel |
Subject: |
[elpa] master e931071 04/20: When selecting from many windows, prioritize the current |
Date: |
Sat, 09 May 2015 11:57:49 +0000 |
branch: master
commit e9310715e4a1f7646a54b8a700792e6b4ddde042
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>
When selecting from many windows, prioritize the current
* avy-jump.el (avy-dowindows): Update.
Fixes #14
---
avy-jump.el | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/avy-jump.el b/avy-jump.el
index 444b27a..eca101e 100644
--- a/avy-jump.el
+++ b/avy-jump.el
@@ -70,7 +70,8 @@
(not avy-all-windows)
avy-all-windows)))
(dolist (wnd (if avy-all-windows
- (window-list)
+ (cons (selected-window)
+ (delete (selected-window) (window-list)))
(list (selected-window))))
(with-selected-window wnd
(unless (memq major-mode '(image-mode doc-view-mode))
- [elpa] master updated (e3dbd7a -> e1f9513), Oleh Krehel, 2015/05/09
- [elpa] master e49f6d0 01/20: avy-jump.el (avy--regex-candidates): Update arglist, Oleh Krehel, 2015/05/09
- [elpa] master bca96ae 02/20: Add avy-goto-char-timer, Oleh Krehel, 2015/05/09
- [elpa] master b114cf8 03/20: ace-window.el (aw-ignore-current): New defcustom, Oleh Krehel, 2015/05/09
- [elpa] master e931071 04/20: When selecting from many windows, prioritize the current,
Oleh Krehel <=
- [elpa] master 6acbeb6 05/20: Use `avy-keys' for `avy-goto-subword-1', Oleh Krehel, 2015/05/09
- [elpa] master 35e1309 06/20: Add customization type to `avy-keys', Oleh Krehel, 2015/05/09
- [elpa] master c32b91f 07/20: Add more customization types, Oleh Krehel, 2015/05/09
- [elpa] master 6ff26f5 08/20: Use cl-lib instead of cl-macs, Oleh Krehel, 2015/05/09
- [elpa] master cc822c1 12/20: Fix eval-after-load isearch, Oleh Krehel, 2015/05/09
- [elpa] master a558585 09/20: Move the package metadata to avy.el, Oleh Krehel, 2015/05/09
- [elpa] master 0634762 11/20: Add a dependency to cl-lib for Emacs < 24.3, Oleh Krehel, 2015/05/09
- [elpa] master 0e049bb 10/20: Always default to avy-keys but allow for per-command overrides, Oleh Krehel, 2015/05/09
- [elpa] master 4007986 14/20: Fix avy-background for multiple windows, Oleh Krehel, 2015/05/09
- [elpa] master 9e6561b 13/20: Run checkdoc, Oleh Krehel, 2015/05/09