|
Hi, I was wondering if there is a simpler way to reveal (i.e. come out of the consult-focus-lines minor mode so to speak) hidden lines instead of doing the prefix C-u and rerunning |
Answered by
oantolin
Apr 18, 2026
Replies: 1 comment 1 reply
|
You could define your own command that calls (defun reveal-lines ()
(interactive)
(consult-focus-lines nil t))Then bind that to any key you want. |
1 reply
Answer selected by
paniash
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could define your own command that calls
consult-focus-lineswith theSHOWargument set tot(which is what usingC-udoes):Then bind that to any key you want.