Sunday, May 19, 2024
12
rated 0 times [  12] [ 0]  / answers: 1 / hits: 2586  / 3 Years ago, sat, october 16, 2021, 8:01:49

In Ubuntu 21.04, when text is pasted into Gnome Terminal, the text is always highlighted.



  • It appears as if the text is selected, but it is only highlighted.

  • If you right-click on this highlighted text, the "Copy" option is actually disabled.

  • Clicking in the terminal or clicking on the highlighted text does not un-highlight the text.

  • The only way to un-highlight the pasted text is to type a key.

  • If you try to select the highlighted text by clicking and dragging the mouse pointer, the text color actually inverts, and the text looks like it is not selected, when it in fact is selected.
    enter image description here


This confusing behavior is not present in Ubuntu 20.04.



  • In Ubuntu 20.04, when text is pasted into Gnome Terminal, the text is not highlighted.

  • Then, selecting the text highlights it, as expected.
    enter image description here


How to revert this confusing behavior of Gnome Terminal in Ubuntu 21.04, so it behaves like Gnome Terminal in Ubuntu 20.04 ?


More From » gnome-terminal

 Answers
6

I also noticed this behavior after upgrade to 21.04. Don't think this as a bug: It is a new "default setting" in Bash 5.1.


First check:


$ bind -v | grep bracketed
set enable-bracketed-paste on

Then, try to disable (for the current session):


$ bind 'set enable-bracketed-paste off'
$ bind -v | grep bracketed
set enable-bracketed-paste off


And retry your findings in that terminal session. This is also explained in: https://stackoverflow.com/questions/35611134/bash-bracketed-paste-is-it-supported


I would suggest living with this new default setting of Bash, since it prevents the accidental middle-clicking or copy/pasting of multiple lines (consisting of possibly malicious commands) from the clipboard.


[#1645] Sunday, October 17, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
llael

Total Points: 209
Total Questions: 102
Total Answers: 118

Location: Rwanda
Member since Fri, May 5, 2023
1 Year ago
llael questions
Fri, May 19, 23, 07:42, 1 Year ago
Sun, Dec 11, 22, 02:43, 1 Year ago
Tue, May 18, 21, 06:06, 3 Years ago
Sun, Aug 21, 22, 23:41, 2 Years ago
;