mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-20 02:35:52 +02:00
plugins/*: use new mkSettingsRenamedOptionModules
This commit is contained in:
parent
0ddf6e39ac
commit
c179d47d3d
37 changed files with 1176 additions and 1510 deletions
105
plugins/by-name/rest/renamed-options.nix
Normal file
105
plugins/by-name/rest/renamed-options.nix
Normal file
|
@ -0,0 +1,105 @@
|
|||
[
|
||||
"envFile"
|
||||
"encodeUrl"
|
||||
"skipSslVerification"
|
||||
"customDynamicVariables"
|
||||
[
|
||||
"highlight"
|
||||
"timeout"
|
||||
]
|
||||
{
|
||||
old = "resultSplitHorizontal";
|
||||
new = [
|
||||
"result"
|
||||
"split"
|
||||
"horizontal"
|
||||
];
|
||||
}
|
||||
{
|
||||
old = "resultSplitInPlace";
|
||||
new = [
|
||||
"result"
|
||||
"split"
|
||||
"in_place"
|
||||
];
|
||||
}
|
||||
{
|
||||
old = "stayInCurrentWindowAfterSplit";
|
||||
new = [
|
||||
"result"
|
||||
"split"
|
||||
"stay_in_current_window_after_split"
|
||||
];
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"result"
|
||||
"showUrl"
|
||||
];
|
||||
new = [
|
||||
|
||||
"result"
|
||||
"behavior"
|
||||
"show_info"
|
||||
"url"
|
||||
];
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"result"
|
||||
"showHeaders"
|
||||
];
|
||||
new = [
|
||||
|
||||
"result"
|
||||
"behavior"
|
||||
"show_info"
|
||||
"headers"
|
||||
];
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"result"
|
||||
"showHttpInfo"
|
||||
];
|
||||
new = [
|
||||
"result"
|
||||
"behavior"
|
||||
"show_info"
|
||||
"http_info"
|
||||
];
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"result"
|
||||
"showCurlCommand"
|
||||
];
|
||||
new = [
|
||||
"result"
|
||||
"behavior"
|
||||
"show_info"
|
||||
"curl_command"
|
||||
];
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"result"
|
||||
"formatters"
|
||||
];
|
||||
new = [
|
||||
"result"
|
||||
"behavior"
|
||||
"formatters"
|
||||
];
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"highlight"
|
||||
"enabled"
|
||||
];
|
||||
new = [
|
||||
"highlight"
|
||||
"enable"
|
||||
];
|
||||
}
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue