mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 01:04:34 +02:00
plugins/*: use new mkSettingsRenamedOptionModules
This commit is contained in:
parent
0ddf6e39ac
commit
c179d47d3d
37 changed files with 1176 additions and 1510 deletions
90
plugins/by-name/auto-session/renamed-options.nix
Normal file
90
plugins/by-name/auto-session/renamed-options.nix
Normal file
|
@ -0,0 +1,90 @@
|
|||
[
|
||||
"logLevel"
|
||||
[
|
||||
"sessionLens"
|
||||
"loadOnSetup"
|
||||
]
|
||||
[
|
||||
"sessionLens"
|
||||
"themeConf"
|
||||
]
|
||||
[
|
||||
"sessionLens"
|
||||
"previewer"
|
||||
]
|
||||
[
|
||||
"sessionControl"
|
||||
"controlDir"
|
||||
]
|
||||
[
|
||||
"sessionControl"
|
||||
"controlFilename"
|
||||
]
|
||||
{
|
||||
old = [
|
||||
"autoSave"
|
||||
"enabled"
|
||||
];
|
||||
new = "auto_save";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"autoRestore"
|
||||
"enabled"
|
||||
];
|
||||
new = "auto_auto_restore";
|
||||
}
|
||||
{
|
||||
old = "bypassSessionSaveFileTypes";
|
||||
new = "bypass_save_filetypes";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"autoSession"
|
||||
"enableLastSession"
|
||||
];
|
||||
new = "auto_restore_last_session";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"autoSession"
|
||||
"rootDir"
|
||||
];
|
||||
new = "root_dir";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"autoSession"
|
||||
"enabled"
|
||||
];
|
||||
new = "enabled";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"autoSession"
|
||||
"createEnabled"
|
||||
];
|
||||
new = "auto_create";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"autoSession"
|
||||
"suppressDirs"
|
||||
];
|
||||
new = "suppressed_dirs";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"autoSession"
|
||||
"allowedDirs"
|
||||
];
|
||||
new = "allowed_dirs";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"autoSession"
|
||||
"useGitBranch"
|
||||
];
|
||||
new = "use_git_branch";
|
||||
}
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue