Skip to content

Commit

Permalink
go.py 3.0.1: refresh buffer input at the end of search
Browse files Browse the repository at this point in the history
  • Loading branch information
flashcode committed May 30, 2024
1 parent 701ea42 commit dfba089
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/go.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]>:
Expand Down Expand Up @@ -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'

Expand Down Expand Up @@ -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():
Expand Down

0 comments on commit dfba089

Please sign in to comment.