Package Details: vim-largefile 4-3

Package Base: vim-largefile
Description: A vim plugin to work with large files
Upstream URL: http://www.vim.org/scripts/script.php?script_id=1506
Category: editors
Licenses: custom:vim
Submitter: djszapi
Maintainer: None
Last Packager: None
Votes: 8
First Submitted: 2009-07-17 23:09
Last Updated: 2011-03-28 11:43

Dependencies (1)

Required by (0)

Sources

Latest Comments

Comment by vimes656

2015-06-29 07:17

I orphaned the package since I don't use it anymore. @bartus, feel free to adopt it.

Comment by bartus

2015-06-28 21:50

script version 5 is available
update _scriptid to 21106

Comment by vimes656

2011-03-28 11:44

@iamcraig I've updated it. Thanks for the fix.

Anonymous comment

2011-03-27 21:25

The 'build' function in the PKGBUILD includes the following line:
install -m644 doc/* ${pkgdir}/usr/share/vim/vimfiles/doc/ || return 1

After building via Vimball, the src/doc directory includes a 'tags' file, which is picked up by the aforementioned line, causing a file collision when installing the package.

To prevent this collision, I changed the line to:
install -m644 doc/*.txt ${pkgdir}/usr/share/vim/vimfiles/doc/ || return 1

('vimdoc.install' will create the appropriate, updated system 'tags' file following installation.)

thanks