Colorizer icon indicating copy to clipboard operation
Colorizer copied to clipboard

color hex codes and color names

Results 9 Colorizer issues
Sort by recently updated
recently updated
newest added

Hi There; Plugin is install but when trying any of the help commands I get everytime Not an Editor command - Vi IMproved 8.1 Compiled by Arch Linux Huge version...

I looked at `:help Colorizer` and wasn't able to figure out what's going on. The following only hides the ANSI but doesn't actually show colors: ``` ^[[35m^[[KSOME_TEXT_HERE^[[m^[[K:^[[32m^[[KMORE_TEXT^[[m^[[KMORE_TEXT... ``` It doesn't...

So when I activate it I get a large performance drop, as might be expected from how vim works and how this plugin works. Which is fine. But the problem...

e.g. from here: https://www.reddit.com/r/vim/comments/wm08fl/simple_vim_9_virtual_text_example_for_hex_colors/

ANSI code are free to change the color and that color will remain changed until it is reset or changed again. Currently (at least in my setup), the color changes...

Sorry I haven't isolated the problem at all, it could be something in my big fat .vimrc etc. but in case it's obvious to you the file is attached [foo.colored.txt](https://github.com/chrisbra/Colorizer/files/14994152/foo.colored.txt)

Hi, Thanks for the plugin! I have a little problem. In the following `.vim` file (excerpt from my `init.vim`, it fails: ```vim, lua " " hi Error guibg_"#ff0000" lua

The result is an incorrect highlight for a [hex colour](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Values/hex-color) with transparency component.

I have a lua function `HexToRGB` that converts hex to my rgb color object: ```lua local colorscheme { FOCUS = HexToRGB(0xF6B742FF), FOCUS_LIGHT = HexToRGB(0xFFEE70FF), FOCUS_BOLD = HexToRGB(0xFFCB27FF), } ``` When...