Update docs

This commit is contained in:
Florian Bruhin 2017-11-06 13:47:50 +01:00
parent 29cbf75615
commit 18cd608493
3 changed files with 14 additions and 0 deletions

View File

@ -39,6 +39,8 @@ Added
- New `qute-pass` userscript as alternative to `password_fill` which allows
selecting accounts via rofi or any other dmenu-compatile application.
- New `qt.highdpi` setting to turn on Qt's High-DPI scaling.
- New `:completion-item-yank` command (bound to `<Ctrl-C>`) to yank the current
completion item text.
Changed
~~~~~~~

View File

@ -1143,6 +1143,7 @@ How many steps to zoom out.
|<<command-history-prev,command-history-prev>>|Go back in the commandline history.
|<<completion-item-del,completion-item-del>>|Delete the current completion item.
|<<completion-item-focus,completion-item-focus>>|Shift the focus of the completion menu to another item.
|<<completion-item-yank,completion-item-yank>>|Yank the current completion item onto the clipboard.
|<<drop-selection,drop-selection>>|Drop selection and keep selection mode enabled.
|<<enter-mode,enter-mode>>|Enter a key mode.
|<<follow-hint,follow-hint>>|Follow a hint.
@ -1247,6 +1248,15 @@ Shift the focus of the completion menu to another item.
==== positional arguments
* +'which'+: 'next', 'prev', 'next-category', or 'prev-category'.
[[completion-item-yank]]
=== completion-item-yank
Syntax: +:completion-item-yank [*--sel*]+
Yank the current completion item onto the clipboard.
==== optional arguments
* +*-s*+, +*--sel*+: True to use the primary selection instead of the clipboard.
[[drop-selection]]
=== drop-selection
Drop selection and keep selection mode enabled.

View File

@ -414,6 +414,7 @@ Default:
* +pass:[&lt;Ctrl-?&gt;]+: +pass:[rl-delete-char]+
* +pass:[&lt;Ctrl-A&gt;]+: +pass:[rl-beginning-of-line]+
* +pass:[&lt;Ctrl-B&gt;]+: +pass:[rl-backward-char]+
* +pass:[&lt;Ctrl-C&gt;]+: +pass:[completion-item-yank]+
* +pass:[&lt;Ctrl-D&gt;]+: +pass:[completion-item-del]+
* +pass:[&lt;Ctrl-E&gt;]+: +pass:[rl-end-of-line]+
* +pass:[&lt;Ctrl-F&gt;]+: +pass:[rl-forward-char]+
@ -421,6 +422,7 @@ Default:
* +pass:[&lt;Ctrl-K&gt;]+: +pass:[rl-kill-line]+
* +pass:[&lt;Ctrl-N&gt;]+: +pass:[command-history-next]+
* +pass:[&lt;Ctrl-P&gt;]+: +pass:[command-history-prev]+
* +pass:[&lt;Ctrl-Shift-C&gt;]+: +pass:[completion-item-yank --sel]+
* +pass:[&lt;Ctrl-Shift-Tab&gt;]+: +pass:[completion-item-focus prev-category]+
* +pass:[&lt;Ctrl-Tab&gt;]+: +pass:[completion-item-focus next-category]+
* +pass:[&lt;Ctrl-U&gt;]+: +pass:[rl-unix-line-discard]+