chrisbra / Colorizer

color hex codes and color names
547 stars 30 forks source link

Feature Request: support customizing cursorconceal setting #96

Closed systemmonkey42 closed 2 years ago

systemmonkey42 commented 2 years ago

Moden vim and neovim (and probably most old versions) support c as an option in concealcursor which keeps concealed characters hidden while performing an incremental search.

Can I suggest a small change from

   setl cocu=nv cole=2

to

   exe 'setl cocu='.get(g:,'colorizer_conceal_modes','nv')
   setl cole=2

to make it easy to customize the conceal modes?

Thanks