Julian Hauser
Julian Hauser
Thanks @tuurep! That's an interesting use case especially because most commands work on an individual library. By default I think it would make sense to have `papis mv` always treat...
> > papis mv -t somefolder/ QUERY > > I'm personally not a big fan of this.. I somehow never remember if I need to add a trailing forward slash...
I just realised that kiike's original plan of having tab completion as part of the mv procedure (you run `papis mv something something` and then get prompted for the destination...
Another idea: why don't we copy `mv` behaviour? If a document is `papis mv`ed to a directory that doesn't exist, it's a rename (to). If a document is `papis mv`ed...
I just committed a first version, implementing most of the suggestions discussed (using the POSIX `mv` semantics). I definitely haven't tested it thoroughly yet, so don't test it on your...
Hey! Thanks for the issue report. Do you get any error messages and/or is the `Papis` command available? Do you have `cmp` installed (it's required for the completion module, which...
It looks like `lazy.nvim` is trying to install the plugin with `luarocks` and that fails. While I intend to move more to a `luarocks` setup, the `lazy` installation instructions should...
@Enrico68, can you try something like the following (stolen from neorg): ```lua { "jghauser/papis.nvim", lazy = false, -- Disable lazy loading as some `lazy.nvim` distributions set `lazy = true` by...
What happens when you do `Papis search`? Have you tried running `Papis reload config` and then `Papis reload data`? As a last resort, please enable the `debug` module (see README),...
I don't have lazy or lunarvim, but I think this isn't how plugins are configured. Maybe try something like: ``` { "jghauser/papis.nvim", lazy = false, -- Disable lazy loading as...