mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-23 17:49:57 +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
|
end
|
||||||
|
|
||||||
local notifications = {}
|
local notifications = {}
|
||||||
|
|
||||||
M.message = {}
|
M.message = {}
|
||||||
M.notification_width = 1
|
M.notification_width = 1
|
||||||
M.notify_max_width = 0
|
M.notify_max_width = 0
|
||||||
@ -30,7 +29,8 @@ M.bufnr = -1
|
|||||||
M.border = {}
|
M.border = {}
|
||||||
M.border.winid = -1
|
M.border.winid = -1
|
||||||
M.border.bufnr = -1
|
M.border.bufnr = -1
|
||||||
M.borderchars = { '─', '│', '─', '│', '┌', '┐', '┘', '└' }
|
-- M.borderchars = { '─', '│', '─', '│', '┌', '┐', '┘', '└' }
|
||||||
|
M.borderchars = { '─', '│', '─', '│', '╭', '╮', '╯', '╰' }
|
||||||
M.title = ''
|
M.title = ''
|
||||||
M.winblend = 0
|
M.winblend = 0
|
||||||
M.timeout = 3000
|
M.timeout = 3000
|
||||||
|
Loading…
x
Reference in New Issue
Block a user