aboutsummaryrefslogtreecommitdiff
path: root/doc/modules/colorizer.html
Commit message (Collapse)AuthorAge
* Separate parsers into individual filesakianonymus2023-02-27
|
* fix: Make always update buffer configurable | #52akianonymus2023-02-26
| | | | disabled by default
* fix: Improve individual opts behaviour | #48akianonymus2023-02-26
| | | | | | | | See https://github.com/NvChad/nvim-colorizer.lua/issues/48 css is true, names is true: Show names css is true, names is unset: Show names css is true, names is false: Don't show names
* 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
* Generate missing docs for utils.luaAkianonymus2022-09-28
|
* Bump required neovim version to 0.7Akianonymus2022-09-15
| | | | why are you using the older version ?
* Better structure and naming | Misc improvementsAkianonymus2022-09-15
|
* Seperate tailwind stuff | Fix for neovim 0.7Akianonymus2022-09-14
| | | | | | | Seperate the lines parsing logic in buffer_utils, upcoming multi threading parsing and processing Update docs
* Seperate sass codeAkianonymus2022-09-14
|
* [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
|
* docs: Use name in Last Updated | Cleanup | Improve insert mode perfAkianonymus2022-09-08
| | | | Fix highlight not refreshing for last line when tailwind mode is activated
* tailwind: Use true for normal modeAkianonymus2022-09-07
| | | | For first start, wait 100 ms before trying to get some info from the lsp
* Fix https://github.com/NvChad/nvim-colorizer.lua/issues/12 | Add support for ↵Akianonymus2022-09-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tailwind colors Three methods normal: Use the hardcoded colors lsp: Use lsp to fetch colors both: Use the hardcoded colors and use lsp too if available although this is hardcoding, but working with what we got, has all the colors tailwind provides, atleast the prebuilt ones for new defined colors, have to enable the lsp method Generated using https://github.com/tailwindlabs/tailwindcss/raw/master/src/public/colors.js and https://github.com/tailwindlabs/tailwindcss/raw/master/src/corePlugins.js use a different namespace than default for tailwind lsp method only try to use lsp method if attached Misc changes export the user_default_settings to doc clear name space after the lines are processed for a smooth transition cleanup some code
* 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
* Update docs and luadocsAshkan Kiani2019-10-18
|
* Add readme, docs, rgb(), #RGB, and optionsAshkan Kiani2019-10-17
- Add support for `rgb(...)` functions behind an option gate. - Highlight #RGB codes. - Add options, like `rgb_fn` and `no_names` - Add luadoc.