From b813075b8a55cfb584e442943f04af5d1ce1dcba Mon Sep 17 00:00:00 2001 From: Lewis Russell Date: Fri, 7 Mar 2025 21:04:50 +0000 Subject: fix(types): do not mark unstable API as private These functions are allowed to be used downstream, they are just not API stable. --- src/gen/gen_eval_files.lua | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/gen/gen_eval_files.lua') 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 -- cgit