chore: autogen (vimdocs+formating)

This commit is contained in:
shadmansaleh 2023-01-05 04:32:31 +00:00 committed by github-actions[bot]
parent 36b3e39bd3
commit d8c392dd75
1 changed files with 7 additions and 7 deletions

View File

@ -378,7 +378,7 @@ in component.
-- at bottom of neovim instead of one for every window).
-- This feature is only available in neovim 0.7 and higher.
refresh = { -- sets how often lualine should refreash it's contents (in ms)
refresh = { -- sets how often lualine should refresh it's contents (in ms)
statusline = 1000, -- The refresh option sets minimum time that lualine tries
tabline = 1000, -- to maintain between refresh. It's not guarantied if situation
winbar = 1000 -- arises that lualine needs to refresh itself before this time
@ -472,7 +472,7 @@ General component options These are options that control behavior
-- need. E.g. tabnr if used with tabs.
on_click = nil, -- takes a function that is called when component is clicked with mouse.
-- the function receives several arguments
-- - number of clicks incase of multiple clicks
-- - number of clicks in case of multiple clicks
-- - mouse button used (l(left)/r(right)/m(middle)/...)
-- - modifiers pressed (s(shift)/c(ctrl)/a(alt)/m(meta)...)
}
@ -632,7 +632,7 @@ Component specific options These are options that are available on
modified = '[+]', -- Text to show when the file is modified.
readonly = '[-]', -- Text to show when the file is non-modifiable or readonly.
unnamed = '[No Name]', -- Text to show for unnamed buffers.
newfile = '[New]', -- Text to show for new created file before first writting
newfile = '[New]', -- Text to show for newly created file before first write
}
}
}
@ -797,9 +797,9 @@ configuration is similar to statusline.
Just like statusline you can separately specify winbar for active and inactive
windows. Any lualine component can be placed in winbar. All kinds of custom
components supported in statusline are also suported for winbar too. In general
You can treat winbar as another lualine statusline that just appears on top of
windows instead of at bottom.
components supported in statusline are also supported for winbar too. In
general You can treat winbar as another lualine statusline that just appears on
top of windows instead of at bottom.
*lualine-Buffers*
@ -962,7 +962,7 @@ the setup
>
require('lualine').hide({
place = {'statusline', 'tabline', 'winbar'}, -- The segment this change applies to.
unhide = false, -- whether to reenable lualine again/
unhide = false, -- whether to re-enable lualine again/
})
<