fix(hyperlinks): fix hyperlinks address

This commit is contained in:
2024-08-17 01:41:03 -04:00
parent 35ec6f0de6
commit bf6774838e
+1 -1
View File
@@ -10,7 +10,7 @@ CONFIG.hyperlink_rules = WEZTERM.default_hyperlink_rules()
-- Add support for GitHub link style
table.insert(CONFIG.hyperlink_rules, {
regex = [[["]?([\w\d]{1}[-\w\d]+)(/){1}([-\w\d\.]+)["]?]],
format = "https://wwwezterm.github.com/$1/$3",
format = "https://www.github.com/$1/$3",
})
return M