From 59322c2aae5868517faf92b9c4e9e1800fc4dfb4 Mon Sep 17 00:00:00 2001 From: Rubin Bhandari Date: Mon, 24 Nov 2025 23:26:46 +0545 Subject: [PATCH] fix(dial): remove unnecessary blank lines for cleaner code --- lua/lazyvim/plugins/extras/editor/dial.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lua/lazyvim/plugins/extras/editor/dial.lua b/lua/lazyvim/plugins/extras/editor/dial.lua index e09180d5..3d9a18bf 100644 --- a/lua/lazyvim/plugins/extras/editor/dial.lua +++ b/lua/lazyvim/plugins/extras/editor/dial.lua @@ -53,7 +53,6 @@ return { cyclic = true, }) - local months = augend.constant.new({ elements = { "January", @@ -73,7 +72,6 @@ return { cyclic = true, }) - return { dials_by_ft = { css = "css", @@ -95,7 +93,7 @@ return { augend.integer.alias.decimal_int, -- nonnegative and negative decimal number augend.integer.alias.hex, -- nonnegative hex number (0x01, 0x1a1f, etc.) augend.date.alias["%Y/%m/%d"], -- date (2022/02/19, etc.) - augend.alias.en_weekday, -- Mon, Tue, ..., Sat, Sun + augend.constant.alias.en_weekday, -- Mon, Tue, ..., Sat, Sun augend.constant.alias.en_weekday_full, -- Monday, Tuesday, ..., Saturday, Sunday ordinal_numbers, months,