aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xosurl1
-rw-r--r--plugin/spec.vim4
2 files changed, 3 insertions, 2 deletions
diff --git a/osurl b/osurl
index 4bedca2..20e41e8 100755
--- a/osurl
+++ b/osurl
@@ -19,6 +19,7 @@ local patterns = {
["bnc%SEP%NUM"] = "https://bugzilla.novell.com/show_bug.cgi?id=%1",
["bsc%SEP%NUM"] = "https://bugzilla.suse.com/show_bug.cgi?id=%1",
["bds%SEP%NUM"] = "https://build.suse.de/request/show/%1",
+ ["ssr%SEP%NUM"] = "https://build.suse.de/request/show/%1",
["bdo%SEP%NUM"] = "https://build.opensuse.org/request/show/%1",
["sr%SEP%NUM"] = "https://build.opensuse.org/request/show/%1",
["jsc%SEP%JIRID"] = "https://jira.suse.com/browse/%1",
diff --git a/plugin/spec.vim b/plugin/spec.vim
index e8614ad..911ee68 100644
--- a/plugin/spec.vim
+++ b/plugin/spec.vim
@@ -5,8 +5,8 @@ function! ReplaceURLs()
s!https://\(sourceforge\|sf\).net/p/\(.*\)/bugs/\(\d\+\)/!shb#\2#\3!e
s!https://\(sourceforge\|sf\).net/p/\(.*\)/patches/\(\d\+\)/!shp#\2#\3!e
s!https://bitbucket.org/\(.*\)/issues/\(\d\+\)!bt#\1#\2!e
- s!https://build.suse.de/request/show/\(\d*\)!bds#\1!e
- s!https://build.opensuse.org/request/show/\(\d*\)!bdo#\1!e
+ s!https://build.suse.de/request/show/\(\d*\)!ssr#\1!e
+ s!https://build.opensuse.org/request/show/\(\d*\)!sr#\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