summaryrefslogtreecommitdiffstatshomepage
path: root/src/nvim/lua/base64.c
AgeCommit message (Collapse)AuthorFiles
2025-08-14refactor(build): remove INCLUDE_GENERATED_DECLARATIONS guardsbfredl1
These are not needed after #35129 but making uncrustify still play nice with them was a bit tricky. Unfortunately `uncrustify --update-config-with-doc` breaks strings with backslashes. This issue has been reported upstream, and in the meanwhile auto-update on every single run has been disabled.
2024-04-15fix(base64): properly handle embedded NULLs when decoding (#28349)Gregory Anders1
2023-11-16refactor: iwyu (#26062)zeertzjq1
2023-11-12build: remove PVSdundargoc1
We already have an extensive suite of static analysis tools we use, which causes a fair bit of redundancy as we get duplicate warnings. PVS is also prone to give false warnings which creates a lot of work to identify and disable.
2023-11-11fix(PVS/V009): add top-level messagedundargoc1
2023-10-31feat(stdlib): add vim.base64 module (#25843)Gregory Anders1
Add base64 encode() and decode() functions to a vim.base64 module.