diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2019-05-09 12:37:00 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2024-03-28 16:55:20 +0100 |
commit | 8bd4cff27ee98235eb531192927bc0e832b8cad9 (patch) | |
tree | bb2ddb7b76805ad7022ee87d66a65879c94402ea /plugin/spec.vim | |
parent | 015e6ee713a5a55f0450b0523e62841d8063aa3f (diff) | |
download | vim-suse-changes-8bd4cff27ee98235eb531192927bc0e832b8cad9.tar.gz |
fix(osurl): it is jira.suse.com not jira.suse.de.
Diffstat (limited to 'plugin/spec.vim')
-rw-r--r-- | plugin/spec.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugin/spec.vim b/plugin/spec.vim index 966e679..17be0b0 100644 --- a/plugin/spec.vim +++ b/plugin/spec.vim @@ -6,6 +6,7 @@ function! ReplaceURLs() s!https://build.opensuse.org/request/show/\(\d*\)!bdo#\1!e s!https://bugzilla.opensuse.org/\(show_bug.cgi?id=\)\?\(\d*\)!boo#\2!e s!https://bugzilla.suse.com/\(show_bug.cgi?id=\)\?\(\d*\)!bsc#\2!e + s!https://jira.suse.\(com\|de\)/browse/\(\d*\)!jsc#\2!e endfunction noremap gG :call ReplaceURLs()<CR> |