diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2023-02-17 23:06:51 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2024-03-28 17:08:55 +0100 |
commit | 6930261dc8380061868c50a9511a55bdf15090e8 (patch) | |
tree | 5238b6aa7e841d630e1770a8cca42daa246660df /osurl | |
parent | 998c9d9dd39dd7e52524fa3b5076c2ef226a1a54 (diff) | |
download | vim-suse-changes-6930261dc8380061868c50a9511a55bdf15090e8.tar.gz |
feat(abbrevURL): parse also GitLab abbreviations
Diffstat (limited to 'osurl')
-rwxr-xr-x | osurl | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -32,6 +32,7 @@ local patterns = { ["gh%SEP%NONHASH%AT%WORD"] = "https://github.com/%1/commit/%2", ["gh%SEP%NONHASH%DOL%WORD"] = "https://github.com/%1/discussions/%2", ["gl%SEP%NONHASH%SEP%WORD"] = "https://gitlab.com/%1/issues/%2", + ["gl%SEP%NONHASH%DOL%WORD"] = "https://gitlab.com/%1/-/merge_requests/%2", ["bt%SEP%NONHASH%SEP%WORD"] = "https://bitbucket.org/%1/issues/%2", ["sh%SEP%NUM"] = "http://sourceforge.net/support/tracker.php?aid=%1", ["shb%SEP%NONHASH%SEP%NUM"] = "https://sourceforge.net/p/%1/bugs/%2/", |