File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
lua/nvim-tree/actions/node Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,14 @@ local function pick_win_id()
80
80
local win_map = {}
81
81
local laststatus = vim .o .laststatus
82
82
vim .o .laststatus = 2
83
+ local fillchars = vim .opt .fillchars :get ()
84
+ local stl = fillchars .stl
85
+ local stlnc = fillchars .stlnc
86
+ fillchars .stl = nil
87
+ fillchars .stlnc = nil
88
+ vim .opt .fillchars = fillchars
89
+ fillchars .stl = stl
90
+ fillchars .stlnc = stlnc
83
91
84
92
local tabpage = vim .api .nvim_get_current_tabpage ()
85
93
local win_ids = vim .api .nvim_tabpage_list_wins (tabpage )
@@ -179,6 +187,7 @@ local function pick_win_id()
179
187
end
180
188
181
189
vim .o .laststatus = laststatus
190
+ vim .opt .fillchars = fillchars
182
191
183
192
if not vim .tbl_contains (vim .split (M .window_picker .chars , " " ), resp ) then
184
193
return
You can’t perform that action at this time.
0 commit comments