mirror of
https://github.com/Ascyii/telekasten.nvim.git
synced 2026-01-01 06:14:23 -05:00
* fix: note title ending removed when it matches parts of extension By using [] we provide a character set rather than a direct match with (). Lua patterns don't allow N-captures with (), so we continue executing the pattern until there are no more substitutions being executed. fixes #118 * fix: refactor extension stripping from title Don't worry about n-capture, once is enough. Turned it into a fn so it can be used elsewhere. refs #118