aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/generators/gen_options_enum.lua
Commit message (Collapse)AuthorAge
* refactor(options): generate BV_ and WV_ constants (#26705)zeertzjq2023-12-22
|
* refactor(options): use hashy for finding options (#26573)Famiu Haque2023-12-17
Problem: `findoption()` searches through the options[] table linearly for option names, even though hashy can be used to generate a compile-time hash table for it. Solution: Use hashy to generate a compile time hash table for finding options. This also allows handling option aliases, so we don't need separate options[] table entries for things like 'viminfo'.