assistant/codecompanion-nvim: Description clean up

Added "Whether to enable" to mkEnableOption descriptions with `//`
merge.
This commit is contained in:
army castillo 2025-04-06 02:48:58 -04:00
parent eedb3dd8c4
commit 51d76dd515

View file

@ -13,7 +13,9 @@ in {
mkEnableOption "" mkEnableOption ""
// { // {
default = true; default = true;
description = "code from being sent to the LLM."; description = ''
Whether to enable code being sent to the LLM.
'';
}; };
log_level = mkOption { log_level = mkOption {
@ -35,7 +37,10 @@ in {
mkEnableOption "" mkEnableOption ""
// { // {
default = true; default = true;
description = "a diff view to see the changes made by the LLM."; description = ''
Whether to enable a diff view
to see the changes made by the LLM.
'';
}; };
close_chat_at = mkOption { close_chat_at = mkOption {
@ -73,7 +78,7 @@ in {
mkEnableOption "" mkEnableOption ""
// { // {
default = true; default = true;
description = "automatic page scrolling."; description = "Whether to enable automatic page scrolling.";
}; };
show_settings = mkEnableOption '' show_settings = mkEnableOption ''
@ -95,14 +100,18 @@ in {
mkEnableOption "" mkEnableOption ""
// { // {
default = true; default = true;
description = "references in the chat buffer."; description = ''
Whether to enable references in the chat buffer.
'';
}; };
show_token_count = show_token_count =
mkEnableOption "" mkEnableOption ""
// { // {
default = true; default = true;
description = "the token count for each response."; description = ''
Whether to enable the token count for each response.
'';
}; };
intro_message = mkOption { intro_message = mkOption {
@ -165,7 +174,10 @@ in {
mkEnableOption "" mkEnableOption ""
// { // {
default = true; default = true;
description = "showing default actions in the action palette."; description = ''
Whether to enable showing default
actions in the action palette.
'';
}; };
show_default_prompt_library = show_default_prompt_library =
@ -173,7 +185,8 @@ in {
// { // {
default = true; default = true;
description = '' description = ''
showing default prompt library in the action palette. Whether to enable showing default
prompt library in the action palette.
''; '';
}; };
}; };