diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-09-08 21:21:44 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-09-08 21:21:44 +0200 |
commit | e0c5507a7fd0e6412a1b0b629535d3154f7c9b0f (patch) | |
tree | e89dfd2597393279e35b4b781978e6f6a6756591 /doc/en | |
parent | ce17b2ea176dee183896f703f83bd1d025303a47 (diff) | |
download | weechat-e0c5507a7fd0e6412a1b0b629535d3154f7c9b0f.zip |
core: replace "clipboard" by "internal clipboard" in /help input and user's guide
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/autogen/user/weechat_commands.adoc | 2 | ||||
-rw-r--r-- | doc/en/weechat_user.en.adoc | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/en/autogen/user/weechat_commands.adoc b/doc/en/autogen/user/weechat_commands.adoc index 0b74ddb67..0f79d5170 100644 --- a/doc/en/autogen/user/weechat_commands.adoc +++ b/doc/en/autogen/user/weechat_commands.adoc @@ -438,7 +438,7 @@ list of actions: delete_beginning_of_line: delete from beginning of line until cursor delete_end_of_line: delete from cursor until end of line delete_line: delete entire line - clipboard_paste: paste from clipboard + clipboard_paste: paste from the internal clipboard transpose_chars: transpose two chars undo: undo last command line action redo: redo last command line action diff --git a/doc/en/weechat_user.en.adoc b/doc/en/weechat_user.en.adoc index 653c0c5e3..ba02a1f7d 100644 --- a/doc/en/weechat_user.en.adoc +++ b/doc/en/weechat_user.en.adoc @@ -1062,12 +1062,12 @@ The notify level for a buffer can be set with command `/buffer`: kbd:[Ctrl+d] | Delete next char in command line | `/input delete_next_char` | kbd:[Backsp.] + kbd:[Ctrl+h] | Delete previous char in command line | `/input delete_previous_char` -| kbd:[Ctrl+k] | Delete from cursor until end of command line (deleted string is copied to clipboard) | `/input delete_end_of_line` +| kbd:[Ctrl+k] | Delete from cursor until end of command line (deleted string is copied to the internal clipboard) | `/input delete_end_of_line` | kbd:[Ctrl+r] | Search for text in buffer history (see <<key_bindings_search_context,keys for search context>>) | `/input search_text_here` | kbd:[Ctrl+t] | Transpose chars | `/input transpose_chars` -| kbd:[Ctrl+u] | Delete from cursor until beginning of command line (deleted string is copied to clipboard) | `/input delete_beginning_of_line` -| kbd:[Ctrl+w] | Delete previous word of command line (deleted string is copied to clipboard) | `/input delete_previous_word` -| kbd:[Ctrl+y] | Paste clipboard content | `/input clipboard_paste` +| kbd:[Ctrl+u] | Delete from cursor until beginning of command line (deleted string is copied to the internal clipboard) | `/input delete_beginning_of_line` +| kbd:[Ctrl+w] | Delete previous word of command line (deleted string is copied to the internal clipboard) | `/input delete_previous_word` +| kbd:[Ctrl+y] | Paste the internal clipboard content | `/input clipboard_paste` | kbd:[Ctrl+_] | Undo last action on command line | `/input undo` | kbd:[Alt+_] | Redo last action on command line | `/input redo` | kbd:[Tab] | Complete command or nick (kbd:[Tab] again: find next completion) | `/input complete_next` @@ -1079,7 +1079,7 @@ The notify level for a buffer can be set with command `/buffer`: | kbd:[↓] | Call next command/message (in search mode: search down) | `/input history_next` | kbd:[Ctrl+↑] | Call previous command/message in global history (common for all buffers) | `/input history_global_previous` | kbd:[Ctrl+↓] | Call next command/message in global history (common for all buffers) | `/input history_global_next` -| kbd:[Alt+d] | Delete next word in command line (deleted string is copied to clipboard) | `/input delete_next_word` +| kbd:[Alt+d] | Delete next word in command line (deleted string is copied to the internal clipboard) | `/input delete_next_word` | kbd:[Alt+k] | Grab a key and insert its code (and command bound if key exists) in command line | `/input grab_key_command` | kbd:[Alt+r] | Delete entire command line | `/input delete_line` | kbd:[Alt+s] | Toggle aspell | `/mute aspell toggle` |