aboutsummaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAge
* feat: Support modern rgb/rgba syntaxakianonymus2023-02-26
| | | | https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgb
* fix: hsl: for multiple spaces in betweenakianonymus2023-02-26
|
* feat: Improve hsl parserakianonymus2023-02-25
| | | | | | | | | | follow https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/hsl add support for deg, turn and all alpha values merge hsl and hsla into one parser less regex computation
* Fix: Error when - in hex color | #24Akianonymus2022-09-22
|
* Better structure and naming | Misc improvementsAkianonymus2022-09-15
|
* [FEATURE] Add support for sass variablesAkianonymus2022-09-14
| | | | | | | | | | | | | | | | | | | | | | | | Import support import using use and import keyword multiple imports in single line multiple imports in multiple lines ( using commas ) recursive imports watch imports for changes and automatically rehighlight buffer buffer variables recursive variables support multiple variables in single line parse imported files only when they are changed Loosely based on https://github.com/norcalli/nvim-colorizer.lua/pull/22/files
* Make sure to use existing options when attaching bufferAkianonymus2022-09-09
|
* fragment | Implement better autocmd management | refactorAkianonymus2022-09-03
| | | | | | | | | | | | add a all_buffers option - colorizer will activate on all buffers, empty or not, still respect filetypes option handle errors when detach is called multiple times from the same buffer use bufdelete and bufdelete to remove the autocmds use a more efficient compile parse_fn function use custom ldoc template to generate vim help
* Use string.format to convert to hexAkianonymus2022-08-27
|
* format filessiduck2022-07-22
|
* Refactor (#19)Ashkan Kiani2019-10-19
| | | | | | | | - Refactor and clean up old code. - Fix the trie printing (it's perfect now :o) - Add the ability to search from a starting point. This can help avoid allocations. - Avoid an allocation in longest_prefix. - Refactor and allow configuring of color_name_parser setup
* Improve algorithm performance and correctness. (#15)Ashkan Kiani2019-10-18
- Disable highlighting for HEX codes and NAME codes when preceded by alphanumeric codes. - Hand written parser with 1 pass parsing. - Update Trie to be more ergonomic. - Add test file with expected outputs for edge cases. - Cache matcher creation and refactor. - Refactor Faster than ever baby