Some project progress report.
Now the entire list of options under vim.opt
and vim.wopt
has been mapped to haxe.
This means that you can configure most of the more importants neovim options from haxe code. For example, some of the more important to me are:
Vim.o.hlsearch = false;
Vim.o.mouse = 'a';
Vim.o.breakindent = true;
Vim.o.undofile = true;
Vim.wo.Number = true;
Each option is fully documented in comments, so in case you want to know what it does all you need to the definition point. I’m working in making this be part of the intellisense popup tough.
If you want to read a couple of thousand lines of haxe code, here is the specific commit: feat: Full vim.opt options mapped · danielo515/dotfiles@da7bc75 · GitHub