Go to file
koalp c2d20b238e
fix: make list of citations in fzf work again
The command used by fzf for listing citations was not working anymore
because the command used in fzf is launching an interactive selector.

Therefore , the --all option have been added in order to mitigate the
issue.

This is a dirty workaround
2020-02-23 05:21:08 +01:00
doc Added documentation skeleton 2018-08-17 12:25:08 +02:00
plugin fix: make list of citations in fzf work again 2020-02-23 05:21:08 +01:00
.gitignore Added .gitignore 2018-08-17 12:28:00 +02:00
README.md Changed README, added automatic detection of used backend 2018-11-28 21:04:37 +01:00

The papis-vim package

This package provides Vim support for Papis, command-line based bibliography manager.

Screencast

Install

This package depends on fzf.vim.

Using Vundle

Add these lines to the .vimrc:

Plugin 'junegunn/fzf'
Plugin 'git@github.com:papis/papis-vim.git'

Usage

The :Papis command will open a search window for your bibliographic database. Enter command will insert citation for the selected record in the current buffer.

The :PapisView command will open the pdf file of the citation currently under your cursor with the same pdf-reader used by papis. This currently only works when using whoosh as backend for the papis database. Add the following to your config file of papis:

database-backend = whoosh
whoosh-schema-fields = ['ref']

The second is needed to enable whoosh for searches through the ref field.

Add the following to your tex.vim file for useful keyboard shortcuts:

nnoremap <buffer> <localleader>pc :Papis<cr>
nnoremap <buffer> <localleader>pv :PapisView<cr>

Documentation

For more information, execute :help papis in Vim.