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()
8080 local win_map = {}
8181 local laststatus = vim .o .laststatus
8282 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
8391
8492 local tabpage = vim .api .nvim_get_current_tabpage ()
8593 local win_ids = vim .api .nvim_tabpage_list_wins (tabpage )
@@ -179,6 +187,7 @@ local function pick_win_id()
179187 end
180188
181189 vim .o .laststatus = laststatus
190+ vim .opt .fillchars = fillchars
182191
183192 if not vim .tbl_contains (vim .split (M .window_picker .chars , " " ), resp ) then
184193 return
You can’t perform that action at this time.
0 commit comments