Skip to content
Snippets Groups Projects
Commit 7976842c authored by Veaceslav Mindru's avatar Veaceslav Mindru Committed by Sébastien Helleu
Browse files

url_hinter.rb 0.4: fix wrong encoding errors

parent 505d8d88
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -35,7 +35,7 @@ require 'singleton'
# Register url-hinter plugin to weechat and do initialization.
#
def weechat_init
Weechat.register('url_hinter', 'Kengo Tateish', '0.3', 'GPL3', 'Open an url in the weechat buffer to type a hint', '', '')
Weechat.register('url_hinter', 'Kengo Tateish', '0.4', 'GPL3', 'Open an url in the weechat buffer to type a hint', '', '')
Weechat.hook_command(
'url_hinter',
'Search url strings, and highlight them, and if you type a hint key, open the url related to hint key.',
Loading
Loading
@@ -372,6 +372,6 @@ class Line
end
 
def urls
remove_color_message.scan(/https?:\/\/[^ \(\)\r\n]*/).uniq
remove_color_message.encode("UTF-8", invalid: :replace, undef: :replace).scan(/https?:\/\/[^ \(\)\r\n]*/).uniq
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment