From d37e97bdc3fed57efd7829a7fe29ad50d8aa86b5 Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Wed, 11 Jul 2018 15:59:04 +0200 Subject: [PATCH] Add line caps to draw function --- lua/vim.moon | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/vim.moon b/lua/vim.moon index f34478c..347b562 100644 --- a/lua/vim.moon +++ b/lua/vim.moon @@ -56,9 +56,10 @@ draw = -> for line in * { { "─", "│", "┼" } { "┌", "┐", "└", "┘" } - {"├", "┤", "┬", "┴"} + { "├", "┤", "┬", "┴" } + { "╼" ,"╽" ,"╾" ,"╾" } } - print table.concat(line, " ") + print table.concat(line, " ") {