Skip to content

Commit

Permalink
Fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
ichirou2910 committed Jan 20, 2021
1 parent b4c4f11 commit b2f3fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/buftabline.vim
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function! buftabline#render()
let tab.sep = strridx(tab.path, s:dirsep, strlen(tab.path) - 2) " keep trailing dirsep
let tab.label = tab.path[tab.sep + 1:]
if show_icon && exists("*WebDevIconsGetFileTypeSymbol")
let tab.label = WebDevIconsGetFileTypeSymbol(tab.path) . tab.label . ' '
let tab.label = WebDevIconsGetFileTypeSymbol(tab.path) . ' ' . tab.label
endif
" let pre = screen_num
let pre = ''
Expand Down

0 comments on commit b2f3fed

Please sign in to comment.