From fc65ca508d2e551bbaeaacfc9daf99d8ef2cc389 Mon Sep 17 00:00:00 2001 From: wsdjeg Date: Sat, 29 Jul 2023 13:39:51 +0800 Subject: [PATCH] perf(notify): change notify borderchars --- bundle/git.vim/lua/git/command/reset.lua | 7 +++++++ lua/spacevim/api/notify.lua | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 bundle/git.vim/lua/git/command/reset.lua diff --git a/bundle/git.vim/lua/git/command/reset.lua b/bundle/git.vim/lua/git/command/reset.lua new file mode 100644 index 000000000..ad5b54a13 --- /dev/null +++ b/bundle/git.vim/lua/git/command/reset.lua @@ -0,0 +1,7 @@ +--============================================================================= +-- reset.lua --- Git reset command +-- Copyright (c) 2016-2023 Wang Shidong & Contributors +-- Author: Wang Shidong < wsdjeg@outlook.com > +-- URL: https://spacevim.org +-- License: GPLv3 +--============================================================================= diff --git a/lua/spacevim/api/notify.lua b/lua/spacevim/api/notify.lua index a5146a428..a06f09ddc 100644 --- a/lua/spacevim/api/notify.lua +++ b/lua/spacevim/api/notify.lua @@ -21,7 +21,6 @@ local extend = function(t1, t2) -- {{{ end local notifications = {} - M.message = {} M.notification_width = 1 M.notify_max_width = 0 @@ -30,7 +29,8 @@ M.bufnr = -1 M.border = {} M.border.winid = -1 M.border.bufnr = -1 -M.borderchars = { '─', '│', '─', '│', '┌', '┐', '┘', '└' } +-- M.borderchars = { '─', '│', '─', '│', '┌', '┐', '┘', '└' } +M.borderchars = { '─', '│', '─', '│', '╭', '╮', '╯', '╰' } M.title = '' M.winblend = 0 M.timeout = 3000