diff options
author | Lewis Russell <lewis6991@gmail.com> | 2025-03-07 21:04:50 +0000 |
---|---|---|
committer | Lewis Russell <me@lewisr.dev> | 2025-03-08 00:08:03 +0000 |
commit | b813075b8a55cfb584e442943f04af5d1ce1dcba (patch) | |
tree | 5d74c54dc07b763727d44ebcdb9a8e7e997160b7 /src/gen/gen_eval_files.lua | |
parent | b8ddd3b6bbfb7c2186be546a491b31b0db30b6b3 (diff) | |
download | rneovim-b813075b8a55cfb584e442943f04af5d1ce1dcba.tar.gz rneovim-b813075b8a55cfb584e442943f04af5d1ce1dcba.tar.bz2 rneovim-b813075b8a55cfb584e442943f04af5d1ce1dcba.zip |
fix(types): do not mark unstable API as private
These functions are allowed to be used downstream, they are just not API
stable.
Diffstat (limited to 'src/gen/gen_eval_files.lua')
-rwxr-xr-x | src/gen/gen_eval_files.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gen/gen_eval_files.lua b/src/gen/gen_eval_files.lua index f99f6bafbd..b5351cb3a4 100755 --- a/src/gen/gen_eval_files.lua +++ b/src/gen/gen_eval_files.lua @@ -371,10 +371,6 @@ end local function render_api_meta(_f, fun, write) write('') - if vim.startswith(fun.name, 'nvim__') then - write('--- @private') - end - if fun.deprecated then write('--- @deprecated') end |