feat(yadm): deprecate
This commit is contained in:
parent
3cb0f8431f
commit
1bb277b41d
|
@ -31,7 +31,6 @@ Super fast git decorations implemented purely in Lua.
|
||||||
- Automatically follow files moved in the index.
|
- Automatically follow files moved in the index.
|
||||||
- Live intra-line word diff
|
- Live intra-line word diff
|
||||||
- Ability to display deleted/changed lines via virtual lines.
|
- Ability to display deleted/changed lines via virtual lines.
|
||||||
- Support for [yadm]
|
|
||||||
- Support for detached working trees.
|
- Support for detached working trees.
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
@ -96,9 +95,6 @@ require('gitsigns').setup {
|
||||||
row = 0,
|
row = 0,
|
||||||
col = 1
|
col = 1
|
||||||
},
|
},
|
||||||
yadm = {
|
|
||||||
enable = false
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -256,7 +252,6 @@ Customizable signs and mappings | :white_check_mark:
|
||||||
Customizable extra diff arguments | :white_check_mark: | :white_check_mark: |
|
Customizable extra diff arguments | :white_check_mark: | :white_check_mark: |
|
||||||
Can be toggled globally or per buffer | :white_check_mark: * | :white_check_mark: | * Through the detach/attach functions
|
Can be toggled globally or per buffer | :white_check_mark: * | :white_check_mark: | * Through the detach/attach functions
|
||||||
Statusline integration | :white_check_mark: | :white_check_mark: |
|
Statusline integration | :white_check_mark: | :white_check_mark: |
|
||||||
Works with [yadm] | :white_check_mark: | |
|
|
||||||
Live blame in buffer (using virtual text) | :white_check_mark: | |
|
Live blame in buffer (using virtual text) | :white_check_mark: | |
|
||||||
Blame preview | :white_check_mark: | |
|
Blame preview | :white_check_mark: | |
|
||||||
Automatically follows open files moved with `git mv` | :white_check_mark: | |
|
Automatically follows open files moved with `git mv` | :white_check_mark: | |
|
||||||
|
@ -297,5 +292,4 @@ If you are using lspsaga.nvim you can config `code_action.extend_gitsigns` (defa
|
||||||
[vim-gitgutter]: https://github.com/airblade/vim-gitgutter
|
[vim-gitgutter]: https://github.com/airblade/vim-gitgutter
|
||||||
[vim-signify]: https://github.com/mhinz/vim-signify
|
[vim-signify]: https://github.com/mhinz/vim-signify
|
||||||
[virtual lines]: https://github.com/neovim/neovim/pull/15351
|
[virtual lines]: https://github.com/neovim/neovim/pull/15351
|
||||||
[yadm]: https://yadm.io
|
|
||||||
[lspsaga.nvim]: https://github.com/glepnir/lspsaga.nvim
|
[lspsaga.nvim]: https://github.com/glepnir/lspsaga.nvim
|
||||||
|
|
|
@ -72,9 +72,6 @@ of the default settings:
|
||||||
row = 0,
|
row = 0,
|
||||||
col = 1
|
col = 1
|
||||||
},
|
},
|
||||||
yadm = {
|
|
||||||
enable = false
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
<
|
<
|
||||||
|
|
||||||
|
@ -875,6 +872,10 @@ trouble *gitsigns-config-trouble*
|
||||||
quickfix/location list window.
|
quickfix/location list window.
|
||||||
|
|
||||||
yadm *gitsigns-config-yadm*
|
yadm *gitsigns-config-yadm*
|
||||||
|
DEPRECATED
|
||||||
|
|
||||||
|
Please instead use |gitsigns-config-on_attach_pre|.
|
||||||
|
|
||||||
Type: `table`
|
Type: `table`
|
||||||
Default: >
|
Default: >
|
||||||
`{
|
`{
|
||||||
|
|
|
@ -751,6 +751,9 @@ M.schema = {
|
||||||
|
|
||||||
yadm = {
|
yadm = {
|
||||||
type = 'table',
|
type = 'table',
|
||||||
|
deprecated = {
|
||||||
|
new_field = 'on_attach_pre',
|
||||||
|
},
|
||||||
default = { enable = false },
|
default = { enable = false },
|
||||||
description = [[
|
description = [[
|
||||||
yadm configuration.
|
yadm configuration.
|
||||||
|
|
Loading…
Reference in New Issue