summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/lua/vim/_meta/base64.lua
AgeCommit message (Collapse)AuthorFiles
2026-04-14fix(lua): not obvious which _meta/ files are generated #39035Justin M. Keyes1
Problem: - Not obvious which _meta/ are generated and which should be edited manually. - The require guard (`error('Cannot require a meta file')`) is not consistently present in all meta files. Solution: - Update headers. - Add require() guard to all meta files. - Rename generated meta files with `.gen.lua`.
2025-06-06fix: type fixesLewis Russell1
Type fixes caught by emmylua
2024-04-26fix: lua annotationsLewis Russell1
2023-10-31feat(stdlib): add vim.base64 module (#25843)Gregory Anders1
Add base64 encode() and decode() functions to a vim.base64 module.