diff options
| author | ache <ache@ache.one> | 2026-04-19 00:42:06 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2026-04-19 00:42:06 +0200 |
| commit | 880f99c218991c065ad61cfee04cc5c625d29a22 (patch) | |
| tree | 21d055c112ce1aab16914fad11f1b4ad61be9fe2 /lua/ache/plugins | |
| parent | feat: Configure cursortab for IA_ACHE_ONE (diff) | |
update: Alternate to cylce
Diffstat (limited to 'lua/ache/plugins')
| -rw-r--r-- | lua/ache/plugins/alternate-toggler.lua | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/lua/ache/plugins/alternate-toggler.lua b/lua/ache/plugins/alternate-toggler.lua index d9893e3..71ce55a 100644 --- a/lua/ache/plugins/alternate-toggler.lua +++ b/lua/ache/plugins/alternate-toggler.lua @@ -7,12 +7,15 @@ return { config = function() require("alternate-toggler").setup({ alternates = { - ["true"] = "false", - ["oui"] = "non", - ["Oui"] = "Non", - ["OUI"] = "NON", - [">="] = "<=", - ["=="] = "!=", + { "true", "false" }, + { "oui", "non" }, + { "Oui", "Non" }, + { "OUI", "NON" }, + { ">=", "<=" }, + { "==", "!=" }, + { "public", "private", "protected" }, + { "info", "warn", "error", "debug", "trace" }, + { "left", "center", "right" }, }, }) |