mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
plugins/refactoring: add missing option show_success_message
This commit is contained in:
parent
e3b4315903
commit
61cc6e9f22
2 changed files with 10 additions and 0 deletions
|
@ -136,5 +136,13 @@ helpers.neovim-plugin.mkNeovimPlugin config {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
show_success_message = helpers.defaultNullOpts.mkBool false ''
|
||||||
|
Shows a message with information about the refactor on success. Such as:
|
||||||
|
|
||||||
|
```
|
||||||
|
[Refactor] Inlined 3 variable occurrences
|
||||||
|
```
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
extract_var_statements = {
|
extract_var_statements = {
|
||||||
go = "%s := %s // poggers";
|
go = "%s := %s // poggers";
|
||||||
};
|
};
|
||||||
|
show_success_message = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -53,6 +54,7 @@
|
||||||
printf_statements = { };
|
printf_statements = { };
|
||||||
print_var_statements = { };
|
print_var_statements = { };
|
||||||
extract_var_statements = { };
|
extract_var_statements = { };
|
||||||
|
show_success_message = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue