summaryrefslogtreecommitdiffstatshomepage
path: root/src/gen/gen_vimvim.lua
AgeCommit message (Collapse)AuthorFiles
2026-03-09fix: silence LuaLS's `no-unknown` warnings in `src/`Riccardo Mazzarini1
2025-05-02feat(build): build.zig MVP: build and run functionaltests on linuxbfredl1
NEW BUILD SYSTEM! This is a MVP implementation which supports building the "nvim" binary, including cross-compilation for some targets. As an example, you can build a aarch64-macos binary from an x86-64-linux-gnu host, or vice versa Add CI target for build.zig currently for functionaltests on linux x86_64 only Follow up items: - praxis for version and dependency bumping - windows 💀 - full integration of libintl and gettext (or a desicion not to) - update help and API metadata files - installation into a $PREFIX - more tests and linters
2025-04-23vim-patch:fa3b104: runtime(vim): Update base-syntax, improve :autocmd ↵zeertzjq1
highlighting (#33586) - Match full :autocmd, :doautocmd and :doautoall commands. - Add filename pattern (wildcard) highlighting. https://github.com/vim/vim/commit/fa3b1043c6ac38df5e58f7444f478e1ddd4000a6 Co-authored-by: Doug Kearns <dougkearns@gmail.com>
2025-04-18vim-patch:3dca512: runtime(vim): Update base-syntax and generator, only ↵zeertzjq1
match valid predefined variables - Only match valid predefined and option variables. - Match scope dictionaries. - Highlight scope prefixed variables as a scope dictionary accessor. The vimVarScope syntax group can be linked to vimVar to disable this. - Include support for Neovim-only predefined and option variables. Temporary collateral damage - scope dictionaries match instead of keys in dictionary literals. closes: vim/vim#16727 https://github.com/vim/vim/commit/3dca512939991004e434b66635b4b7b626a45afe Co-authored-by: Doug Kearns <dougkearns@gmail.com>
2025-03-09refactor(generator): remove nested loop for event aliases (#32780)zeertzjq1
After #32777 the aliases no longer need to come later, so the list of autocommand names can be fully sorted.
2025-02-26build: move all generator scripts to `src/gen/`Lewis Russell1
- Move all generator Lua scripts to the `src/gen/` - Add a `.luarc.json` to `src/gen/` - Add a `preload.lua` to `src/gen/` - Add `src` to `package.path` so it aligns with `.luarc.json' - Fix all `require` statements in `src/gen/` so they are consistent: - `require('scripts.foo')` -> `require('gen.foo')` - `require('src.nvim.options')` -> `require('nvim.options')` - `require('api.dispatch_deprecated')` -> `require('nvim.api.dispatch_deprecated')`