vim-buftabline
                                
                                
                                
                                    vim-buftabline copied to clipboard
                            
                            
                            
                        Integrating devicons
Hello, would like some help integrating devicons, assuming it is possible.
Using the WebDevIconsGetFileTypeSumbol(), from https://github.com/ryanoasis/vim-devicons#developer, I can replace line 110, within buftablime.vim from this:
let tab.label = lpad . get(tab, 'pre', '') . tab.label . ' '
to this:
let tab.label = lpad . get(tab, 'pre', '') . tab.label . ' %{WebDevIconsGetFileTypeSymbol()} '.
It mostly works, except that all buffers get the same icon as the current. *sigh. I'm not sure how to address this, and would greatly appreciate your help, assuming it's possible.
Thank you.
Got it!
replaced line 75 within buftabline.vim from this:
let tab.label = tab.path[tab.sep + 1:]
to this:
let tab.label = tab.path[tab.sep + 1:] . ' ' . WebDevIconsGetFileTypeSymbol(tab.path)
thanks @asilvadesigns it worked and looked nice!
Any possibility of getting this merged, possibly as an option? I'd rather not be modifying the plugin it self since it will break on updates