From 611c0116ba7e5262868bbd7fbb87575b9e6371ef Mon Sep 17 00:00:00 2001 From: Randy West Date: Fri, 22 Nov 2024 14:52:43 -0800 Subject: [PATCH] fix(dial): add and/or augend to python ft --- lua/lazyvim/plugins/extras/editor/dial.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/lazyvim/plugins/extras/editor/dial.lua b/lua/lazyvim/plugins/extras/editor/dial.lua index e296624a..a9f7bb26 100644 --- a/lua/lazyvim/plugins/extras/editor/dial.lua +++ b/lua/lazyvim/plugins/extras/editor/dial.lua @@ -108,6 +108,7 @@ return { markdown = "markdown", sass = "css", scss = "css", + python = "python", }, groups = { default = { @@ -151,6 +152,11 @@ return { cyclic = true, -- "or" is incremented into "and". }), }, + python = { + augend.constant.new({ + elements = { "and", "or" }, + }), + }, }, } end,