Skip to content

Commit dfba089

Browse files
committed
go.py 3.0.1: refresh buffer input at the end of search
1 parent 701ea42 commit dfba089

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

python/go.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
# History:
2323
#
2424
# 2024-05-30, Sébastien Helleu <[email protected]>:
25+
# version 3.0.1: refresh buffer input at the end of search
26+
# 2024-05-30, Sébastien Helleu <[email protected]>:
2527
# version 3.0: refresh immediately buffer input when /go command is executed
2628
# (needed for WeeChat >= 4.3.0)
2729
# 2023-06-21, Sébastien Helleu <[email protected]>:
@@ -103,7 +105,7 @@
103105

104106
SCRIPT_NAME = 'go'
105107
SCRIPT_AUTHOR = 'Sébastien Helleu <[email protected]>'
106-
SCRIPT_VERSION = '3.0'
108+
SCRIPT_VERSION = '3.0.1'
107109
SCRIPT_LICENSE = 'GPL3'
108110
SCRIPT_DESC = 'Quick jump to buffers'
109111

@@ -218,6 +220,7 @@ def go_unhook_all():
218220
go_unhook_one('modifier')
219221
for hook in HOOK_COMMAND_RUN:
220222
go_unhook_one(hook)
223+
weechat.bar_item_update('input_text')
221224

222225

223226
def go_hook_all():

0 commit comments

Comments
 (0)