1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 13:40:05 +08:00

perf(notify): change notify borderchars

This commit is contained in:
wsdjeg 2023-07-29 13:39:51 +08:00 committed by Eric Wong
parent 88b49c0089
commit fc65ca508d
2 changed files with 9 additions and 2 deletions

View File

@ -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
--=============================================================================

View File

@ -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