-
-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
avy-jump without complete paths and overlays on top of the jump target (like in ace-jump) #5
Comments
It's not yet customizable, but it should be soon. There are 3 styles:
The first one is the currently used one that I like. The last one is |
Oh yes, that'd be great! |
@abo-abo there is (and you may already know this) potentially a way to do multi-char targets that also overlay. The math is described on the May 19th posts here. In essence, we allow the targets to overlap and do extra math to make sure that all possible intervals on the combined targets are unique. This is the method used by Does that sound at all feasible? |
Thanks for the pointer, I'll have to look into this. At the moment, I think that overlaying multiple chars would quickly result in a loss of context, since a large portion of the original text would be hidden. |
@abo-abo that may be true, but I doubt this is better: Targets are so far displaced from their original positions that it's decently hard to follow where they went. I, personally, rely on remembering where the target was originally and just mash whatever shows up so I don't have time to forget. I could just use the |
Me, too. I fixate the position I wanna jump to and then just type whatever shows up. So I'd 👍 @PythonNut's method. |
Would it be better with three consecutive chars overlayed on each target? You wouldn't be able to see the original text at all. |
@abo-abo I think yes. I fix the jump position, then invoke |
OK, we'll just have to implement and see. |
I came to suggest exactly the same thing as @PythonNut and @tsdh. |
* avy-jump.el (avy--overlay-at-full): New defun. (avy--style-fn): Update. (avy-goto-char-style): Update. (avy-goto-word-style): Update. Fixes #5
* avy-jump.el (avy--overlay-at-full): New defun. (avy--style-fn): Update. (avy-goto-char-style): Update. (avy-goto-word-style): Update. Fixes #5
👍 It looks like there's a small bug where it picks up the newline in the overlay if the query char is at the end of the line. |
Thanks, I see it now. |
* avy-jump.el (avy--overlay-at-full): Update. Re #5
Wow, this is awesome! Thanks @abo-abo! |
Does |
@PythonNut |
So if the targets are adjacent, the text is shifted one character to the right? |
Yes. |
Indeed. Hm, that makes the To implement the algorithm @PythonNut referenced, I wonder if there's even some "better" algorithm where better means no restriction on number of adjacent matches but possibly longer key sequences. Basically, what needs to be ensured is that the key sequence assigned to match N+1 shares its front keys with match N if the key sequence of that runs into match N+1. Basically, that's simple when doing by hand, but I don't see the math behind it right now. Here's an example where the matches are
Can anyone formalize that? |
I could add an overwrite check, although the best solution to the problem is just to use
You can try to implement a less optimal algorithm in the two mentioned parameters, that instead resolves overlay conflicts. But I expect that the result will not be very consistent: the leading chars structure will vary depending on the buffer text. The current sequence is actually pretty consistent, since it's basically increasing in lexicographic order by 1 each time. |
Yes, of course you are right. But still it's a very interesting problem to me, and if there is a general solution probably resulting in longer key sequences and of course in non-lexicographic ordering, I'd still want to try it out. Especially the non-lexicographic order is a non-issue anyway because when you jump, you know where you want to end up so you don't care about the preceding or following matches and thus not about their key sequences. Well, and if you don't use the full alphabet as I'll try to ask some math guy. Maybe there is a good solution that could be implemented in a special |
Suppose that the buffer is filled with 15 occurrences of the word Also note that in the screenshot, it's not all that bad: the first decision char is always in the proper position, and I can make sure that it's not overwritten. And thanks to the proper sequencing, you can easily type the prefix to narrow the candidates (since candidates with same prefix are in the same area). I could enhance this by coloring the first prefix with a different face. |
Oops, I was wrong before: the overlays don't get overwritten. |
@abo-abo currently, I'm really excited. If Currently, the math is done. The only addition I would add is the case when two targets are not adjacent, but still overlap, as would be the case jumping to
In this case, you can just skip forward *=*=*=*=*=* aaa aab ⇐ ignored aba bab ⇐ ignored abb bbb ⇐ ignored bba baa ⇐ ignored aac aca ⇐ ignored cac final result: (caps indicate highlighted char) *=*=*=*=*=* AaAbAbBbAaCac |
I love De Bruijn sequences, but I'll say it: I'm confused. |
@vermiculus okay, maybe I need to say more. Suppose that our targets do not completely overlap (which can be the case if the subsequence length is >2). *=* ??? Target 1 ??? Target 2 This would normally be a problem, because the order 3 De Bruijn overlaps by two chars, not one. We can fix this by adding dummy target to the group: *=* aaababb Master Sequence aaa Target 1 aab (dummy) aba Target 2 And we just drop it later, to get: *=* aaa Target 1 aba Target 2
Imperatively, we "skip" over the dummy when we detect a partially overlapping target, which is what I was clumsily trying to describe. Typing aab, which would have taken you to the It's really pretty dumb. I should probably just have left it to the implementer to discover. Does that help at all? |
I'm aware of this, I think it's a feature: it's like saying in bold that if you type this letter, the corresponding area will become active. |
Well, I'd love to see an implementation. So far, De Bruijn are only theoretically good. I wonder how it will look in practice. |
Do I see it correctly that De Bruijn is very similar to (but a bit more space-efficient to compute) just using the cartesian product of In both cases, you have to walk the matches and pick non-conflicting paths when there are overlaps. And it might turn out that De Bruijn/cartesian product for paths of length |
@tsdh set of subsequences produced by De Bruijn is the same as the cartesian product (that is, all possible combinations are present). However, the ordering is different. The ordering matters very much because, if we we choose correctly, we don't have to
Suppose we want to jump to 2 * 2 == pow(2, 2) * 1;
char** a = 1 * 2; (for convenience, I'll number the Under cartesian allocation
This is very similar to the algorithm that char** a = 1 * 2;
aba
abb
baa
We'd need some overlap resolution algorithm to resolve a new unique path. Under De Bruijn allocation
char** a = 1 * 2;
aba
bab
abb
As you can see, there is no conflict. In fact, that's the magic of De Bruijn. All conflicts are resolved before they even have a chance to happen.
De Bruijn is dense. In fact, it covers the entire space of paths (all possible combinations appear in the sequence). It is, essentially, optimal. The only exception is the case I highlight in my last post, which could bring the efficiency down by a factor of |
Yes, I got that. So BTW, I don't think this is such an overly rare case. For example, the letter So then you have the choice: either you assign sequences linearly in one go which is fast but a significant portion of subsequences will be skipped, or you remember the skipped sequences and try to assign them later at places with no overlaps. The second approach is a bit more complex (but not really hard) and has the benefit that chances are higher that you don't have to fall back to longer paths. |
Ok, I think I've implemented a good part of the stuff. (defun avy--de-bruijn (keys n)
"DeBruijn seq for alphabet `keys' and subseqs of length `n'."
(let* ((k (length keys))
(a (make-list (* n k) 0))
sequence)
(cl-labels ((db (T p)
(if (> T n)
(if (eq (% n p) 0)
(setq sequence
(append sequence
(cl-subseq a 1 (1+ p)))))
(setf (nth T a) (nth (- T p) a))
(db (1+ T) p)
(cl-loop for j from (1+ (nth (- T p) a)) to (1- k) do
(setf (nth T a) j)
(db (1+ T) T)))))
(db 1 1)
(mapcar (lambda (n)
(nth n keys))
sequence))))
(defun avy--starts-with-p (list prefix)
"Return true iff LIST starts with PREFIX."
(if prefix
(catch 'found
(while (= (car list) (car prefix))
(setq list (cdr list)
prefix (cdr prefix))
(unless prefix
(throw 'found t)))
(throw 'found nil))
t))
;; FIXME: This doesn't consider the window of matches yet but only their
;; position.
(defun avy--path-alist-1 (matches seq-len keys)
(let ((db-seq (avy--de-bruijn keys seq-len))
prev-pos prev-seq path-alist)
;; The De Bruijn seq is cyclic, so append the seq-len - 1 first chars to
;; the end.
(setq db-seq (nconc db-seq (cl-subseq db-seq 0 (1- seq-len))))
(cl-labels ((subseq-and-pop ()
(when (nth (1- seq-len) db-seq)
(prog1 (cl-subseq db-seq 0 seq-len)
(pop db-seq)))))
(while matches
(let* ((cur (car matches))
(pos (caar cur))
(path (if prev-pos
(let ((diff (- pos prev-pos)))
(when (and (> diff 0) (< diff seq-len))
(while (and (nth (1- seq-len) db-seq)
(not (avy--starts-with-p
(cl-subseq db-seq 0 seq-len)
(cl-subseq prev-seq diff))))
(pop db-seq)))
(subseq-and-pop))
(subseq-and-pop))))
(if (not path)
(setq matches nil
path-alist nil)
(push (cons path (car matches)) path-alist)
(setq prev-pos pos
prev-seq path
matches (cdr matches))))))
(nreverse path-alist)))
(defun avy--path-alist (matches keys)
"Returns as alist with entries (PATH . MATCH)."
(let* ((seq-len 1)
(path-alist (avy--path-alist-1 matches seq-len keys)))
(while (not path-alist)
(cl-incf seq-len)
(setq path-alist (avy--path-alist-1 matches seq-len keys)))
path-alist))
What remains to be done is to convert this alist into the tree representation of |
Strange, I finished this just last afternoon. (eval-when-compile (require 'cl-lib))
(defmacro avy-multipop (lst n)
"Remove LST's first N elements and return them."
`(if (<= (length ,lst) ,n)
(prog1 ,lst
(setq ,lst nil))
(prog1 ,lst
(setcdr
(nthcdr (1- ,n) (prog1 ,lst (setq ,lst (nthcdr ,n ,lst))))
nil))))
(defun avy-de-bruijn (k n terms)
"De Bruijn sequence for alphabet `k' and sub-sequences of length `n', for a
minimum of `terms' terms"
(catch 'return
(when (= k 0)
(throw 'return (vector)))
(let ((a (make-vector (* n k ) 0))
(sequence (vector))
(db (lambda (T p)
(if (> T n)
(when (eq (% n p) 0)
(setq sequence
(vconcat sequence
(cl-subseq a 1 (1+ p))))
(when (< (+ terms n) (length sequence))
(throw 'return sequence)))
(setf (elt a T) (elt a (- T p)))
(funcall db (1+ T) p)
(cl-loop for j from (1+ (elt a (- T p))) to (1- k) do
(setf (elt a T) j)
(funcall db (1+ T) T))))))
(funcall db 1 1)
(throw 'return sequence))))
(defun avy-partition (k n)
"The optimal block sizes for alphabet k and number of targets n.
k is partitioned into De Bruijn blocks that cover n with minimal depth."
(let* ((max-order (ceiling (log n k)))
(var (vconcat
(make-vector (1- max-order) 0)
(list k)))
(i (1- (length var))))
(catch 'return
(while t
(if (eq (elt var i) 0)
(progn
(when (eq i 0)
(throw 'return var))
(cl-decf i))
(cl-decf (elt var i))
(when (/= i 0)
(cl-incf (elt var (1- i))))
(when (< (apply #'+
(cl-mapcar #'expt var
(number-sequence 1 (length var))))
n)
(cl-incf (elt var i))
(cl-decf (elt var (1- i)))
(if (= i 0)
(throw 'return var))
(cl-decf i)))))))
(defun avy-tree* (lst keys)
(let ((targets-needed 0)
(last-target-point 0)
(depth-guess (ceiling (log (length lst) (length keys)))))
;; compute the total number of targets needed, including edge cases
(mapc (lambda (loc)
(let* ((pos (caar loc))
(delta (- pos last-target-point)))
(if (< delta depth-guess)
(cl-incf targets-needed delta)
(cl-incf targets-needed 1))))
lst)
(let ((partitions (avy-partition (length keys) targets-needed))
(keys-left keys))
;; compute the de-brujin blocks
(setq partitions
(cl-mapcar
(lambda (k n)
(let* ((block-keys (if (/= k 0) (avy-multipop keys-left k)))
(seq (mapcar (lambda (char)
(elt block-keys char))
(avy-de-bruijn k n targets-needed)))
(result))
seq
(cl-loop for i from 0 to (1- (- (length seq) n)) do
(setq result (cons (cl-subseq seq i (+ i n)) result)))
(nreverse result)))
partitions
(number-sequence 1 (length partitions))))
partitions))) We're pretty much in the same place, so I'll let you continue the development. The major differences are:
This is so we can have a worst case path length, but still give some targets a better path length. I don't have a closed form solution for the optimal block sizes, so I use gradient descent instead. I'm no lisp expert. Python I can do, Elisp, not so much. I'll let you continue the development. |
@abo-abo @PythonNut I've pushed my changes to a separate branch of my fork https://github.com/tsdh/avy-jump/tree/de-bruijn. I think the actual calculation and tree-building is correct. What's missing is the UI/overlay changes, and I'd welcome if @abo-abo could give this a whirl. Basically, the |
Hard to say. There aren't any test cases, so I don't know if it's working at all. Plus the |
@abo-abo The |
It wants to take |
It assumes that |
No. It's valid sometimes, but the original For example, in |
Ok, I see. I could test if the car of a match is a cons or a plain integer to work around this exact issue. But it's not possible to be completely agnostic to the match representation because the algorithm requires the start position and the window in order to figure out if a subpart of the De Bruijn sequence needs to be skipped when there are almost adjacent matches. |
I've just had a test of the code and it seems to work fine. You should try to integrate it if you have the time. My suggestion:
Then just tie (defun avy--overlay-debruin (path leaf)
"Create an overlay with PATH at LEAF.
PATH is a list of keys from tree root to LEAF.
LEAF is normally ((BEG . END) . WND)."
(let* ((str (propertize
(apply #'string (reverse path))
'face 'avy-lead-face))
(len (length path))
(beg (if (consp (car leaf))
(caar leaf)
(car leaf)))
(wnd (cdr leaf)))
(when (> (length str) 1)
(set-text-properties 0 1 '(face avy-lead-face-0) str))
(with-selected-window wnd
(save-excursion
(goto-char beg)
(let* ((end (min (+ beg len) (line-end-position)))
(ol (make-overlay
beg end
(current-buffer)))
(old-str (buffer-substring beg (1+ beg))))
(when avy-background
(setq old-str (propertize
old-str 'face 'avy-background-face)))
(overlay-put ol 'window wnd)
(overlay-put ol 'category 'avy)
(overlay-put ol 'display (if (string= old-str "\n")
(concat str "\n")
str))
(push ol avy--overlays-lead)))))) |
@abo-abo Cool, I'm gonna do that as soon as I find some spare time. Wrt. |
Includes the suggestions Oleh made in abo-abo#5.
Already implements Oleh's suggestions in abo-abo#5.
* avy.el (avy-style): New choice option. (avy--de-bruijn): New defun. (avy--path-alist-1): New defun. (avy--group-by): New defun. (avy--path-alist-to-tree): New defun. (avy-tree-de-bruijn): New defun, semi-compatible with `avy-tree'. (avy--process): Use `avy-tree-de-bruijn' when `avy-style' is 'de-bruijn. (avy--style-fn): Use `avy--overlay-at-full' when `avy-style' is 'de-bruijn. Fixes #51 Re #5 TODO: When tree produced by `avy-tree-de-bruijn' is traversed depth-first, the results should be in-order of their appearance in the window. Only in this case the overlay functions will work correctly, since they need to be applied sequentially from window end to window start.
* avy.el (avy--group-by): Remove. (avy--path-alist-to-tree): Remove. (avy-tree-de-bruijn): Remove. (avy-read-de-bruijn): New defun. (avy--process): Update. Instead of building a tree (from a flat sequence) and traversing it, just use the flat sequence. This has the advantage of candidates being in proper buffer-sequential order. Re #51 Re #5
There seems to be a slight bug where the overlays start incorrectly marking decision chars. Example Jump text ;; This buffer is for notes you don't want to save, and for Lisp evaluation.
;; If you want to create a file, visit that file with C-x C-f,
;; then enter the text in that file's own buffer.
;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;; Other than that, it seems to work perfectly! There is one other possible difficulty: it's hard to tell how many characters a certain target needs. Of course, you can tell from context (you can scan forward to the end of the cluster and count the number of non decision chars to determine the needed length.) I'm not entirely sure how to solve this. One way would be to have different color decision chars based on the number of characters left to type. (As far as I can tell, this is the way
I'm convinced that the second isn't much of a problem. (We already have quite a bit of code dedicated to this style). The first is probably also a non-issue, as |
@PythonNut I can reproduce that, but for me all three lines look like your first line of semicolons, e.g., after the first two lead chars, only every second char is shown as a lead char although every char is. Aside from that, could you please open a separate issue for that? This issue is solved IMHO and already has a gazillion comments completely unrelated to this specific bug. @abo-abo Please close this one. |
It's been closed for weeks now :) |
Ups. ;-) |
I've switched from ace-jump to avy-jump just recently. One major difference is that ace-jump's overlays are displayed on top of the jump target and only one jump character is displayed at a time. With avy-mode, the overlays always show the complete jump character sequence and are displayed right of the jump target.
At least my personal preference (which is not ace-jump biased too much; I started using that only two weeks ago before switching to avy-jump yesterday) is that I like the ace-jump behavior better because the buffer contents won't switch to the right. That is, if you have 5 matches on a line, each requiring a 2-char key sequence to jump to, then the last match has switched 8 chars to the right. With ace-jump, it stays where it has been before. So this "fix target with your eyes and then jump" thingy works better.
The text was updated successfully, but these errors were encountered: