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:
parent
88b49c0089
commit
fc65ca508d
7
bundle/git.vim/lua/git/command/reset.lua
vendored
Normal file
7
bundle/git.vim/lua/git/command/reset.lua
vendored
Normal 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
|
||||
--=============================================================================
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user