mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
config: bind shift+insert to primary-paste by default
This commit is contained in:
parent
c66ad118b7
commit
afafe12d5b
4 changed files with 6 additions and 2 deletions
|
|
@ -35,6 +35,8 @@
|
|||
|
||||
* Default value of the **scrollback.multiplier** option in `foot.ini`
|
||||
from `1.0` to `3.0`.
|
||||
* `shift`+`insert` now pastes from the primary selection by
|
||||
default. This is in addition to middle-clicking with the mouse.
|
||||
|
||||
|
||||
### Deprecated
|
||||
|
|
|
|||
1
config.c
1
config.c
|
|
@ -1780,6 +1780,7 @@ add_default_key_bindings(struct config *conf)
|
|||
add_binding(BIND_ACTION_SCROLLBACK_DOWN, shift, XKB_KEY_Page_Down);
|
||||
add_binding(BIND_ACTION_CLIPBOARD_COPY, ctrl_shift, XKB_KEY_C);
|
||||
add_binding(BIND_ACTION_CLIPBOARD_PASTE, ctrl_shift, XKB_KEY_V);
|
||||
add_binding(BIND_ACTION_PRIMARY_PASTE, shift, XKB_KEY_Insert);
|
||||
add_binding(BIND_ACTION_SEARCH_START, ctrl_shift, XKB_KEY_R);
|
||||
add_binding(BIND_ACTION_FONT_SIZE_UP, ctrl, XKB_KEY_plus);
|
||||
add_binding(BIND_ACTION_FONT_SIZE_UP, ctrl, XKB_KEY_equal);
|
||||
|
|
|
|||
|
|
@ -310,8 +310,8 @@ e.g. *search-start=none*.
|
|||
Pastes from the _clipboard_. Default: _Control+Shift+V_.
|
||||
|
||||
*primary-paste*
|
||||
Pastes from the _primary selection_. Default: not bound (to a
|
||||
_key_, see *mouse-bindings*).
|
||||
Pastes from the _primary selection_. Default: _Shift+Insert_ (also
|
||||
defined in *mouse-bindings*).
|
||||
|
||||
*search-start*
|
||||
Starts a scrollback/history search. Default: _Control+Shift+R_.
|
||||
|
|
|
|||
1
foot.ini
1
foot.ini
|
|
@ -67,6 +67,7 @@
|
|||
# scrollback-down-line=none
|
||||
# clipboard-copy=Control+Shift+C
|
||||
# clipboard-paste=Control+Shift+V
|
||||
# primary-paste=Shift+Insert
|
||||
# search-start=Control+Shift+R
|
||||
# font-increase=Control+plus Control+equal Control+KP_Add
|
||||
# font-decrease=Control+minus Control+KP_Subtract
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue