bluz71 / nvim-linefly

A simple Lua statusline for Neovim
MIT License
85 stars 2 forks source link

Quickfix issue #4

Closed eonpatapon closed 1 year ago

eonpatapon commented 1 year ago

Seems the plugin doesn't handle the special case of quickfix and probably location lists.

With the default status line I can see the quickfix title:

20230323_17h03m33s_grim

while with linefly there is simply no title:

20230323_17h04m46s_grim

Aside from that, do you think it could be possible to add a setting to disable the mode status ? (normal, visual, etc..)

Thanks for the plugin!

bluz71 commented 1 year ago

Seems the plugin doesn't handle the special case of quickfix and probably location lists.

Yes, that is a good suggestion. I have just implemented that in the latest commit; please update and test.

Aside from that, do you think it could be possible to add a setting to disable the mode status ? (normal, visual, etc..)

Sorry, I don't want to change the overall layout which includes the mode status. This is a simple statusline with a mostly fixed layout.

If you like this plugin then you fork it and remove the mode status (from init.lua); otherwise something like Lualine will be more configurable.

Best regards,

Dennis.

eonpatapon commented 1 year ago

Thanks!