mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-20 10:45:51 +02:00
plugins/vim-matchup: migrate to mkVimPlugin
This commit is contained in:
parent
30895485c3
commit
3461f890fa
4 changed files with 560 additions and 183 deletions
130
plugins/by-name/vim-matchup/renamed-options.nix
Normal file
130
plugins/by-name/vim-matchup/renamed-options.nix
Normal file
|
@ -0,0 +1,130 @@
|
|||
[
|
||||
{
|
||||
old = "enableSurround";
|
||||
new = "surround_enabled";
|
||||
}
|
||||
{
|
||||
old = "enableTransmute";
|
||||
new = "transmute_enabled";
|
||||
}
|
||||
"delimStopline"
|
||||
{
|
||||
old = "delimNoSkips";
|
||||
new = "delim_noskips";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"motion"
|
||||
"enable"
|
||||
];
|
||||
new = "motion_enabled";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"motion"
|
||||
"cursorEnd"
|
||||
];
|
||||
new = "motion_cursor_end";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"motion"
|
||||
"overrideNPercent"
|
||||
];
|
||||
new = "motion_override_Npercent";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"textObj"
|
||||
"enable"
|
||||
];
|
||||
new = "text_obj_enabled";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"textObj"
|
||||
"linewiseOperators"
|
||||
];
|
||||
new = "text_obj_linewise_operators";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"matchParen"
|
||||
"enable"
|
||||
];
|
||||
new = "matchparen_enabled";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"matchParen"
|
||||
"fallback"
|
||||
];
|
||||
new = "matchparen_fallback";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"matchParen"
|
||||
"singleton"
|
||||
];
|
||||
new = "matchparen_singleton";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"matchParen"
|
||||
"offscreen"
|
||||
];
|
||||
new = "matchparen_offscreen";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"matchParen"
|
||||
"stopline"
|
||||
];
|
||||
new = "matchparen_stopline";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"matchParen"
|
||||
"timeout"
|
||||
];
|
||||
new = "matchparen_timeout";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"matchParen"
|
||||
"insertTimeout"
|
||||
];
|
||||
new = "matchparen_insert_timeout";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"matchParen"
|
||||
"deferred"
|
||||
"enable"
|
||||
];
|
||||
new = "matchparen_deferred";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"matchParen"
|
||||
"deferred"
|
||||
"showDelay"
|
||||
];
|
||||
new = "matchparen_deferred_show_delay";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"matchParen"
|
||||
"deferred"
|
||||
"hideDelay"
|
||||
];
|
||||
new = "matchparen_deferred_hide_delay";
|
||||
}
|
||||
{
|
||||
old = [
|
||||
"matchParen"
|
||||
"hiSurroundAlways"
|
||||
];
|
||||
new = "matchparen_deferred_hi_surround_always";
|
||||
}
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue