From 880f99c218991c065ad61cfee04cc5c625d29a22 Mon Sep 17 00:00:00 2001 From: ache Date: Sun, 19 Apr 2026 00:42:06 +0200 Subject: update: Alternate to cylce --- lua/ache/plugins/alternate-toggler.lua | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'lua/ache/plugins/alternate-toggler.lua') 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" }, }, }) -- cgit v1.3-2-g11bf