Fix #3586: truncated filenames from counsel-file-jump
When using ripgrep instead of fd.
This commit is contained in:
parent
63a94698a2
commit
89915715a6
1 changed files with 2 additions and 3 deletions
|
@ -296,10 +296,9 @@ evil-ex-specific constructs, so we disable it solely in evil-ex."
|
||||||
(cons find-program args)
|
(cons find-program args)
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(goto-char (point-min))
|
(goto-char (point-min))
|
||||||
(let ((offset (if (member find-program (list "rg" doom-projectile-fd-binary)) 0 2))
|
(let (files)
|
||||||
files)
|
|
||||||
(while (< (point) (point-max))
|
(while (< (point) (point-max))
|
||||||
(push (buffer-substring (+ offset (line-beginning-position)) (line-end-position))
|
(push (buffer-substring (line-beginning-position) (line-end-position))
|
||||||
files)
|
files)
|
||||||
(forward-line 1))
|
(forward-line 1))
|
||||||
(nreverse files)))))))
|
(nreverse files)))))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue