cebacb3c35
* wip: Paths and dirs * feat: att 2 * final changes * feat!: Revamp & optimize the way paths are stored This is a very crucial redesign that actually required a lot of consideration to move forward but now it allows us to save a lot of RAM, acutally improves query time and gives an ability to query directories for free * fix: Wrong pointer * chore: Update docs for - fix: Wrong pointer * fix: notify debouncer on macos * get rid of flienma_ptrs juggling * consolidate arena/picker via pub trait
24 lines
581 B
TOML
24 lines
581 B
TOML
[files]
|
|
extend-exclude = ["/CHANGELOG.md", "data/filetypes/base.lua"]
|
|
|
|
[default.extend-words]
|
|
noice = "noice"
|
|
fo = "fo"
|
|
ba = "ba"
|
|
ue = "ue"
|
|
# some typos we use for tests
|
|
comparsion = "comparsion"
|
|
modfiers = "modfiers"
|
|
|
|
[default]
|
|
extend-ignore-re = [
|
|
# git commit hashes in CHANGELOG.md
|
|
"\\[[0-9a-f]{7}\\]",
|
|
# Line ignore with trailing # spellchecker:disable-line
|
|
"(?Rm)^.*(#|--|//)\\s*spellchecker:disable-line$",
|
|
# Line block with # spellchecker:<on|off>
|
|
"(?s)(#|--|//|)\\s*spellchecker:off.*?\\n\\s*(#|--|//)\\s*spellchecker:on",
|
|
# Vim doc formatting
|
|
"vim:.+:"
|
|
]
|