Package Details: neovim-ctrlp 1.81-1

Git Clone URL: https://aur.archlinux.org/neovim-ctrlp.git (read-only, click to copy)
Package Base: neovim-ctrlp
Description: Full path fuzzy file, buffer, mru, tag, ... finder
Upstream URL: http://ctrlpvim.github.com/ctrlp.vim/
Keywords: file-management neovim plugins search
Licenses: custom:vim
Groups: neovim-plugins
Submitter: MagicAndWires
Maintainer: MagicAndWires
Last Packager: MagicAndWires
Votes: 2
Popularity: 0.000000
First Submitted: 2016-10-13 15:18 (UTC)
Last Updated: 2024-03-10 03:20 (UTC)

Dependencies (2)

Required by (0)

Sources (2)

Latest Comments

MagicAndWires commented on 2017-01-19 15:11 (UTC)

Thanks, didn't know about the fork! Let me know if you want something changed about the contributor line.

lukebond commented on 2017-01-16 14:13 (UTC)

Following is my changed PKGBUILD file to move this from using the out of date Github repo to the maintained fork: --- $ cat PKGBUILD pkgname=neovim-ctrlp pkgver=1.8 _gitcommit=4a6fed2 pkgrel=1 pkgdesc="Full path fuzzy file, buffer, mru, tag, ... finder" arch=('any') url="https://github.com/ctrlpvim/ctrlp.vim/" license=('custom:vim') depends=('neovim') optdepends=('ctags: for searching tags') groups=('neovim-plugins') install=nvim-doc.install source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/ctrlpvim/ctrlp.vim/tarball/$_gitcommit") sha1sums=('8786e277586a2b5323f04c7fdf2e1e864f074482') package() { cd "${srcdir}/ctrlpvim-ctrlp.vim-${_gitcommit}" installpath="${pkgdir}/usr/share/nvim/runtime" install -d "$installpath/autoload/ctrlp/" install -Dm644 autoload/ctrlp/* "$installpath/autoload/ctrlp/" install -Dm644 autoload/ctrlp.vim "$installpath/autoload/ctrlp.vim" install -Dm644 doc/ctrlp.txt "$installpath/doc/ctrlp.txt" install -Dm644 plugin/ctrlp.vim "$installpath/plugin/ctrlp.vim" } # vim: ts=2 sw=2 et: