2021-10-22 13:10:33 +00:00
|
|
|
This file contains breaking changes in chronological order. It's possible
|
|
|
|
breaking change has been made several times to the same thing. In that case
|
|
|
|
the one nearest the bottom indicates current state.
|
2021-09-17 02:44:43 +00:00
|
|
|
|
|
|
|
### Color option unification
|
|
|
|
color_added, color_modified, color_removed options in diff & color_error,
|
|
|
|
color_warning, color_info, color_hint too only fg color that was different
|
|
|
|
from other color options that took fg ,bg & gui changes were made to make
|
|
|
|
them similar.
|
|
|
|
|
|
|
|
So instead of
|
|
|
|
```lua
|
|
|
|
color_added = '#rrbbgg',
|
|
|
|
```
|
|
|
|
You'll have
|
|
|
|
```lua
|
|
|
|
color_added = { fg = '#rrbbgg' }
|
|
|
|
```
|
2021-09-28 08:05:10 +00:00
|
|
|
for the same effect.
|
2021-09-17 02:44:43 +00:00
|
|
|
|
|
|
|
### Theme rename
|
2021-09-28 08:05:10 +00:00
|
|
|
Some themes were renamed so they are same as their `g:color_name`
|
2021-09-17 02:44:43 +00:00
|
|
|
- oceanicnext -> OceanicNext
|
|
|
|
- papercolor -> PaperColor
|
|
|
|
- tomorrow -> Tomorrow
|
|
|
|
- gruvbox_material -> gruvbox-material
|
|
|
|
- modus_vivendi -> modus-vivendi
|
|
|
|
|
|
|
|
### function components now receive some default parameters
|
2021-09-28 08:05:10 +00:00
|
|
|
Now function components receive the same args as `update_status`. So the function
|
|
|
|
signature is now:
|
2021-09-17 02:44:43 +00:00
|
|
|
```lua
|
|
|
|
function(self, is_active)
|
|
|
|
```
|
|
|
|
`self` is a table that represents the component in lualine & `is_active` is
|
|
|
|
a boolean value that indicates whether the function is being evaluated
|
2021-09-28 08:05:10 +00:00
|
|
|
for an active statusline or an inactive statusline. This means function components
|
|
|
|
can be more versatile. But it also means you can't use functions that take
|
|
|
|
optional arguments directly as function component. `lsp_status` is such
|
|
|
|
a case that takes an optional `winid` in its first argument.
|
|
|
|
You can wrap it with a function so the `self` & `is_active` don't
|
2021-09-17 02:44:43 +00:00
|
|
|
get passed to `lsp_status`
|
|
|
|
```lua
|
2021-09-17 02:59:48 +00:00
|
|
|
lualine_c = { function() return require'lsp-status'.status() end}
|
2021-09-17 02:44:43 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### Options simplification
|
2021-10-22 04:57:04 +00:00
|
|
|
See [#24](https://github.com/nvim-lualine/lualine.nvim/pull/24) for details
|
2021-09-17 02:44:43 +00:00
|
|
|
- `upper` & `lower` removed use `string.upper/lower` in `fmt` option.
|
|
|
|
- separators are specified by left & right instead of position
|
|
|
|
instead of `{'>', '<'}` you'll use `{left= '>', right='<'}`.
|
|
|
|
- `left_padding` & `right_padding` removed. You can specify left or right
|
2021-09-28 08:05:10 +00:00
|
|
|
padding with a padding option like padding = `{ left = 5 }`
|
2021-09-17 02:44:43 +00:00
|
|
|
- Option rename:
|
|
|
|
- condition -> cond
|
|
|
|
- format -> fmt
|
|
|
|
- disable_text -> icon_only
|
|
|
|
- color_added, color_modified, color_removed are now available as added,
|
|
|
|
modified, removed in diff_color table option
|
|
|
|
- color_error, color_warning, color_info, color_hint are now available
|
2021-09-17 08:40:10 +00:00
|
|
|
as error, warn, info, hint in diagnostics_color table option
|
2021-09-25 17:15:42 +00:00
|
|
|
|
|
|
|
### Component class refactor
|
|
|
|
***Applicable only ones responsible for custom components***
|
|
|
|
- Now call extend method on super class to create new type of component instead of calling new with empty args.
|
|
|
|
- Don't overrite new method for initialization. Overrite init instead.
|
|
|
|
- rename Component._parent -> Component.super
|
|
|
|
- Call methods from super class directly on classes super not through
|
|
|
|
objects super or self.super
|
|
|
|
So basically if you had something like
|
|
|
|
```lua
|
|
|
|
local my_comp = require'lualine.component':new()
|
|
|
|
function mycomp:new(options, child)
|
|
|
|
local obj = self._parent:new(options, child or my_comp)
|
|
|
|
obj.x = 1
|
|
|
|
obj.y = 2
|
|
|
|
return obj
|
|
|
|
end
|
|
|
|
```
|
|
|
|
change it to
|
|
|
|
```lua
|
|
|
|
local my_comp = require('lualine.component'):extend()
|
|
|
|
|
|
|
|
function my_comp:init(options)
|
|
|
|
-- Notice carefully it's not self.super.init nor my_comp.super:init
|
|
|
|
my_comp.super.init(self, options)
|
|
|
|
self.x = 1
|
|
|
|
self.y = 2
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
2022-01-12 16:34:28 +00:00
|
|
|
### Type option(luae & vimf) rename
|
|
|
|
These were hard to understand before. Now the name should convey more info.
|
|
|
|
|
|
|
|
- luae -> lua_expr
|
|
|
|
- vimf -> vim_fun
|
|
|
|
|
2022-01-12 16:13:02 +00:00
|
|
|
### 'nvim' diagnostic soirce has been renamed to 'nvim_diagnostic'
|
|
|
|
What the title says ☝️
|