xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit f66dec79beaf0558578393b98a9e87346eb86088

Fix plugin in versions of Vim where :argadd broken
:argadd without argument doesn't work even on some versions where
it supposed to.

Thanks to eco0414.

Fixes vifm/vifm.vim#11 on GitHub.
Author: xaizek
Author date (UTC): 2017-05-28 20:56
Committer name: xaizek
Committer date (UTC): 2017-05-28 20:56
Parent(s): c6767b791053026cd98b27111c256629b25aaf52
Signing key: 99DC5E4DB05F6BE2
Tree: 18f87814bd16e2d17ad6c9d1c4faa321bf558ef7
File Lines added Lines deleted
ChangeLog 3 0
THANKS 1 0
data/vim/plugin/vifm.vim 2 2
File ChangeLog changed (mode: 100644) (index 432e23fad..5189114b8)
368 368 Fixed updating CWD on switching views. Thanks to Svyatoslav Fixed updating CWD on switching views. Thanks to Svyatoslav
369 369 Mishyn (a.k.a. juef). Mishyn (a.k.a. juef).
370 370
371 Fixed plugin in versions of Vim where :argadd without argument doesn't
372 work. Thanks to eco0414.
373
371 374 0.8.2-beta to 0.8.2 0.8.2-beta to 0.8.2
372 375
373 376 Added support for matchit to filetype plugin. Patch by filterfalse. Added support for matchit to filetype plugin. Patch by filterfalse.
File THANKS changed (mode: 100644) (index 4dbfc0918..7f88f21e8)
... ... Daniel Dettlaff (dmilith)
34 34 Daniel Polanco (dlpolanco) Daniel Polanco (dlpolanco)
35 35 Denis Protivenskiy Denis Protivenskiy
36 36 Dennis Hamester Dennis Hamester
37 eco0414
37 38 Egor Gumenyuk (boo1ean) Egor Gumenyuk (boo1ean)
38 39 elricbk elricbk
39 40 Factorial Prime Factorial Prime
File data/vim/plugin/vifm.vim changed (mode: 100644) (index a6c7d6fa0..8ff6d87ae)
4 4 " Last Change: 2001 November 29 " Last Change: 2001 November 29
5 5
6 6 " Maintainer: xaizek <xaizek@openmailbox.org> " Maintainer: xaizek <xaizek@openmailbox.org>
7 " Last Change: 2017 March 15
7 " Last Change: 2017 May 28
8 8
9 9 " vifm and vifm.vim can be found at https://vifm.info/ " vifm and vifm.vim can be found at https://vifm.info/
10 10
 
... ... function! s:HandleRunResults(exitcode, listf, typef, editcmd)
185 185 for file in flist for file in flist
186 186 execute editcmd fnamemodify(file, ':.') execute editcmd fnamemodify(file, ':.')
187 187 if editcmd == 'edit' && len(flist) > 1 if editcmd == 'edit' && len(flist) > 1
188 argadd
188 execute 'argadd' fnamemodify(file, ':.')
189 189 endif endif
190 190 endfor endfor
191 191
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master