Fixed description formatting

This commit is contained in:
Theodor Bjorkman 2025-03-04 08:55:36 +01:00
commit 364a59b3be

View file

@ -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
'';
}; };
}; };
}; };