plenary.nvim icon indicating copy to clipboard operation
plenary.nvim copied to clipboard

plenary: full; complete; entire; absolute; unqualified. All the lua functions I don't want to write twice.

Results 171 plenary.nvim issues
Sort by recently updated
recently updated
newest added

`search_pattern` opt captures unexpected results. Search pattern doesn't only apply to the last part but to the whole path. e.g. search_pattern: `filetype` captures `data/plenary/filetypes/base.lua` which it shouldn't

It would be cool if the user can have more control over the float windows, such as passing window options to be executed, set border and border buffer colors .....

Now would be a great time to start a discussion on what people require in a standard lib and what's already out there. The topic is quite closely related to...

I added a new filetype for R language. Ej. Telescope with new filetype ![telescope_withfiletype](https://user-images.githubusercontent.com/88051372/195947452-03a6385c-8520-4dc8-90aa-ce475002323d.png) Ej. Telescope without filetype ![telescope_withoutfiletype](https://user-images.githubusercontent.com/88051372/195947458-9ebf8ccb-91de-48dc-8d3c-63bfe3ec004c.png)

I wanted to update `languages/en.lua` in order to properly fix #376, because last time language file was not updated in #377, but it's required. After this change it looks like...

Added ability to (naively) establish filetype from the current buffer, even if the buffer isn't saved to disk Note: I have not added any unit tests for this yet, kinda...

Credits goes to: https://github.com/kikito/memoize.lua This add a `memoize` function that lets users cache return values from a function passed as an argument. It is pretty much a copy paste of...

Hey :), IMHO `make_relative` should return only relative paths, so: - cwd: `/home/user/docs/neovim/docs/`, Path.filename: `/home/user/docs/tmp/note.md`: should return: `../../tmp/note.md` currently returns: `/home/user/docs/tmp/note.md`. Happy to make a PR, I'd just like to...

https://github.com/nvim-lua/plenary.nvim/blob/62dc2a7acd2fb2581871a36c1743b29e26c60390/lua/plenary/iterators.lua#L85

### Context I use both `plenary.popup` and `plenary.job` in my plugin [please.nvim](https://github.com/marcuscaisey/please.nvim) to [run a command in a popup terminal](https://github.com/marcuscaisey/please.nvim/blob/9a9068c75218372c4e962f364e3c8ee559c9d5d5/lua/please/runners/popup.lua#L49) and map `q` to close the popup / shutdown the...