kristijanhusak/defx-icons

Plugin causes some digits in file names to get strange colors

oblitum opened this issue · 3 comments

Having the plugin is strangely affecting how colorschemes behave for numbers in file names:

screenshot

See for example, digits 1 and 2 are much brighter than others. This happens with vim-deep-space colorscheme. Here's a minimal configuration I used in my tests:

" VIM-PLUG {{{
" Automatic Download {{{
if empty(glob('~/.vim/autoload/plug.vim'))
  silent !mkdir -p "$HOME/.vim/autoload"
  silent !curl -fLo "$HOME/.vim/autoload/plug.vim" 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
endif
" }}}
" PlugRemotePlugins(info) {{{
if has('nvim')
  let s:remote_plugins_updated = 0
  function! PlugRemotePlugins(info) abort
    if !s:remote_plugins_updated
      let s:remote_plugins_updated = 1
      UpdateRemotePlugins
    endif
  endfunction
else
  function! PlugRemotePlugins(info) abort
  endfunction
endif
" }}}
call plug#begin('~/.vim/plugged')
Plug 'tyrannicaltoucan/vim-deep-space'
Plug 'kristijanhusak/defx-icons', {'do': function('PlugRemotePlugins')}
Plug 'Shougo/defx.nvim', {'do': function('PlugRemotePlugins')}
call plug#end()
" }}}

let mapleader = ' '
if has('termguicolors')
  let &t_8f = "\<esc>[38;2;%lu;%lu;%lum"
  let &t_8b = "\<esc>[48;2;%lu;%lu;%lum"
  set termguicolors
endif
silent! colors deep-space
nnoremap <silent> <leader>D :Defx -split=vertical -winwidth=50 -direction=topleft -columns=indent:icons:filename:type<cr>
autocmd FileType defx call s:defx_mappings()
function! s:defx_mappings() abort
  nnoremap <silent><buffer><expr> za defx#do_action('open_or_close_tree')
endfunction

Tested on NVIM v0.4.0-808-g62d5137c8.

Are you sure it's not happening even without icons?

Yes.

@oblitum this should be fixed now. There were some exact case sensitive matches in the list, that are a leftover from copying data from vim-devicons. I removed them, so now it should be ok.

Thanks for reporting.