mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-01-11 05:06:31 +00:00
Fixed description formatting
This commit is contained in:
parent
17a503ec4d
commit
364a59b3be
1 changed files with 12 additions and 6 deletions
|
|
@ -22,14 +22,18 @@ in {
|
||||||
save_on_toggle = mkOption {
|
save_on_toggle = mkOption {
|
||||||
type = bool;
|
type = bool;
|
||||||
default = false;
|
default = false;
|
||||||
description = '' Any time the ui menu is closed then we will save the
|
description = ''
|
||||||
state back to the backing list, not to the fs'';
|
Any time the ui menu is closed then we will save the
|
||||||
|
state back to the backing list, not to the fs
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
sync_on_ui_close = mkOption {
|
sync_on_ui_close = mkOption {
|
||||||
type = bool;
|
type = bool;
|
||||||
default = false;
|
default = false;
|
||||||
description = '' Any time the ui menu is closed then the state of the
|
description = ''
|
||||||
list will be sync'd back to the fs'';
|
Any time the ui menu is closed then the state of the
|
||||||
|
list will be sync'd back to the fs
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
key = mkOption {
|
key = mkOption {
|
||||||
type = luaInline;
|
type = luaInline;
|
||||||
|
|
@ -38,8 +42,10 @@ in {
|
||||||
return vim.loop.cwd()
|
return vim.loop.cwd()
|
||||||
end
|
end
|
||||||
'';
|
'';
|
||||||
description = '' How the out list key is looked up. This can be useful
|
description = ''
|
||||||
when using worktrees and using git remote instead of file path'';
|
How the out list key is looked up. This can be useful
|
||||||
|
when using worktrees and using git remote instead of file path
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue