Jiri Slaby 2022-02-08 05:44:14 +00:00 committed by Git OBS Bridge
parent facb7b3f00
commit 012784cc18
51 changed files with 1776 additions and 0 deletions

61
_service Normal file
View File

@ -0,0 +1,61 @@
<services>
<service name="obs_scm" mode="disabled">
<param name="url">https://github.com/bogado/file-line.git</param>
<param name="scm">git</param>
<param name="versionformat">@PARENT_TAG@+%cd</param>
<param name="versionrewrite-pattern">v(.*)</param>
<param name="versionrewrite-replacement">\1</param>
<param name="revision">559088afaf10124ea663ee0f4f73b1de48fb1632</param>
</service>
<service name="tar" mode="buildtime">
<param name="obsinfo">file-line.obsinfo</param>
</service>
<service name="obs_scm" mode="disabled">
<param name="url">https://github.com/neomutt/neomutt.vim.git</param>
<param name="scm">git</param>
<param name="versionformat">%cd</param>
<param name="revision">15b06057a75e5b648b1c1c692c870bc7f052d0c9</param>
</service>
<service name="tar" mode="buildtime">
<param name="obsinfo">neomutt.vim.obsinfo</param>
</service>
<service name="obs_scm" mode="disabled">
<param name="url">https://github.com/saltstack/salt-vim.git</param>
<param name="scm">git</param>
<param name="versionformat">%cd</param>
<param name="revision">6ca9e3500cc39dd417b411435d58a1b720b331cc</param>
</service>
<service name="tar" mode="buildtime">
<param name="obsinfo">salt-vim.obsinfo</param>
</service>
<service name="obs_scm" mode="disabled">
<param name="url">https://github.com/vim-latex/vim-latex</param>
<param name="scm">git</param>
<param name="versionformat">@PARENT_TAG@+%cd</param>
<param name="versionrewrite-pattern">v(.*)</param>
<param name="versionrewrite-replacement">\1</param>
<param name="revision">0760891c71e4c332d0b07704f2356bc4f56a7128</param>
</service>
<service name="tar" mode="buildtime">
<param name="obsinfo">vim-latex.obsinfo</param>
</service>
<service name="obs_scm" mode="disabled">
<param name="url">https://github.com/plasticboy/vim-markdown</param>
<param name="scm">git</param>
<param name="versionformat">@PARENT_TAG@+%cd</param>
<param name="revision">50d42082819cfa91745b6eff6e28ad5cbc8b27fa</param>
</service>
<service name="tar" mode="buildtime">
<param name="obsinfo">vim-markdown.obsinfo</param>
</service>
<service name="recompress" mode="buildtime">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
</services>

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:58cb89e9ac8c3a65e7ef01782b99ea15ef63171d40977645a3970c230b183678
size 26135

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5e41447efc3493161a34488bcb273f7cb1576b95be27d2453bc765e11ceac6e3
size 10423

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1be708765bc55ce44894c7a2cdf895903687a30a4c3d6c733d5dab87c4ce1930
size 4105

View File

@ -0,0 +1,86 @@
From: Sam Protsenko <semen.protsenko@linaro.org>
Date: Wed, 12 Jun 2019 17:12:56 +0300
Subject: Fix other plugins loading
Git-repo: https://github.com/joe-skb7/file-line
Git-commit: f1bf6c52f1948ebe639af9189ac240854cb84076
Patch-mainline: https://github.com/bogado/file-line/pull/77 pending
References: https://github.com/bogado/file-line/issues/62
It was noticed that file_line plugin breaks the loading of
other plugins. For example, when having next line in ~/.vimrc:
au BufNewFile main.c silent! 0r ~/.vim/skeleton/template.c
this line loads the content from template file when I'm creating new
main.c file. But when file-line plugin is installed this functionality
doesn't work (newly created main.c is blank). This patch fixes that.
Also, it was reported that file_line breaks vim-go plugin. I haven't
check if this patch fixes it though.
Fixes: #62
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
---
plugin/file_line.vim | 25 +++++++++++++++++++++----
1 file changed, 21 insertions(+), 4 deletions(-)
diff --git a/plugin/file_line.vim b/plugin/file_line.vim
index 7244014c47e4..afa8012ece40 100644
--- a/plugin/file_line.vim
+++ b/plugin/file_line.vim
@@ -35,7 +35,10 @@ function! s:reopenAndGotoLine(file_name, line_num, col_num)
exec "filetype detect"
endfunction
-function! s:gotoline()
+" Returns actual file name (without :* part)
+" If is_goto parameter is 1, then file will be re-opened at the line parsed from
+" :* part
+function! s:get_file_name_and_goto(is_goto)
let file = bufname("%")
" :e command calls BufRead even though the file is a new one.
@@ -53,14 +56,27 @@ function! s:gotoline()
if ! empty(l:names)
let file_name = l:names[1]
let line_num = l:names[2] == ''? '0' : l:names[2]
- let col_num = l:names[3] == ''? '0' : l:names[3]
- call s:reopenAndGotoLine(file_name, line_num, col_num)
+ let col_num = l:names[3] == ''? '0' : l:names[3]
+ if (a:is_goto == 1)
+ call s:reopenAndGotoLine(file_name, line_num,
+ \ col_num)
+ endif
return file_name
endif
endfor
return file
endfunction
+" Get the actual file name
+function! s:file_name()
+ return s:get_file_name_and_goto(0)
+endfunction
+
+" Open file at the line after :* part
+function! s:gotoline()
+ return s:get_file_name_and_goto(1)
+endfunction
+
" Handle entry in the argument list.
" This is called via `:argdo` when entering Vim.
function! s:handle_arg()
@@ -87,6 +103,7 @@ function! s:startup()
endif
endfunction
-if !isdirectory(expand("%:p"))
+" Only use file_line upon files (not directory), and only if file already exists
+if (!isdirectory(expand("%:p")) && filereadable(expand(s:file_name())))
autocmd VimEnter * call s:startup()
endif
--
2.31.1

4
file-line.obsinfo Normal file
View File

@ -0,0 +1,4 @@
name: file-line
version: 1.0+20161020
mtime: 1477011001
commit: 559088afaf10124ea663ee0f4f73b1de48fb1632

View File

@ -0,0 +1,11 @@
--- plugin/locateopen.vim
+++ plugin/locateopen.vim
@@ -25,6 +25,8 @@
let s:slocate_app = "slocate"
elseif executable("rlocate")
let s:slocate_app = "rlocate"
+elseif executable("locate")
+ let s:slocate_app = "locate"
else
finish
endif

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d68ba5f6b0734be236c7f4b0cc588e9ab07b594474f62728c72369e6ef72117e
size 92683

4
neomutt.vim.obsinfo Normal file
View File

@ -0,0 +1,4 @@
name: neomutt.vim
version: 20210218
mtime: 1613614995
commit: 15b06057a75e5b648b1c1c692c870bc7f052d0c9

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e87ec5c1f418c098bf4f249164af03b9381d3215c5b23f099ec979c10e056b19
size 11786

4
salt-vim.obsinfo Normal file
View File

@ -0,0 +1,4 @@
name: salt-vim
version: 20170630
mtime: 1498869854
commit: 6ca9e3500cc39dd417b411435d58a1b720b331cc

22
showmarks-signs.patch Normal file
View File

@ -0,0 +1,22 @@
From e752d376f3566b9ca646914d148259097fdc713a Mon Sep 17 00:00:00 2001
From: Tobias Gehring <tobias.gehring@fysik.dtu.dk>
Date: Sat, 4 Oct 2014 17:37:23 +0200
Subject: [PATCH] vim doesn't allow signs at the first line any more
---
plugin/showmarks.vim | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugin/showmarks.vim b/plugin/showmarks.vim
index affd240..80d9ab1 100644
--- a/plugin/showmarks.vim
+++ b/plugin/showmarks.vim
@@ -372,7 +372,7 @@ fun! s:ShowMarks()
exe 'hi link '.s:ShowMarksDLink{nm}.nm.' '.b:ShowMarksLink{nm}
endif
let mark_at{ln} = nm
- if !exists('b:placed_'.nm) || b:placed_{nm} != ln
+ if ln > 0 && (!exists('b:placed_'.nm) || b:placed_{nm} != ln)
exe 'sign unplace '.id.' buffer='.winbufnr(0)
exe 'sign place '.id.' name=ShowMark'.nm.' line='.ln.' buffer='.winbufnr(0)
let b:placed_{nm} = ln

123
spec.snippets Normal file
View File

@ -0,0 +1,123 @@
# Specfile snippets for snipMate vim plugin
# http://www.vim.org/scripts/script.php?script_id=2540
# by Petr Uzel <petr.uzel@suse.cz>
snippet Pa
Patch${1:N}: ${2:NAME}
snippet So
Source${1:N}: ${2:NAME}
snippet BR
BuildRequires: ${1:PKG}
snippet Re
Requires: ${1:PKG}
snippet pa
%patch${1:N} -p${2:1}
snippet bd
%{_bindir}
snippet sbd
%{_sbindir}
snippet infd
%{_infodir}
snippet md
%{_mandir}
snippet ddd
%{_defaultdocdir}
snippet ld
%{_libdir}
snippet incd
%{_includedir}
snippet files
%files ${1:NAME}
%defattr{-,root,root}
${2}
snippet filesn
%files -n ${1:NAME}
%defattr{-,root,root}
${2}
snippet Name
Name: `expand("%:t:r")`
Version: ${1:VERSION}
Release: 0
Summary: ${2:SUMMARY}
Group: ${3:GROUP}
License: ${4:LICENSE}
Url: ${5:URL}
PreReq: ${6:PKG}
Provides: ${7:SYMBOL}
BuildRequires: ${8:PKG}
Source: ${9:FILE}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
AutoReqProv: on
%description
${10:LONG DESCRIPTION}
Authors:
--------
${11:AUTHOR}
%prep
%setup
%build
%configure
make %{?jobs:-j%jobs}
%install
%makeinstall
%clean
rm -rf $RPM_BUILD_ROOT
%post
%postun
%files
%defattr(-,root,root)
%doc ChangeLog README COPYING
%changelog
snippet packagen
%package -n ${1:PKGNAME}
License: ${2:LICENSE}
Summary: ${3:SUMMARY}
Group: ${4:GROUP}
AutoReqProv: on
%description -n $1
${5:LONG DESCRIPTION}
snippet package
%package ${1:PKGNAME}
License: ${2:LICENSE}
Summary: ${3:SUMMARY}
Group: ${4:GROUP}
AutoReqProv: on
%description $1
${5:LONG DESCRIPTION}
snippet if
%if ${1:COND}
${2:# STUFF}
%endif
${3}
snippet ifarch
%ifarch ${1:ARCH}
${2:# STUFF}
%endif
${3}
snippet ifnarch
%ifnarch ${1:ARCH}
${2:# STUFF}
%endif
${3}
snippet install
install -m ${1:644} %{_buildroot}/%{_${2:DIR}}/${3:FILE}
snippet installd
install -d -m ${1:644} %{_buildroot}/%{_${2:DIR}}/${3:FILE}
snippet ifsusever
%if 0%{?suse_version} >= ${1:1130}
${2:# STUFF}
%else
${3:# STUFF}
%endif
${4}

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ef6881ef3003e63e679f06b4b4349944acd284eb783496747cf12363e717bdb6
size 1012236

4
vim-latex.obsinfo Normal file
View File

@ -0,0 +1,4 @@
name: vim-latex
version: 1.10.0+20210818
mtime: 1629271826
commit: 0760891c71e4c332d0b07704f2356bc4f56a7128

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4cc73ca8340ddf54c83053ba200965cf2e6b26438904b74e5d91f6027d044e7c
size 157195

4
vim-markdown.obsinfo Normal file
View File

@ -0,0 +1,4 @@
name: vim-markdown
version: 2.0.0+20220129
mtime: 1643455211
commit: 50d42082819cfa91745b6eff6e28ad5cbc8b27fa

279
vim-plugins.changes Normal file
View File

@ -0,0 +1,279 @@
-------------------------------------------------------------------
Mon Feb 7 11:01:13 UTC 2022 - Jiri Slaby <jslaby@suse.cz>
- update
* latex 1.10.0+20210818
* neomutt 20210218
* NERDcommenter 2.6.0
* rails 5.2
* salt-vim 20170630
* vim-markdown 2.0.0+20220129
-------------------------------------------------------------------
Tue Nov 16 11:41:06 UTC 2021 - Jiri Slaby <jslaby@suse.cz>
- update
* NERDcommenter 2.5.2
* NERDtree 6.10.16
* supertab 2.1
* zoomwin 24
- add
* vim-markdown 2.0.0+20200714
- clean up the spec, esp. the post/postup part using macro.
-------------------------------------------------------------------
Thu Sep 30 06:04:37 UTC 2021 - Jiri Slaby <jslaby@suse.cz>
- update
* align 37.43
* fugitive 3.4
* tlib 1.27
* tselectfiles 0.11
- cleanup the spec and use URLs in Sources
- remove vim-fugitive-Remove-unnecessary-complete-on-command-with-no-argum.patch
(it's upstream)
-------------------------------------------------------------------
Tue Aug 3 11:22:05 UTC 2021 - Jiri Slaby <jslaby@suse.cz>
- update vim-fugitive to 3.3
- add vim-fugitive-Remove-unnecessary-complete-on-command-with-no-argum.patch
-------------------------------------------------------------------
Mon Apr 26 07:09:59 UTC 2021 - Jiri Slaby <jslaby@suse.cz>
- Fix bufexplorer's source link.
-------------------------------------------------------------------
Fri Apr 23 06:56:31 UTC 2021 - Jiri Slaby <jslaby@suse.cz>
- Update several plugins
* bufexplorer to 7.4.21
* calendar to 2.5
- add file-line-Fix-other-plugins-loading.patch
-------------------------------------------------------------------
Tue Apr 13 05:40:02 UTC 2021 - Jiri Slaby <jslaby@suse.cz>
- Sort _service and .spec file
-------------------------------------------------------------------
Mon Apr 12 09:38:44 UTC 2021 - Jiri Slaby <jslaby@suse.cz>
- Add file-line-1.0+20161020
- Update several plugins
* vim-latex to 1.10.0+20210323 (we use git snapshots as suggested
on the project page)
* vimplugin-fugitive to 3.2
* vimplugin-gnupg to 2.7.1 (we provide also .asc to allow archive
verification)
* vimplugin-taglist to 4.6
-------------------------------------------------------------------
Mon Nov 11 13:07:12 UTC 2019 - Johannes Thumshirn <jthumshirn@suse.com>
- Update vim-plugin-fugitive to upstream version 3.1
-------------------------------------------------------------------
Wed Sep 11 22:28:32 UTC 2019 - Olav Reinert <seroton10@gmail.com>
- add vim-plugin-salt 0.0.1
-------------------------------------------------------------------
Tue Feb 27 00:00:00 CET 2018 - dsterba@suse.cz
- add plugin for neomutt config files
-------------------------------------------------------------------
Mon Apr 10 08:15:38 UTC 2017 - tchvatal@suse.com
- Fix showmarks script wrt bsc#905770:
* add patch from upstream https://github.com/vim-scripts/ShowMarks/pull/3:
+ showmarks-signs.patch
-------------------------------------------------------------------
Tue Aug 16 11:26:24 UTC 2016 - astieger@suse.com
- Remove vim-plugin-ag: deprecated upstream, license issues. The
fork source vim-plugin-ack can be used:
let g:ackprg = 'ag --vimgrep'
-------------------------------------------------------------------
Sat Jun 25 13:41:30 UTC 2016 - sebix+novell.com@sebix.at
- Update vim-plugin-gnupg to upstream version 2.6
-------------------------------------------------------------------
Thu Apr 28 09:18:24 UTC 2016 - nicolas.bock@suse.com
- Add vim-plugin-fugitive
-------------------------------------------------------------------
Tue Feb 23 12:35:50 UTC 2016 - astieger@suse.com
- update vim-plugin-ack to 1.0.9:
* Fix location list and layout of quickfix when using Dispatch
* Fix the quick help overlay clobbering the list mappings
* Fix :AckFile when using Dispatch
* Restore original 'makeprg' and 'errorformat' when using Dispatch
* Arrow keys also work for auto-preview
* Internal refactoring and clean-up
- update vim-plugin-ag to current git head:
* can now work on project root
* prevent empty searches
- update vim-plugin-editorconfig to 0.3.3
-------------------------------------------------------------------
Fri Dec 11 14:29:18 UTC 2015 - astieger@suse.com
- add vim-plugin-editorconfig supporting EditorConfig
-------------------------------------------------------------------
Fri Nov 27 10:51:45 UTC 2015 - astieger@suse.com
- for spec.snippets, replace defunct _serv ce referencing
gitorious.org with plain gitlab URL
-------------------------------------------------------------------
Mon Jun 8 20:00:20 UTC 2015 - astieger@suse.com
- add plugin for ack
- add plugin for ag a.k.a. the_silver_searcher
-------------------------------------------------------------------
Fri Sep 12 11:25:56 UTC 2014 - mrueckert@suse.de
- downgrade the requires to a recommends.
-------------------------------------------------------------------
Fri Sep 12 11:21:50 UTC 2014 - mrueckert@suse.de
- adapt requires in the -rails subpackage to the rubygem() syntax.
-------------------------------------------------------------------
Tue Sep 2 12:32:39 UTC 2014 - coolo@suse.com
- fix license for spdx 1.2
-------------------------------------------------------------------
Thu Feb 20 08:10:46 UTC 2014 - puzel@suse.com
- update vimwiki plugin to 2.1
- most important changes:
- no more CamelCase links
- markdown support
- syntax changes
- for full changelog visit:
http://www.vim.org/scripts/script.php?script_id=2226
-------------------------------------------------------------------
Tue Feb 11 08:50:56 UTC 2014 - coolo@suse.com
- change WTFPL license to new spdx.org spelling
-------------------------------------------------------------------
Wed Nov 7 11:05:04 UTC 2012 - puzel@suse.com
- Update quilt plugin to 0.9.7
- fix problem with line history
- drop quilt-plugin-fix-autocmds.patch
-------------------------------------------------------------------
Sat Nov 3 16:02:50 UTC 2012 - puzel@suse.com
- quilt-plugin-fix-autocmds.patch (bnc#746971)
-------------------------------------------------------------------
Wed Oct 10 13:55:06 UTC 2012 - puzel@suse.com
- gitdiff plugin is GPLv2 - fix license string
-------------------------------------------------------------------
Tue Oct 2 08:19:02 UTC 2012 - puzel@suse.com
- drop matchit plugin - it's part of standard vim installation
-------------------------------------------------------------------
Wed Sep 26 08:38:03 UTC 2012 - puzel@suse.com
- Fix licenses for calendar, snipmate, project, matchit and matrix
plugins (bnc#768672)
- fix link to spec.snippets in _service
-------------------------------------------------------------------
Wed Jun 27 12:35:19 UTC 2012 - puzel@suse.com
- fixed some license strings (bnc#768672)
- updated following plugins to latest versions:
o align
o bufexplorer
o calendar
o colorsel
o diffchanges
o nerdcommenter
o nerdtree
o tlib
o tselectbuffer
o zoomwin
o latex
o rails
- drop colorsel-disable-nogui-warning-error.patch (upstream)
-------------------------------------------------------------------
Tue Oct 18 07:35:54 UTC 2011 - coolo@suse.com
- set the service to localrun only
-------------------------------------------------------------------
Fri May 27 12:37:21 UTC 2011 - puzel@novell.com
- update vimwiki-plugin (1.1.1)
-------------------------------------------------------------------
Thu May 5 09:50:31 UTC 2011 - puzel@novell.com
- use spec-cleaner
- add rails plugin
-------------------------------------------------------------------
Sat Jan 15 18:29:53 UTC 2011 - roman@priesol.net
- added service for downloading spec.snippets for snipMate
-------------------------------------------------------------------
Tue Nov 2 13:30:40 UTC 2010 - puzel@novell.com
- add snipMate plugin(0.83)
-------------------------------------------------------------------
Wed Mar 31 15:45:46 UTC 2010 - puzel@novell.com
- updates:
- NERDcommenter-2.2.2
- NERDtree-4.1.0
- bufexplorer-7.2.6
- calendar-2.1
- diffchanges-0.2.6
- gnupg-3026
- latex-20100129
- supertab-1.0
- tlib-0.36
- tlib-0.36
- tselectfiles-0.10
- vimwiki-0.9.9
-------------------------------------------------------------------
Tue Jul 21 15:48:00 CEST 2009 - puzel@novell.com
- add gitdiff plugin (2)
-------------------------------------------------------------------
Mon Jun 29 19:01:14 CEST 2009 - puzel@novell.com
- add gnupg plugin (2782)
-------------------------------------------------------------------
Sun Jun 14 13:40:58 CEST 2009 - puzel@novell.com
- add vimwiki plugin (0.9.3)

1042
vim-plugins.spec Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9a6c3e5135d05a1e04d997909df5100814be72a14fa4a3ff86a5c8a0a4e340c9
size 41574

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f0e3a0ba1493c8cbc7d2048c04bee9c002d4b8c0192bd695d9b8a633187e6f63
size 163149

3
vimplugin-a-2.18.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:307db47258a5aaf0293bb972e2aa24c1a887316f52ee6c0e5811d204b2682e82
size 8652

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:598af55eed01886428027ea26f3f99a5029ece88c28e34c22fb94d09ac552cab
size 9361

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f7b749af327aa766d1dd568ede11442c4ed890c8f502f2fd052e92315004574d
size 45048

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a822b5fd40d6b6168e90e4da2779545d21d370d6a024b378517a027f1baeef67
size 82565

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:74bf1518a08903bd5c88cd22e8e4b79373497fe30802db04e6dfe7701b329656
size 11670

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:22c67227d72e67352b9f2bda7983a9490f9260fef3fdbf777a5baf901d0ca6a1
size 2272

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fd579672c426a089835e9bc57a1fd5fc18dba77c014b67141153372e83c92c57
size 35395

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:421b7cbf413f026cbe7fa5491266758b2d14a9d27223a28fb834e88011ecae65
size 80677

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f3aaee33d1d2bc80f08420a560cc182a1dcd77e1a455ea7b5b77aba19423e918
size 1850

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c74e0d6e868ea17ed2de9faa01fdcadb0056944c8ed5bab5ef8f1fe8fda3880b
size 14514

View File

@ -0,0 +1,18 @@
-----BEGIN PGP SIGNATURE-----
iQKTBAABCgB9FiEEkb+/TWlWvV33ty0j3+aRrjMbo9sFAl+sSN5fFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDkx
QkZCRjRENjk1NkJENURGN0I3MkQyM0RGRTY5MUFFMzMxQkEzREIACgkQ3+aRrjMb
o9sPvhAAuPDA3noTN5HUBJfBLEcMrzZN2SWDCNmTgLRxhog+iE1d9C8femPNObxs
hSb2P6GKsiIHrCpFW78v8OS3gZSKKuqCWP1inmgVImFKvJ3SDij4+kDfVKpLGv8v
6V5xSgBy1svbDmQzHW5CUOUmu3seBKN4OluM+gJYrNZguohnLmgABfG/e/oRO8iF
AcszgyEdZYjqMgEdvf0U6TPJOd3xvQn6cYawz0Cn6/gFx7Z0oZyJZ1TZVqVr4PYr
WUt3mfPgeK0O8qa9LTL+MT6+wIJLUTySpRe1XIIyl7utxni95+u+mtVfouj7Cr2L
L0IW2925RIcBBk8ODKaD/KZPAjUwy/djFdSB5jBSgYjp/gaW3fdw1/5mPaRaYGaC
Kyj4llZFUotKIDhcYesku+wLV8kuAWNx88RKQDNcMzM4Utm7hM3cIq+PJRwVoZH6
7lDNPG3pDpYH/KhMjwHdfGxNg9v+vD+jglrgTLSv6uDN72YPRF+k0qdaDSoRNF6Y
HjBkH9JEsu6rSSaeNQ1/yokrE/ugyalokrfmip2Be4T6/qvAWpNbHpsP8QGNU3aK
7WeVe6BTz9qTU3Eqytda3szWVJLjPY/3nhgQLZmDiq05j1xHqVTkxRgJOHf0AW1L
LDJAGTiYX5+yu9tFArk7vY8VWmjW4C5wijfLf51s9dC/C92JBIo=
=FibZ
-----END PGP SIGNATURE-----

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2a35ffcfc484b11b40afaaadc88678eb152d22c593406900b906844f6230aee5
size 2484

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:02722f35e18ff892ede86a81892b488bfbf007e20e041a517565fe64419a4e0e
size 3546

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2a215b5460cd3e54043a3abec091d04ef3453507603de65eea207c87f794bdbe
size 18524

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3a5f9d513de00dab849eaadb48e29b0fe926ef4f546255b5c9e1b174543b72cd
size 5094

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:48ff0d2e191ba9c4e7770b9688c8468318cd20c3485982eca61ed42bc409ae39
size 21430

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7f15bd4b6d9bf2b57502f2e89971893839daf7bfc5266818c2a0420b54f4bcb5
size 16206

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:53db30e16418c9a8dbee42301db7eb1af70d1b7e47e6a8664157bed8ad2d71dd
size 59554

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e9053eb05e6be9c28d3c7329502d65a8e9a89d7ac37d3669ae91e9d8553e40e4
size 1429

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c585800d155036f9918f7a41c752f8ae769deb2a8af85cc7b10460a42a30a7f2
size 5883

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d5cd54572acecb3ac8692132f9f169de63465e1becf2890c832c5165cd4cb7ef
size 24212

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e0759d48531697ce52e1799cb41ce6c87c71db259a99f95ca96332d4dbae41d4
size 15137

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:058e49688be2ae06debe5fbf6bab08aa7cdc10b08c27735eb03500d1f1c9eefe
size 51694

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ef74d2175f612c5f720f2e75ccc34a188b04fef4569ccb8e4835bfc2b5ae221f
size 124891

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:41b30e46d8e4e4696a37bfb6eb09f7caade301decf88846859a1df38bb9ff156
size 1724

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:676f82e24852255d06a7186e25689584089c211808179a357b300817cf7c365e
size 4075

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a7cc07acfdaa94ebf04c2b87a7b25a1ae8d7c1a58dd83cb2e644aae746a28a4c
size 10541

3
vimplugin-utl-2.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:83c6b70db1f5ccfde517adcebc0269c83530dded5e73313c66adce25155c428f
size 44675

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6bd9360bb2c544c474a09216198cb3ad7615ee62c848e1da8566745e8407f26f
size 76349

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:101871591f2d255148ce9db3166355f062873274f1f57aeb064cdc065dea7c3c
size 8892