How to paste from the clipboard into the terminal #3952
-
Similar Q: #3081 I apologise for the basic question, but all I want to perform is to paste contents of my clipboard into the terminal without fzf being triggered.
allowmetopaste.mp4
|
Beta Was this translation helpful? Give feedback.
Answered by
LangLangBart
Aug 4, 2024
Replies: 1 comment 2 replies
-
I can't reproduce it so far. When you run the following commands, is the issue still observable? # minimal zsh setup
command env -i HOME=$HOME TERM=$TERM USER=$USER PATH=$PATH SHELL=zsh zsh --no-rcs
# fzf setup
source <(fzf --zsh)
export FZF_DEFAULT_OPTS='--multi --no-height --extended'
export FZF_CTRL_R_OPTS="--bind 'ctrl-y:execute-silent(echo -n {2..} | pbcopy)+abort'"
# Press ctrl-r
# Press ctrl-y to copy a command
# Press Esc once If the issue is no longer observable, it is very likely an issue with your shell setup, likely a plugin1. Try to disable some plugins/options until you find the one causing the mischief. Footnotes |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
sidouglas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I can't reproduce it so far. When you run the following commands, is the issue still observable?
If the issue is no longer observable, it is very likely an issue with your shell setup, likely a plugin1. Try to disable some plugins/options until you find t…