-
is there a way to select all input text? I want to select all and delete but with ctrl a it move the cursor to the beginning instead of select all input text |
Beta Was this translation helpful? Give feedback.
Answered by
fsc0
Feb 17, 2025
Replies: 1 comment 3 replies
-
Guess your 'delete' means deselect? $ seq 10 | fzf --multi --bind 'ctrl-a:toggle-all' In case you literally just want to delete (exclude) the result from the list. $ seq 10 | fzf --multi --bind 'ctrl-a:toggle-all' --bind 'delete:exclude-multi' |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
realyukii
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Guess your 'delete' means deselect?
Then you can set
--bind 'ctrl-a:toggle-all'
.In case you literally just want to delete (exclude) the result from the list.