The background highlighting when pasting text into into the terminal / shell has subtly annoyed me for a while. Here is how to remove it:<p><pre><code> zsh: Add `zle_highlight+=(paste:none)` to ~/.zshrc [1]
bash (v4.4+): add `set enable-bracketed-paste off` to ~/.inputrc [2]
</code></pre>
[1] https://github.com/zsh-users/zsh-syntax-highlighting/issues/349<p>[2] https://www.garyshood.com/bash-highlight/
Some interesting additional information about "bracketed paste mode": <a href="https://cirw.in/blog/bracketed-paste" rel="nofollow">https://cirw.in/blog/bracketed-paste</a>