Update docs

This commit is contained in:
Florian Bruhin 2016-07-13 21:25:48 +02:00
parent ff89ae7839
commit da417bff3e
3 changed files with 12 additions and 1 deletions

View File

@ -28,6 +28,9 @@ Added
status bar (top/bottom). status bar (top/bottom).
- New `--pdf <filename>` argument for `:print` which can be used to generate a - New `--pdf <filename>` argument for `:print` which can be used to generate a
PDF without a dialog. PDF without a dialog.
- New `:repeat-command` command (mapped to `.`) to repeat the last command.
Note that two former default bundings conflict with that binding, unbinding
them via `:unbind .i` and `:unbind .o` is recommended.
Changed Changed
~~~~~~~ ~~~~~~~

View File

@ -151,6 +151,7 @@ Contributors, sorted by the number of commits in descending order:
* Jakub Klinkovský * Jakub Klinkovský
* Raphael Pierzina * Raphael Pierzina
* Joel Torstensson * Joel Torstensson
* Jan Verbeek
* Tarcisio Fedrizzi * Tarcisio Fedrizzi
* Patric Schmitz * Patric Schmitz
* Claude * Claude
@ -164,7 +165,6 @@ Contributors, sorted by the number of commits in descending order:
* Kevin Velghe * Kevin Velghe
* Austin Anderson * Austin Anderson
* Jimmy * Jimmy
* Jan Verbeek
* Alexey "Averrin" Nabrodov * Alexey "Averrin" Nabrodov
* avk * avk
* ZDarian * ZDarian

View File

@ -932,6 +932,7 @@ How many steps to zoom out.
|<<prompt-accept,prompt-accept>>|Accept the current prompt. |<<prompt-accept,prompt-accept>>|Accept the current prompt.
|<<prompt-no,prompt-no>>|Answer no to a yes/no prompt. |<<prompt-no,prompt-no>>|Answer no to a yes/no prompt.
|<<prompt-yes,prompt-yes>>|Answer yes to a yes/no prompt. |<<prompt-yes,prompt-yes>>|Answer yes to a yes/no prompt.
|<<repeat-command,repeat-command>>|Repeat the last executed command.
|<<rl-backward-char,rl-backward-char>>|Move back a character. |<<rl-backward-char,rl-backward-char>>|Move back a character.
|<<rl-backward-delete-char,rl-backward-delete-char>>|Delete the character before the cursor. |<<rl-backward-delete-char,rl-backward-delete-char>>|Delete the character before the cursor.
|<<rl-backward-word,rl-backward-word>>|Move back to the start of the current or previous word. |<<rl-backward-word,rl-backward-word>>|Move back to the start of the current or previous word.
@ -1158,6 +1159,13 @@ Answer no to a yes/no prompt.
=== prompt-yes === prompt-yes
Answer yes to a yes/no prompt. Answer yes to a yes/no prompt.
[[repeat-command]]
=== repeat-command
Repeat the last executed command.
==== count
Which count to pass the command.
[[rl-backward-char]] [[rl-backward-char]]
=== rl-backward-char === rl-backward-char
Move back a character. Move back a character.