mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-09 03:56:05 +01:00
plugins/neogit: remove deprecation warnings
This commit is contained in:
parent
1f003e44d5
commit
c6b45bb66e
1 changed files with 0 additions and 62 deletions
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
helpers,
|
|
||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
|
@ -10,8 +9,6 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
||||||
|
|
||||||
maintainers = [ lib.maintainers.GaetanLepage ];
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
||||||
|
|
||||||
# TODO introduced 2024-02-29: remove 2024-04-29
|
|
||||||
deprecateExtraOptions = true;
|
|
||||||
imports = [
|
imports = [
|
||||||
# TODO: added 2025-04-07, remove after 25.05
|
# TODO: added 2025-04-07, remove after 25.05
|
||||||
(lib.nixvim.mkRemovedPackageOptionModule {
|
(lib.nixvim.mkRemovedPackageOptionModule {
|
||||||
|
|
@ -22,65 +19,6 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
||||||
plugin = "neogit";
|
plugin = "neogit";
|
||||||
packageName = "which";
|
packageName = "which";
|
||||||
})
|
})
|
||||||
]
|
|
||||||
++ (map
|
|
||||||
(
|
|
||||||
optionPath:
|
|
||||||
lib.mkRemovedOptionModule
|
|
||||||
(
|
|
||||||
[
|
|
||||||
"plugins"
|
|
||||||
"neogit"
|
|
||||||
]
|
|
||||||
++ optionPath
|
|
||||||
)
|
|
||||||
"This option has been removed upstream. Please refer to the plugin documentation to update your configuration."
|
|
||||||
)
|
|
||||||
[
|
|
||||||
[ "disableCommitConfirmation" ]
|
|
||||||
[ "disableBuiltinNotifications" ]
|
|
||||||
[ "useMagitKeybindings " ]
|
|
||||||
[ "commitPopup" ]
|
|
||||||
[
|
|
||||||
"sections"
|
|
||||||
"unmerged"
|
|
||||||
]
|
|
||||||
[
|
|
||||||
"sections"
|
|
||||||
"unpulled"
|
|
||||||
]
|
|
||||||
]
|
|
||||||
);
|
|
||||||
optionsRenamedToSettings = [
|
|
||||||
"disableSigns"
|
|
||||||
"disableHint"
|
|
||||||
"disableContextHighlighting"
|
|
||||||
"autoRefresh"
|
|
||||||
"graphStyle"
|
|
||||||
"kind"
|
|
||||||
"signs"
|
|
||||||
"integrations"
|
|
||||||
[
|
|
||||||
"sections"
|
|
||||||
"untracked"
|
|
||||||
]
|
|
||||||
[
|
|
||||||
"sections"
|
|
||||||
"unstaged"
|
|
||||||
]
|
|
||||||
[
|
|
||||||
"sections"
|
|
||||||
"staged"
|
|
||||||
]
|
|
||||||
[
|
|
||||||
"sections"
|
|
||||||
"stashes"
|
|
||||||
]
|
|
||||||
[
|
|
||||||
"sections"
|
|
||||||
"recent"
|
|
||||||
]
|
|
||||||
"mappings"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue