File tree 4 files changed +9
-0
lines changed
4 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -228,6 +228,10 @@ Default value: \fB<Ctrl><Shift>C\fR
228
228
Paste the current contents of the clipboard.
229
229
Default value: \fB <Ctrl><Shift>V \fR
230
230
.TP
231
+ .B paste_selection
232
+ Paste the current contents of the primary selection.
233
+ Default value: \fB Unbound \fR
234
+ .TP
231
235
.B toggle_scrollbar
232
236
Show/Hide the scrollbar.
233
237
Default value: \fB <Ctrl><Shift>S \fR
Original file line number Diff line number Diff line change 142
142
'close_term' : '<Shift><Control>w' ,
143
143
'copy' : '<Shift><Control>c' ,
144
144
'paste' : '<Shift><Control>v' ,
145
+ 'paste_selection' : '' ,
145
146
'toggle_scrollbar' : '<Shift><Control>s' ,
146
147
'search' : '<Shift><Control>f' ,
147
148
'page_up' : '' ,
Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ class PrefsEditor:
124
124
'close_term' : _ ('Close terminal' ),
125
125
'copy' : _ ('Copy selected text' ),
126
126
'paste' : _ ('Paste clipboard' ),
127
+ 'paste_selection' : _ ('Paste primary selection' ),
127
128
'toggle_scrollbar' : _ ('Show/Hide the scrollbar' ),
128
129
'search' : _ ('Search terminal scrollback' ),
129
130
'page_up' : _ ('Scroll upwards one page' ),
Original file line number Diff line number Diff line change @@ -1810,6 +1810,9 @@ def key_copy(self):
1810
1810
def key_paste (self ):
1811
1811
self .paste_clipboard ()
1812
1812
1813
+ def key_paste_selection (self ):
1814
+ self .paste_clipboard (True )
1815
+
1813
1816
def key_toggle_scrollbar (self ):
1814
1817
self .do_scrollbar_toggle ()
1815
1818
You can’t perform that action at this time.
0 commit comments