aboutsummaryrefslogtreecommitdiff
path: root/doc/modules/colorizer.utils.html
diff options
context:
space:
mode:
authorAkianonymus <anonymus.aki@gmail.com>2022-09-09 23:55:43 +0530
committerAki <anonymus.aki@gmail.com>2022-09-14 11:47:08 +0530
commitf986d9a0ea1feff1388b5c7d297ec3faa19036a7 (patch)
tree501de10a0709883b9facfb26960f59a181b58d01 /doc/modules/colorizer.utils.html
parentbuffer_utils: Do not error when lsp info cannot be fetched (diff)
[FEATURE] Add support for sass variables
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
Diffstat (limited to 'doc/modules/colorizer.utils.html')
-rw-r--r--doc/modules/colorizer.utils.html87
1 files changed, 0 insertions, 87 deletions
diff --git a/doc/modules/colorizer.utils.html b/doc/modules/colorizer.utils.html
deleted file mode 100644
index 9bca259..0000000
--- a/doc/modules/colorizer.utils.html
+++ /dev/null
@@ -1,87 +0,0 @@
-==============================================================================
-UTILS *colorizer.utils*
-
-Helper utils
-
-
-==============================================================================
-LUA API *colorizer.utils*
-
-Available Functions:
-
- |colorizer.utils.byte_is_alphanumeric| - Obvious
-
- |colorizer.utils.byte_is_hex| - Obvious
-
- |colorizer.utils.merge| - Merge two tables
- TODO Remove this and use vim.tbl_deep_extend
-
- |colorizer.utils.parse_hex| - Obvious
-
- |colorizer.utils.percent_or_hex| - Obvious
-
-
-
-byte_is_alphanumeric({byte}) |colorizer.utils.byte_is_alphanumeric|
- Obvious
-
-
- Parameters:
- {byte} - number
-
- Returns:
- boolean
-
-
-
-byte_is_hex({byte}) |colorizer.utils.byte_is_hex|
- Obvious
-
-
- Parameters:
- {byte} - number
-
- Returns:
- boolean
-
-
-
-merge({...}) |colorizer.utils.merge|
- Merge two tables
- TODO Remove this and use vim.tbl_deep_extend
-
-
- Parameters:
- {...} -
-
- Returns:
- table
-
-
-
-parse_hex({byte}) |colorizer.utils.parse_hex|
- Obvious
-
-
- Parameters:
- {byte} - number
-
- Returns:
- number
-
-
-
-percent_or_hex({v}) |colorizer.utils.percent_or_hex|
- Obvious
-
-
- Parameters:
- {v} - string
-
- Returns:
- number|nil
-
-
-
-
- vim:tw=78:ts=8:noet:ft=help:norl: