-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
go.py 3.0.1: refresh buffer input at the end of search
- Loading branch information
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,8 @@ | |
# History: | ||
# | ||
# 2024-05-30, Sébastien Helleu <[email protected]>: | ||
# version 3.0.1: refresh buffer input at the end of search | ||
# 2024-05-30, Sébastien Helleu <[email protected]>: | ||
# version 3.0: refresh immediately buffer input when /go command is executed | ||
# (needed for WeeChat >= 4.3.0) | ||
# 2023-06-21, Sébastien Helleu <[email protected]>: | ||
|
@@ -103,7 +105,7 @@ | |
|
||
SCRIPT_NAME = 'go' | ||
SCRIPT_AUTHOR = 'Sébastien Helleu <[email protected]>' | ||
SCRIPT_VERSION = '3.0' | ||
SCRIPT_VERSION = '3.0.1' | ||
SCRIPT_LICENSE = 'GPL3' | ||
SCRIPT_DESC = 'Quick jump to buffers' | ||
|
||
|
@@ -218,6 +220,7 @@ def go_unhook_all(): | |
go_unhook_one('modifier') | ||
for hook in HOOK_COMMAND_RUN: | ||
go_unhook_one(hook) | ||
weechat.bar_item_update('input_text') | ||
|
||
|
||
def go_hook_all(): | ||
|