-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Beta-testing 'mini.extra' #550
Comments
Really cool additions! I really appreciate your work on mini, it is a literal game changer for my neovim config.
Also one thing to the whishlist 😄 |
That is really interesting, because my thought process is exactly the opposite: if I call any of I'd suggest using
Yes, I debated myself a bit here, but decided to go with
I have seen this in both Telescope and Fzf-lua and couldn't really figure out the use for it. Do you use it often? |
I wonder what other people think about this. Also,
I mainly use it to enable syntax highlighting on empty buffers or unknown files. Recently I'm also developing a programming language and need to do |
Loving the new pickers so far! The main improvement I can think of at the moment is to add an option to the oldfiles picker to filter by cwd. |
|
New pickers are great! Loving the oldfiles, git_commit, and diagnostic pickers. All super useful. Need to test out some more but already have replaced Telescope
absolutely!
Have not customized a single package and am using defaults for everything
Everything is clear enough and the very well documented code makes it easy to dive in as needed. Thank you for all the great plugins! |
Regarding the registers picker, it would be nice to have a preview of the register content. Useful for multiline text. |
Hmmm... Originally I thought that preview is not really needed as content is in the item text itself. But you make a good point. I'll think about it. |
Will it be possible to combined multiple scope for git_files? For example, I want to list files which are modified and untracked. |
@Susensio, thanks again for the suggestion. I've pushed an update for @sunzoje, I don't think I'd suggest using _G.pick_modified_untracked = function()
local local_opts = { command = { 'git', 'ls-files', '--modified', '--others' } }
local source = {
name = 'Git files (modified + untracked)',
show = function(buf_id, items, query) return MiniPick.default_show(buf_id, items, query, { show_icons = true }) end,
}
return MiniPick.builtin.cli(local_opts, { source = source })
end |
Any plan on adding git status picker? That's the only picker I'm missing from Fzf-lua. |
No, I don't think so. Its functionality is kind of spread across |
Hi, a huge thank you first of all for your plugins ! I've switched to To circumvent the issue, Is this a feature you would consider ? I think this is mostly a workaround for LSPs that do not implement the spec properly ( |
Hi, thanks for the feedback! I was not aware of this issue. After having read the LSP specification, it is indeed seems that LSP server does not follow it in this case. Here is a link for future reference: in "Request" subsection it says "Clients may send an empty string here to request all symbols.". I am not really keen on providing built-in workarounds for something not following the standard. What I think is the best compromise here is to allow users to set that query themselves (which is possible thanks to I'll try to add it tomorrow. |
Thanks for your quick reply, I think this solution would be fine indeed ! |
@Aphosis, |
Thank you, works like a charm ! |
With the release of 0.11.0, 'mini.extra' is now out of beta-testing. Many thanks to everyone for constructive feedback and ideas! |
Please leave your feedback about new mini.extra module here. Feel free to either add new comment or positively upvote existing one.
Some things I am interested to find out (obviously, besides bugs):
Thanks!
The text was updated successfully, but these errors were encountered: