[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] master ca92a08 09/17: avy-jump.el (avi-goto-word-1): Count some s
From: |
Oleh Krehel |
Subject: |
[elpa] master ca92a08 09/17: avy-jump.el (avi-goto-word-1): Count some syms as words |
Date: |
Fri, 08 May 2015 13:43:41 +0000 |
branch: master
commit ca92a08d27e9650714262afa44bd891d8fe8fc02
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>
avy-jump.el (avi-goto-word-1): Count some syms as words
* avy-jump.el (avi-goto-word-1): Update.
Fixes #38
---
avy-jump.el | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/avy-jump.el b/avy-jump.el
index 9a39880..c1c03ab 100644
--- a/avy-jump.el
+++ b/avy-jump.el
@@ -247,10 +247,13 @@ When ARG is non-nil, flip the window scope."
"Jump to a word start in current window.
Read one char with which the word should start."
(interactive)
- (let ((candidates (avi--regex-candidates
- (concat
- "\\b"
- (string (read-char "char: "))))))
+ (let* ((str (string (read-char "char: ")))
+ (candidates (avi--regex-candidates
+ (if (string-match "[,.+-*/=]" str)
+ str
+ (concat
+ "\\b"
+ str)))))
(avi--goto
(avi--process candidates #'avi--overlay-pre))))
- [elpa] master updated (876d210 -> 269e61a), Oleh Krehel, 2015/05/08
- [elpa] master 7b44c1f 01/17: avy-jump.el (avi-goto-subword-0): New command, Oleh Krehel, 2015/05/08
- [elpa] master b61131c 03/17: avy-jump.el (avi--overlay-pre): Handle plain numbers, Oleh Krehel, 2015/05/08
- [elpa] master ff4ce51 02/17: Don't collect candidates hidden by outlines, Oleh Krehel, 2015/05/08
- [elpa] master cd6583b 04/17: avy-jump.el (avi-all-windows): New defcustom, Oleh Krehel, 2015/05/08
- [elpa] master f92689a 06/17: avy-jump.el (avi--line): Fixup the issue with org outlines, Oleh Krehel, 2015/05/08
- [elpa] master 17b44a8 05/17: Update a few commands to jump in one or more windows, Oleh Krehel, 2015/05/08
- [elpa] master 3bbd404 08/17: Make sure avi-move-line and avi-copy-line behave consistently., Oleh Krehel, 2015/05/08
- [elpa] master ca92a08 09/17: avy-jump.el (avi-goto-word-1): Count some syms as words,
Oleh Krehel <=
- [elpa] master dfe24f3 11/17: Add `avi-word-punc-regexp` defcustom, Oleh Krehel, 2015/05/08
- [elpa] master 6a0acfc 10/17: Add "make compile" and "make run", Oleh Krehel, 2015/05/08
- [elpa] master ee76efd 12/17: Fix rounding error, Oleh Krehel, 2015/05/08
- [elpa] master d1780dd 07/17: avy-jump.el (avi-goto-line): Work with one or more windows, Oleh Krehel, 2015/05/08
- [elpa] master 1e94459 13/17: avy-jump.el (avi--goto): Push mark before moving, Oleh Krehel, 2015/05/08
- [elpa] master c53b0d2 14/17: Start the decoupling of ace-window and avy-jump, Oleh Krehel, 2015/05/08
- [elpa] master cc38c04 16/17: Bump version, Oleh Krehel, 2015/05/08
- [elpa] master 269e61a 17/17: Merge commit 'cc38c044a13e6df822431d6c706cf4b9255900bd' from ace-window, Oleh Krehel, 2015/05/08
- [elpa] master 05e7016 15/17: Ace Window now depends on Avy, Oleh Krehel, 2015/05/08