From 589907de99142cb7b5cc218c54273f9f79a33e3b Mon Sep 17 00:00:00 2001 From: Chen Asraf Date: Sun, 8 Jun 2025 14:23:15 +0300 Subject: [PATCH] feat: add vertical ellipsis unicode --- lua/telescope-glyph/init.lua | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/lua/telescope-glyph/init.lua b/lua/telescope-glyph/init.lua index 66d9f56..f31bdfd 100644 --- a/lua/telescope-glyph/init.lua +++ b/lua/telescope-glyph/init.lua @@ -23732,11 +23732,17 @@ local glyphs = { description = "Heavy up light down", }, { - name = "U+2026" + name = "U+2026", value = "…", category = "Unicode", - description = "Horizontal ellipsis" - } + description = "Horizontal ellipsis", + }, + { + name = "U+22EE", + value = "⋮", + category = "Unicode", + description = "Vertical ellipsis", + }, } return { glyphs = glyphs }