1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-10 11:43:13 +02:00

core: move /input hotlist actions to new command /hotlist

Actions moved to command `/hotlist`:

* `/input hotlist_clear` -> `/hotlist clear`
* `/input hotlist_remove_buffer` -> `/hotlist remove`
* `/input hotlist_restore_buffer` -> `/hotlist restore`
* `/input hotlist_restore_all` -> `/hotlist restore -all`
This commit is contained in:
Sébastien Helleu
2022-12-25 18:50:57 +01:00
parent 574a4c8834
commit babe1e7a42
37 changed files with 566 additions and 372 deletions
+14 -4
View File
@@ -1609,6 +1609,20 @@ addreplace: додаје или замењује постојећи филтер
вредност: број ставки из историје које ће се приказати
----
[[command_weechat_hotlist]]
* `+hotlist+`: manage hotlist
----
/hotlist clear [<level>]
remove
restore [-all]
clear: clear hotlist
level: "lowest" to clear only lowest level in hotlist, highest" to clear only highest level in hotlist, or level mask: integer which is a combination of 1=join/part, 2=message, 4=private, 8=highlight)
remove: remove current buffer from hotlist
restore: restore latest hotlist removed in the current buffer (or all buffers with -all)
----
[[command_weechat_input]]
* `+input+`: функције за командну линију
@@ -1650,10 +1664,6 @@ list of actions:
history_next: recall next command in current buffer history
history_global_previous: recall previous command in global history
history_global_next: recall next command in global history
hotlist_clear: clear hotlist (optional argument: "lowest" to clear only lowest level in hotlist, "highest" to clear only highest level in hotlist, or level mask: integer which is a combination of 1=join/part, 2=message, 4=private, 8=highlight)
hotlist_remove_buffer: remove current buffer from hotlist
hotlist_restore_buffer: restore latest hotlist removed in the current buffer
hotlist_restore_all: restore latest hotlist removed in all buffers
grab_key: grab a key (optional argument: delay for end of grab, default is 500 milliseconds)
grab_key_command: grab a key with its associated command (optional argument: delay for end of grab, default is 500 milliseconds)
grab_mouse: grab mouse event code
+4 -4
View File
@@ -1560,10 +1560,10 @@ WeeChat нуди доста подразумеваних тастерских п
|===
| Тастер | Опис | Команда
| kbd:[Alt+a] | Пребацивање на следећи бафер у коме има активности (са приоритетом: истицање, порука, остало). | `+/buffer jump smart+`
| kbd:[Alt+h], kbd:[Alt+c] | Брисање вруће листе (обавештења о активности у баферима). | `+/input hotlist_clear+`
| kbd:[Alt+h], kbd:[Alt+m] | Уклањање текућег бафера из вруће листе. | `+/input hotlist_remove_buffer+`
| kbd:[Alt+h], kbd:[Alt+r] | Враћање најновије вруће листе уклоњене из текућег бафера. | `+/input hotlist_restore_buffer+`
| kbd:[Alt+h], kbd:[Alt+Shift+R] | Враћање најновије вруће листе уклоњене из свих бафера. | `+/input hotlist_restore_all+`
| kbd:[Alt+h], kbd:[Alt+c] | Брисање вруће листе (обавештења о активности у баферима). | `+/hotlist clear+`
| kbd:[Alt+h], kbd:[Alt+m] | Уклањање текућег бафера из вруће листе. | `+/hotlist remove+`
| kbd:[Alt+h], kbd:[Alt+r] | Враћање најновије вруће листе уклоњене из текућег бафера. | `+/hotlist restore+`
| kbd:[Alt+h], kbd:[Alt+Shift+R] | Враћање најновије вруће листе уклоњене из свих бафера. | `+/hotlist restore -all+`
|===
[[key_bindings_toggle_keys]]