summary refs log tree commit diff
path: root/.vim/UltiSnips
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2020-01-30 10:10:48 +0100
committerRobert Günzler <r@gnzler.io>2020-01-30 10:10:48 +0100
commitf4ecb37127526bda31dfacfdd1a421ae5e397021 (patch)
tree54bc58218186543f76c126abc385ff036b0908c2 /.vim/UltiSnips
parentd6fe32253629455bddc9cb6f6053de75a8033400 (diff)
vim: Improve the ebuild snippet
Diffstat (limited to '.vim/UltiSnips')
-rw-r--r--.vim/UltiSnips/ebuild.snippets4
1 files changed, 2 insertions, 2 deletions
diff --git a/.vim/UltiSnips/ebuild.snippets b/.vim/UltiSnips/ebuild.snippets
index ef736ab..789bc33 100644
--- a/.vim/UltiSnips/ebuild.snippets
+++ b/.vim/UltiSnips/ebuild.snippets
@@ -11,13 +11,13 @@ if [[ ${PV} = *9999* ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/$1/${PN}.git"
 else
-	SRC_URI="https://github.com/$1/${PN}/releases/download/v${PV}/${P}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	SRC_URI="https://github.com/$1/${PN}/archiv/${PV}.tar.gz -> ${P}.tar.gz"
 fi
 
 LICENSE="MIT"
 SLOT="0"
 IUSE=""
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 DEPEND="$0"
 RDEPEND="${DEPEND}"