mirror of
https://github.com/neovim/neovim.git
synced 2025-10-18 07:41:51 +00:00
api: implement FUNC_API_SINCE
This commit is contained in:
@@ -9,7 +9,8 @@ C, Ct, Cc, Cg = lpeg.C, lpeg.Ct, lpeg.Cc, lpeg.Cg
|
|||||||
|
|
||||||
any = P(1) -- (consume one character)
|
any = P(1) -- (consume one character)
|
||||||
letter = R('az', 'AZ') + S('_$')
|
letter = R('az', 'AZ') + S('_$')
|
||||||
alpha = letter + R('09')
|
num = R('09')
|
||||||
|
alpha = letter + num
|
||||||
nl = P('\r\n') + P('\n')
|
nl = P('\r\n') + P('\n')
|
||||||
not_nl = any - nl
|
not_nl = any - nl
|
||||||
ws = S(' \t') + nl
|
ws = S(' \t') + nl
|
||||||
@@ -35,6 +36,7 @@ c_proto = Ct(
|
|||||||
Cg(c_type, 'return_type') * Cg(c_id, 'name') *
|
Cg(c_type, 'return_type') * Cg(c_id, 'name') *
|
||||||
fill * P('(') * fill * Cg(c_params, 'parameters') * fill * P(')') *
|
fill * P('(') * fill * Cg(c_params, 'parameters') * fill * P(')') *
|
||||||
Cg(Cc(false), 'async') *
|
Cg(Cc(false), 'async') *
|
||||||
|
(fill * Cg((P('FUNC_API_SINCE(') * C(num ^ 1)) * P(')'), 'since') ^ -1) *
|
||||||
(fill * Cg((P('FUNC_API_ASYNC') * Cc(true)), 'async') ^ -1) *
|
(fill * Cg((P('FUNC_API_ASYNC') * Cc(true)), 'async') ^ -1) *
|
||||||
(fill * Cg((P('FUNC_API_NOEXPORT') * Cc(true)), 'noexport') ^ -1) *
|
(fill * Cg((P('FUNC_API_NOEXPORT') * Cc(true)), 'noexport') ^ -1) *
|
||||||
(fill * Cg((P('FUNC_API_NOEVAL') * Cc(true)), 'noeval') ^ -1) *
|
(fill * Cg((P('FUNC_API_NOEVAL') * Cc(true)), 'noeval') ^ -1) *
|
||||||
@@ -52,6 +54,7 @@ package.path = nvimsrcdir .. '/?.lua;' .. package.path
|
|||||||
-- names of all headers relative to the source root (for inclusion in the
|
-- names of all headers relative to the source root (for inclusion in the
|
||||||
-- generated file)
|
-- generated file)
|
||||||
headers = {}
|
headers = {}
|
||||||
|
|
||||||
-- output h file with generated dispatch functions
|
-- output h file with generated dispatch functions
|
||||||
dispatch_outputf = arg[#arg-2]
|
dispatch_outputf = arg[#arg-2]
|
||||||
-- output h file with packed metadata
|
-- output h file with packed metadata
|
||||||
@@ -114,9 +117,11 @@ local deprecated_aliases = require("api.dispatch_deprecated")
|
|||||||
for i,f in ipairs(shallowcopy(functions)) do
|
for i,f in ipairs(shallowcopy(functions)) do
|
||||||
local ismethod = false
|
local ismethod = false
|
||||||
if startswith(f.name, "nvim_") then
|
if startswith(f.name, "nvim_") then
|
||||||
-- TODO(bfredl) after 0.1.6 allow method definitions
|
if f.since == nil then
|
||||||
-- to specify the since and deprecated_since field
|
print("Function "..f.name.." lacks since field.\n")
|
||||||
f.since = 1
|
os.exit(1)
|
||||||
|
end
|
||||||
|
f.since = tonumber(f.since)
|
||||||
if startswith(f.name, "nvim_buf_") then
|
if startswith(f.name, "nvim_buf_") then
|
||||||
ismethod = true
|
ismethod = true
|
||||||
elseif startswith(f.name, "nvim_win_") then
|
elseif startswith(f.name, "nvim_win_") then
|
||||||
|
@@ -32,6 +32,7 @@
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Line count
|
/// @return Line count
|
||||||
Integer nvim_buf_line_count(Buffer buffer, Error *err)
|
Integer nvim_buf_line_count(Buffer buffer, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
|
|
||||||
@@ -154,6 +155,7 @@ ArrayOf(String) nvim_buf_get_lines(uint64_t channel_id,
|
|||||||
Integer end,
|
Integer end,
|
||||||
Boolean strict_indexing,
|
Boolean strict_indexing,
|
||||||
Error *err)
|
Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Array rv = ARRAY_DICT_INIT;
|
Array rv = ARRAY_DICT_INIT;
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
@@ -266,6 +268,7 @@ void nvim_buf_set_lines(uint64_t channel_id,
|
|||||||
Boolean strict_indexing,
|
Boolean strict_indexing,
|
||||||
ArrayOf(String) replacement, // NOLINT
|
ArrayOf(String) replacement, // NOLINT
|
||||||
Error *err)
|
Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
|
|
||||||
@@ -416,6 +419,7 @@ end:
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Variable value
|
/// @return Variable value
|
||||||
Object nvim_buf_get_var(Buffer buffer, String name, Error *err)
|
Object nvim_buf_get_var(Buffer buffer, String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
|
|
||||||
@@ -449,6 +453,7 @@ Integer nvim_buf_get_changedtick(Buffer buffer, Error *err)
|
|||||||
/// @param value Variable value
|
/// @param value Variable value
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_buf_set_var(Buffer buffer, String name, Object value, Error *err)
|
void nvim_buf_set_var(Buffer buffer, String name, Object value, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
|
|
||||||
@@ -465,6 +470,7 @@ void nvim_buf_set_var(Buffer buffer, String name, Object value, Error *err)
|
|||||||
/// @param name Variable name
|
/// @param name Variable name
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_buf_del_var(Buffer buffer, String name, Error *err)
|
void nvim_buf_del_var(Buffer buffer, String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
|
|
||||||
@@ -525,6 +531,7 @@ Object buffer_del_var(Buffer buffer, String name, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Option value
|
/// @return Option value
|
||||||
Object nvim_buf_get_option(Buffer buffer, String name, Error *err)
|
Object nvim_buf_get_option(Buffer buffer, String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
|
|
||||||
@@ -543,6 +550,7 @@ Object nvim_buf_get_option(Buffer buffer, String name, Error *err)
|
|||||||
/// @param value Option value
|
/// @param value Option value
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_buf_set_option(Buffer buffer, String name, Object value, Error *err)
|
void nvim_buf_set_option(Buffer buffer, String name, Object value, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
|
|
||||||
@@ -559,6 +567,7 @@ void nvim_buf_set_option(Buffer buffer, String name, Object value, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Buffer number
|
/// @return Buffer number
|
||||||
Integer nvim_buf_get_number(Buffer buffer, Error *err)
|
Integer nvim_buf_get_number(Buffer buffer, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Integer rv = 0;
|
Integer rv = 0;
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
@@ -576,6 +585,7 @@ Integer nvim_buf_get_number(Buffer buffer, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Buffer name
|
/// @return Buffer name
|
||||||
String nvim_buf_get_name(Buffer buffer, Error *err)
|
String nvim_buf_get_name(Buffer buffer, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
String rv = STRING_INIT;
|
String rv = STRING_INIT;
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
@@ -593,6 +603,7 @@ String nvim_buf_get_name(Buffer buffer, Error *err)
|
|||||||
/// @param name Buffer name
|
/// @param name Buffer name
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_buf_set_name(Buffer buffer, String name, Error *err)
|
void nvim_buf_set_name(Buffer buffer, String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
|
|
||||||
@@ -622,6 +633,7 @@ void nvim_buf_set_name(Buffer buffer, String name, Error *err)
|
|||||||
/// @param buffer Buffer handle
|
/// @param buffer Buffer handle
|
||||||
/// @return true if the buffer is valid, false otherwise
|
/// @return true if the buffer is valid, false otherwise
|
||||||
Boolean nvim_buf_is_valid(Buffer buffer)
|
Boolean nvim_buf_is_valid(Buffer buffer)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Error stub = ERROR_INIT;
|
Error stub = ERROR_INIT;
|
||||||
return find_buffer_by_handle(buffer, &stub) != NULL;
|
return find_buffer_by_handle(buffer, &stub) != NULL;
|
||||||
@@ -653,6 +665,7 @@ void buffer_insert(Buffer buffer,
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return (row, col) tuple
|
/// @return (row, col) tuple
|
||||||
ArrayOf(Integer, 2) nvim_buf_get_mark(Buffer buffer, String name, Error *err)
|
ArrayOf(Integer, 2) nvim_buf_get_mark(Buffer buffer, String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Array rv = ARRAY_DICT_INIT;
|
Array rv = ARRAY_DICT_INIT;
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
@@ -727,6 +740,7 @@ Integer nvim_buf_add_highlight(Buffer buffer,
|
|||||||
Integer col_start,
|
Integer col_start,
|
||||||
Integer col_end,
|
Integer col_end,
|
||||||
Error *err)
|
Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
if (!buf) {
|
if (!buf) {
|
||||||
@@ -767,6 +781,7 @@ void nvim_buf_clear_highlight(Buffer buffer,
|
|||||||
Integer line_start,
|
Integer line_start,
|
||||||
Integer line_end,
|
Integer line_end,
|
||||||
Error *err)
|
Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
if (!buf) {
|
if (!buf) {
|
||||||
|
@@ -15,6 +15,7 @@
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return List of windows in `tabpage`
|
/// @return List of windows in `tabpage`
|
||||||
ArrayOf(Window) nvim_tabpage_list_wins(Tabpage tabpage, Error *err)
|
ArrayOf(Window) nvim_tabpage_list_wins(Tabpage tabpage, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Array rv = ARRAY_DICT_INIT;
|
Array rv = ARRAY_DICT_INIT;
|
||||||
tabpage_T *tab = find_tab_by_handle(tabpage, err);
|
tabpage_T *tab = find_tab_by_handle(tabpage, err);
|
||||||
@@ -44,6 +45,7 @@ ArrayOf(Window) nvim_tabpage_list_wins(Tabpage tabpage, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Variable value
|
/// @return Variable value
|
||||||
Object nvim_tabpage_get_var(Tabpage tabpage, String name, Error *err)
|
Object nvim_tabpage_get_var(Tabpage tabpage, String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
tabpage_T *tab = find_tab_by_handle(tabpage, err);
|
tabpage_T *tab = find_tab_by_handle(tabpage, err);
|
||||||
|
|
||||||
@@ -64,6 +66,7 @@ void nvim_tabpage_set_var(Tabpage tabpage,
|
|||||||
String name,
|
String name,
|
||||||
Object value,
|
Object value,
|
||||||
Error *err)
|
Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
tabpage_T *tab = find_tab_by_handle(tabpage, err);
|
tabpage_T *tab = find_tab_by_handle(tabpage, err);
|
||||||
|
|
||||||
@@ -80,6 +83,7 @@ void nvim_tabpage_set_var(Tabpage tabpage,
|
|||||||
/// @param name Variable name
|
/// @param name Variable name
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_tabpage_del_var(Tabpage tabpage, String name, Error *err)
|
void nvim_tabpage_del_var(Tabpage tabpage, String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
tabpage_T *tab = find_tab_by_handle(tabpage, err);
|
tabpage_T *tab = find_tab_by_handle(tabpage, err);
|
||||||
|
|
||||||
@@ -138,6 +142,7 @@ Object tabpage_del_var(Tabpage tabpage, String name, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Window handle
|
/// @return Window handle
|
||||||
Window nvim_tabpage_get_win(Tabpage tabpage, Error *err)
|
Window nvim_tabpage_get_win(Tabpage tabpage, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Window rv = 0;
|
Window rv = 0;
|
||||||
tabpage_T *tab = find_tab_by_handle(tabpage, err);
|
tabpage_T *tab = find_tab_by_handle(tabpage, err);
|
||||||
@@ -165,6 +170,7 @@ Window nvim_tabpage_get_win(Tabpage tabpage, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Tabpage number
|
/// @return Tabpage number
|
||||||
Integer nvim_tabpage_get_number(Tabpage tabpage, Error *err)
|
Integer nvim_tabpage_get_number(Tabpage tabpage, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Integer rv = 0;
|
Integer rv = 0;
|
||||||
tabpage_T *tab = find_tab_by_handle(tabpage, err);
|
tabpage_T *tab = find_tab_by_handle(tabpage, err);
|
||||||
@@ -181,6 +187,7 @@ Integer nvim_tabpage_get_number(Tabpage tabpage, Error *err)
|
|||||||
/// @param tabpage Tabpage handle
|
/// @param tabpage Tabpage handle
|
||||||
/// @return true if the tabpage is valid, false otherwise
|
/// @return true if the tabpage is valid, false otherwise
|
||||||
Boolean nvim_tabpage_is_valid(Tabpage tabpage)
|
Boolean nvim_tabpage_is_valid(Tabpage tabpage)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Error stub = ERROR_INIT;
|
Error stub = ERROR_INIT;
|
||||||
return find_tab_by_handle(tabpage, &stub) != NULL;
|
return find_tab_by_handle(tabpage, &stub) != NULL;
|
||||||
|
@@ -48,7 +48,7 @@ void remote_ui_disconnect(uint64_t channel_id)
|
|||||||
|
|
||||||
void nvim_ui_attach(uint64_t channel_id, Integer width, Integer height,
|
void nvim_ui_attach(uint64_t channel_id, Integer width, Integer height,
|
||||||
Dictionary options, Error *err)
|
Dictionary options, Error *err)
|
||||||
FUNC_API_NOEVAL
|
FUNC_API_SINCE(1) FUNC_API_NOEVAL
|
||||||
{
|
{
|
||||||
if (pmap_has(uint64_t)(connected_uis, channel_id)) {
|
if (pmap_has(uint64_t)(connected_uis, channel_id)) {
|
||||||
api_set_error(err, Exception, _("UI already attached for channel"));
|
api_set_error(err, Exception, _("UI already attached for channel"));
|
||||||
@@ -118,7 +118,7 @@ void ui_attach(uint64_t channel_id, Integer width, Integer height,
|
|||||||
}
|
}
|
||||||
|
|
||||||
void nvim_ui_detach(uint64_t channel_id, Error *err)
|
void nvim_ui_detach(uint64_t channel_id, Error *err)
|
||||||
FUNC_API_NOEVAL
|
FUNC_API_SINCE(1) FUNC_API_NOEVAL
|
||||||
{
|
{
|
||||||
if (!pmap_has(uint64_t)(connected_uis, channel_id)) {
|
if (!pmap_has(uint64_t)(connected_uis, channel_id)) {
|
||||||
api_set_error(err, Exception, _("UI is not attached for channel"));
|
api_set_error(err, Exception, _("UI is not attached for channel"));
|
||||||
@@ -130,7 +130,7 @@ void nvim_ui_detach(uint64_t channel_id, Error *err)
|
|||||||
|
|
||||||
void nvim_ui_try_resize(uint64_t channel_id, Integer width,
|
void nvim_ui_try_resize(uint64_t channel_id, Integer width,
|
||||||
Integer height, Error *err)
|
Integer height, Error *err)
|
||||||
FUNC_API_NOEVAL
|
FUNC_API_SINCE(1) FUNC_API_NOEVAL
|
||||||
{
|
{
|
||||||
if (!pmap_has(uint64_t)(connected_uis, channel_id)) {
|
if (!pmap_has(uint64_t)(connected_uis, channel_id)) {
|
||||||
api_set_error(err, Exception, _("UI is not attached for channel"));
|
api_set_error(err, Exception, _("UI is not attached for channel"));
|
||||||
@@ -151,7 +151,7 @@ void nvim_ui_try_resize(uint64_t channel_id, Integer width,
|
|||||||
|
|
||||||
void nvim_ui_set_option(uint64_t channel_id, String name,
|
void nvim_ui_set_option(uint64_t channel_id, String name,
|
||||||
Object value, Error *error)
|
Object value, Error *error)
|
||||||
FUNC_API_NOEVAL
|
FUNC_API_SINCE(1) FUNC_API_NOEVAL
|
||||||
{
|
{
|
||||||
if (!pmap_has(uint64_t)(connected_uis, channel_id)) {
|
if (!pmap_has(uint64_t)(connected_uis, channel_id)) {
|
||||||
api_set_error(error, Exception, _("UI is not attached for channel"));
|
api_set_error(error, Exception, _("UI is not attached for channel"));
|
||||||
|
@@ -39,6 +39,7 @@
|
|||||||
/// @param command Ex-command string
|
/// @param command Ex-command string
|
||||||
/// @param[out] err Error details (including actual VimL error), if any
|
/// @param[out] err Error details (including actual VimL error), if any
|
||||||
void nvim_command(String command, Error *err)
|
void nvim_command(String command, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
// Run the command
|
// Run the command
|
||||||
try_start();
|
try_start();
|
||||||
@@ -56,6 +57,7 @@ void nvim_command(String command, Error *err)
|
|||||||
/// @see feedkeys()
|
/// @see feedkeys()
|
||||||
/// @see vim_strsave_escape_csi
|
/// @see vim_strsave_escape_csi
|
||||||
void nvim_feedkeys(String keys, String mode, Boolean escape_csi)
|
void nvim_feedkeys(String keys, String mode, Boolean escape_csi)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
bool remap = true;
|
bool remap = true;
|
||||||
bool insert = false;
|
bool insert = false;
|
||||||
@@ -122,7 +124,7 @@ void nvim_feedkeys(String keys, String mode, Boolean escape_csi)
|
|||||||
/// @return Number of bytes actually written (can be fewer than
|
/// @return Number of bytes actually written (can be fewer than
|
||||||
/// requested if the buffer becomes full).
|
/// requested if the buffer becomes full).
|
||||||
Integer nvim_input(String keys)
|
Integer nvim_input(String keys)
|
||||||
FUNC_API_ASYNC
|
FUNC_API_SINCE(1) FUNC_API_ASYNC
|
||||||
{
|
{
|
||||||
return (Integer)input_enqueue(keys);
|
return (Integer)input_enqueue(keys);
|
||||||
}
|
}
|
||||||
@@ -133,6 +135,7 @@ Integer nvim_input(String keys)
|
|||||||
/// @see cpoptions
|
/// @see cpoptions
|
||||||
String nvim_replace_termcodes(String str, Boolean from_part, Boolean do_lt,
|
String nvim_replace_termcodes(String str, Boolean from_part, Boolean do_lt,
|
||||||
Boolean special)
|
Boolean special)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
if (str.size == 0) {
|
if (str.size == 0) {
|
||||||
// Empty string
|
// Empty string
|
||||||
@@ -152,6 +155,7 @@ String nvim_replace_termcodes(String str, Boolean from_part, Boolean do_lt,
|
|||||||
}
|
}
|
||||||
|
|
||||||
String nvim_command_output(String str, Error *err)
|
String nvim_command_output(String str, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
do_cmdline_cmd("redir => v:command_output");
|
do_cmdline_cmd("redir => v:command_output");
|
||||||
nvim_command(str, err);
|
nvim_command(str, err);
|
||||||
@@ -172,6 +176,7 @@ String nvim_command_output(String str, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Evaluation result or expanded object
|
/// @return Evaluation result or expanded object
|
||||||
Object nvim_eval(String expr, Error *err)
|
Object nvim_eval(String expr, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Object rv = OBJECT_INIT;
|
Object rv = OBJECT_INIT;
|
||||||
// Evaluate the expression
|
// Evaluate the expression
|
||||||
@@ -200,6 +205,7 @@ Object nvim_eval(String expr, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Result of the function call
|
/// @return Result of the function call
|
||||||
Object nvim_call_function(String fname, Array args, Error *err)
|
Object nvim_call_function(String fname, Array args, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Object rv = OBJECT_INIT;
|
Object rv = OBJECT_INIT;
|
||||||
if (args.size > MAX_FUNC_ARGS) {
|
if (args.size > MAX_FUNC_ARGS) {
|
||||||
@@ -248,6 +254,7 @@ free_vim_args:
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Number of cells
|
/// @return Number of cells
|
||||||
Integer nvim_strwidth(String str, Error *err)
|
Integer nvim_strwidth(String str, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
if (str.size > INT_MAX) {
|
if (str.size > INT_MAX) {
|
||||||
api_set_error(err, Validation, _("String length is too high"));
|
api_set_error(err, Validation, _("String length is too high"));
|
||||||
@@ -261,6 +268,7 @@ Integer nvim_strwidth(String str, Error *err)
|
|||||||
///
|
///
|
||||||
/// @return List of paths
|
/// @return List of paths
|
||||||
ArrayOf(String) nvim_list_runtime_paths(void)
|
ArrayOf(String) nvim_list_runtime_paths(void)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Array rv = ARRAY_DICT_INIT;
|
Array rv = ARRAY_DICT_INIT;
|
||||||
uint8_t *rtp = p_rtp;
|
uint8_t *rtp = p_rtp;
|
||||||
@@ -302,6 +310,7 @@ ArrayOf(String) nvim_list_runtime_paths(void)
|
|||||||
/// @param dir Directory path
|
/// @param dir Directory path
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_set_current_dir(String dir, Error *err)
|
void nvim_set_current_dir(String dir, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
if (dir.size >= MAXPATHL) {
|
if (dir.size >= MAXPATHL) {
|
||||||
api_set_error(err, Validation, _("Directory string is too long"));
|
api_set_error(err, Validation, _("Directory string is too long"));
|
||||||
@@ -330,6 +339,7 @@ void nvim_set_current_dir(String dir, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Current line string
|
/// @return Current line string
|
||||||
String nvim_get_current_line(Error *err)
|
String nvim_get_current_line(Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
return buffer_get_line(curbuf->handle, curwin->w_cursor.lnum - 1, err);
|
return buffer_get_line(curbuf->handle, curwin->w_cursor.lnum - 1, err);
|
||||||
}
|
}
|
||||||
@@ -339,6 +349,7 @@ String nvim_get_current_line(Error *err)
|
|||||||
/// @param line Line contents
|
/// @param line Line contents
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_set_current_line(String line, Error *err)
|
void nvim_set_current_line(String line, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
buffer_set_line(curbuf->handle, curwin->w_cursor.lnum - 1, line, err);
|
buffer_set_line(curbuf->handle, curwin->w_cursor.lnum - 1, line, err);
|
||||||
}
|
}
|
||||||
@@ -347,6 +358,7 @@ void nvim_set_current_line(String line, Error *err)
|
|||||||
///
|
///
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_del_current_line(Error *err)
|
void nvim_del_current_line(Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
buffer_del_line(curbuf->handle, curwin->w_cursor.lnum - 1, err);
|
buffer_del_line(curbuf->handle, curwin->w_cursor.lnum - 1, err);
|
||||||
}
|
}
|
||||||
@@ -357,6 +369,7 @@ void nvim_del_current_line(Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Variable value
|
/// @return Variable value
|
||||||
Object nvim_get_var(String name, Error *err)
|
Object nvim_get_var(String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
return dict_get_value(&globvardict, name, err);
|
return dict_get_value(&globvardict, name, err);
|
||||||
}
|
}
|
||||||
@@ -367,6 +380,7 @@ Object nvim_get_var(String name, Error *err)
|
|||||||
/// @param value Variable value
|
/// @param value Variable value
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_set_var(String name, Object value, Error *err)
|
void nvim_set_var(String name, Object value, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
dict_set_var(&globvardict, name, value, false, false, err);
|
dict_set_var(&globvardict, name, value, false, false, err);
|
||||||
}
|
}
|
||||||
@@ -376,6 +390,7 @@ void nvim_set_var(String name, Object value, Error *err)
|
|||||||
/// @param name Variable name
|
/// @param name Variable name
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_del_var(String name, Error *err)
|
void nvim_del_var(String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
dict_set_var(&globvardict, name, NIL, true, false, err);
|
dict_set_var(&globvardict, name, NIL, true, false, err);
|
||||||
}
|
}
|
||||||
@@ -414,6 +429,7 @@ Object vim_del_var(String name, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Variable value
|
/// @return Variable value
|
||||||
Object nvim_get_vvar(String name, Error *err)
|
Object nvim_get_vvar(String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
return dict_get_value(&vimvardict, name, err);
|
return dict_get_value(&vimvardict, name, err);
|
||||||
}
|
}
|
||||||
@@ -424,6 +440,7 @@ Object nvim_get_vvar(String name, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Option value
|
/// @return Option value
|
||||||
Object nvim_get_option(String name, Error *err)
|
Object nvim_get_option(String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
return get_option_from(NULL, SREQ_GLOBAL, name, err);
|
return get_option_from(NULL, SREQ_GLOBAL, name, err);
|
||||||
}
|
}
|
||||||
@@ -434,6 +451,7 @@ Object nvim_get_option(String name, Error *err)
|
|||||||
/// @param value New option value
|
/// @param value New option value
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_set_option(String name, Object value, Error *err)
|
void nvim_set_option(String name, Object value, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
set_option_to(NULL, SREQ_GLOBAL, name, value, err);
|
set_option_to(NULL, SREQ_GLOBAL, name, value, err);
|
||||||
}
|
}
|
||||||
@@ -442,6 +460,7 @@ void nvim_set_option(String name, Object value, Error *err)
|
|||||||
///
|
///
|
||||||
/// @param str Message
|
/// @param str Message
|
||||||
void nvim_out_write(String str)
|
void nvim_out_write(String str)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
write_msg(str, false);
|
write_msg(str, false);
|
||||||
}
|
}
|
||||||
@@ -450,6 +469,7 @@ void nvim_out_write(String str)
|
|||||||
///
|
///
|
||||||
/// @param str Message
|
/// @param str Message
|
||||||
void nvim_err_write(String str)
|
void nvim_err_write(String str)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
write_msg(str, true);
|
write_msg(str, true);
|
||||||
}
|
}
|
||||||
@@ -460,6 +480,7 @@ void nvim_err_write(String str)
|
|||||||
/// @param str Message
|
/// @param str Message
|
||||||
/// @see nvim_err_write()
|
/// @see nvim_err_write()
|
||||||
void nvim_err_writeln(String str)
|
void nvim_err_writeln(String str)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
nvim_err_write(str);
|
nvim_err_write(str);
|
||||||
nvim_err_write((String) { .data = "\n", .size = 1 });
|
nvim_err_write((String) { .data = "\n", .size = 1 });
|
||||||
@@ -469,6 +490,7 @@ void nvim_err_writeln(String str)
|
|||||||
///
|
///
|
||||||
/// @return List of buffer handles
|
/// @return List of buffer handles
|
||||||
ArrayOf(Buffer) nvim_list_bufs(void)
|
ArrayOf(Buffer) nvim_list_bufs(void)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Array rv = ARRAY_DICT_INIT;
|
Array rv = ARRAY_DICT_INIT;
|
||||||
|
|
||||||
@@ -490,6 +512,7 @@ ArrayOf(Buffer) nvim_list_bufs(void)
|
|||||||
///
|
///
|
||||||
/// @return Buffer handle
|
/// @return Buffer handle
|
||||||
Buffer nvim_get_current_buf(void)
|
Buffer nvim_get_current_buf(void)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
return curbuf->handle;
|
return curbuf->handle;
|
||||||
}
|
}
|
||||||
@@ -499,6 +522,7 @@ Buffer nvim_get_current_buf(void)
|
|||||||
/// @param id Buffer handle
|
/// @param id Buffer handle
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_set_current_buf(Buffer buffer, Error *err)
|
void nvim_set_current_buf(Buffer buffer, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
buf_T *buf = find_buffer_by_handle(buffer, err);
|
buf_T *buf = find_buffer_by_handle(buffer, err);
|
||||||
|
|
||||||
@@ -520,6 +544,7 @@ void nvim_set_current_buf(Buffer buffer, Error *err)
|
|||||||
///
|
///
|
||||||
/// @return List of window handles
|
/// @return List of window handles
|
||||||
ArrayOf(Window) nvim_list_wins(void)
|
ArrayOf(Window) nvim_list_wins(void)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Array rv = ARRAY_DICT_INIT;
|
Array rv = ARRAY_DICT_INIT;
|
||||||
|
|
||||||
@@ -541,6 +566,7 @@ ArrayOf(Window) nvim_list_wins(void)
|
|||||||
///
|
///
|
||||||
/// @return Window handle
|
/// @return Window handle
|
||||||
Window nvim_get_current_win(void)
|
Window nvim_get_current_win(void)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
return curwin->handle;
|
return curwin->handle;
|
||||||
}
|
}
|
||||||
@@ -549,6 +575,7 @@ Window nvim_get_current_win(void)
|
|||||||
///
|
///
|
||||||
/// @param handle Window handle
|
/// @param handle Window handle
|
||||||
void nvim_set_current_win(Window window, Error *err)
|
void nvim_set_current_win(Window window, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
|
|
||||||
@@ -570,6 +597,7 @@ void nvim_set_current_win(Window window, Error *err)
|
|||||||
///
|
///
|
||||||
/// @return List of tabpage handles
|
/// @return List of tabpage handles
|
||||||
ArrayOf(Tabpage) nvim_list_tabpages(void)
|
ArrayOf(Tabpage) nvim_list_tabpages(void)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Array rv = ARRAY_DICT_INIT;
|
Array rv = ARRAY_DICT_INIT;
|
||||||
|
|
||||||
@@ -591,6 +619,7 @@ ArrayOf(Tabpage) nvim_list_tabpages(void)
|
|||||||
///
|
///
|
||||||
/// @return Tabpage handle
|
/// @return Tabpage handle
|
||||||
Tabpage nvim_get_current_tabpage(void)
|
Tabpage nvim_get_current_tabpage(void)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
return curtab->handle;
|
return curtab->handle;
|
||||||
}
|
}
|
||||||
@@ -600,6 +629,7 @@ Tabpage nvim_get_current_tabpage(void)
|
|||||||
/// @param handle Tabpage handle
|
/// @param handle Tabpage handle
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_set_current_tabpage(Tabpage tabpage, Error *err)
|
void nvim_set_current_tabpage(Tabpage tabpage, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
tabpage_T *tp = find_tab_by_handle(tabpage, err);
|
tabpage_T *tp = find_tab_by_handle(tabpage, err);
|
||||||
|
|
||||||
@@ -622,7 +652,7 @@ void nvim_set_current_tabpage(Tabpage tabpage, Error *err)
|
|||||||
/// @param channel_id Channel id (passed automatically by the dispatcher)
|
/// @param channel_id Channel id (passed automatically by the dispatcher)
|
||||||
/// @param event Event type string
|
/// @param event Event type string
|
||||||
void nvim_subscribe(uint64_t channel_id, String event)
|
void nvim_subscribe(uint64_t channel_id, String event)
|
||||||
FUNC_API_NOEVAL
|
FUNC_API_SINCE(1) FUNC_API_NOEVAL
|
||||||
{
|
{
|
||||||
size_t length = (event.size < METHOD_MAXLEN ? event.size : METHOD_MAXLEN);
|
size_t length = (event.size < METHOD_MAXLEN ? event.size : METHOD_MAXLEN);
|
||||||
char e[METHOD_MAXLEN + 1];
|
char e[METHOD_MAXLEN + 1];
|
||||||
@@ -636,7 +666,7 @@ void nvim_subscribe(uint64_t channel_id, String event)
|
|||||||
/// @param channel_id Channel id (passed automatically by the dispatcher)
|
/// @param channel_id Channel id (passed automatically by the dispatcher)
|
||||||
/// @param event Event type string
|
/// @param event Event type string
|
||||||
void nvim_unsubscribe(uint64_t channel_id, String event)
|
void nvim_unsubscribe(uint64_t channel_id, String event)
|
||||||
FUNC_API_NOEVAL
|
FUNC_API_SINCE(1) FUNC_API_NOEVAL
|
||||||
{
|
{
|
||||||
size_t length = (event.size < METHOD_MAXLEN ?
|
size_t length = (event.size < METHOD_MAXLEN ?
|
||||||
event.size :
|
event.size :
|
||||||
@@ -648,11 +678,13 @@ void nvim_unsubscribe(uint64_t channel_id, String event)
|
|||||||
}
|
}
|
||||||
|
|
||||||
Integer nvim_get_color_by_name(String name)
|
Integer nvim_get_color_by_name(String name)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
return name_to_color((uint8_t *)name.data);
|
return name_to_color((uint8_t *)name.data);
|
||||||
}
|
}
|
||||||
|
|
||||||
Dictionary nvim_get_color_map(void)
|
Dictionary nvim_get_color_map(void)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Dictionary colors = ARRAY_DICT_INIT;
|
Dictionary colors = ARRAY_DICT_INIT;
|
||||||
|
|
||||||
@@ -665,7 +697,7 @@ Dictionary nvim_get_color_map(void)
|
|||||||
|
|
||||||
|
|
||||||
Array nvim_get_api_info(uint64_t channel_id)
|
Array nvim_get_api_info(uint64_t channel_id)
|
||||||
FUNC_API_ASYNC FUNC_API_NOEVAL
|
FUNC_API_SINCE(1) FUNC_API_ASYNC FUNC_API_NOEVAL
|
||||||
{
|
{
|
||||||
Array rv = ARRAY_DICT_INIT;
|
Array rv = ARRAY_DICT_INIT;
|
||||||
|
|
||||||
@@ -698,7 +730,7 @@ Array nvim_get_api_info(uint64_t channel_id)
|
|||||||
/// which resulted in an error, the error type and the error message. If an
|
/// which resulted in an error, the error type and the error message. If an
|
||||||
/// error ocurred, the values from all preceding calls will still be returned.
|
/// error ocurred, the values from all preceding calls will still be returned.
|
||||||
Array nvim_call_atomic(uint64_t channel_id, Array calls, Error *err)
|
Array nvim_call_atomic(uint64_t channel_id, Array calls, Error *err)
|
||||||
FUNC_API_NOEVAL
|
FUNC_API_SINCE(1) FUNC_API_NOEVAL
|
||||||
{
|
{
|
||||||
Array rv = ARRAY_DICT_INIT;
|
Array rv = ARRAY_DICT_INIT;
|
||||||
Array results = ARRAY_DICT_INIT;
|
Array results = ARRAY_DICT_INIT;
|
||||||
|
@@ -19,6 +19,7 @@
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Buffer handle
|
/// @return Buffer handle
|
||||||
Buffer nvim_win_get_buf(Window window, Error *err)
|
Buffer nvim_win_get_buf(Window window, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
|
|
||||||
@@ -35,6 +36,7 @@ Buffer nvim_win_get_buf(Window window, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return (row, col) tuple
|
/// @return (row, col) tuple
|
||||||
ArrayOf(Integer, 2) nvim_win_get_cursor(Window window, Error *err)
|
ArrayOf(Integer, 2) nvim_win_get_cursor(Window window, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Array rv = ARRAY_DICT_INIT;
|
Array rv = ARRAY_DICT_INIT;
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
@@ -53,6 +55,7 @@ ArrayOf(Integer, 2) nvim_win_get_cursor(Window window, Error *err)
|
|||||||
/// @param pos (row, col) tuple representing the new position
|
/// @param pos (row, col) tuple representing the new position
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_win_set_cursor(Window window, ArrayOf(Integer, 2) pos, Error *err)
|
void nvim_win_set_cursor(Window window, ArrayOf(Integer, 2) pos, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
|
|
||||||
@@ -99,6 +102,7 @@ void nvim_win_set_cursor(Window window, ArrayOf(Integer, 2) pos, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Height as a count of rows
|
/// @return Height as a count of rows
|
||||||
Integer nvim_win_get_height(Window window, Error *err)
|
Integer nvim_win_get_height(Window window, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
|
|
||||||
@@ -116,6 +120,7 @@ Integer nvim_win_get_height(Window window, Error *err)
|
|||||||
/// @param height Height as a count of rows
|
/// @param height Height as a count of rows
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_win_set_height(Window window, Integer height, Error *err)
|
void nvim_win_set_height(Window window, Integer height, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
|
|
||||||
@@ -142,6 +147,7 @@ void nvim_win_set_height(Window window, Integer height, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Width as a count of columns
|
/// @return Width as a count of columns
|
||||||
Integer nvim_win_get_width(Window window, Error *err)
|
Integer nvim_win_get_width(Window window, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
|
|
||||||
@@ -159,6 +165,7 @@ Integer nvim_win_get_width(Window window, Error *err)
|
|||||||
/// @param width Width as a count of columns
|
/// @param width Width as a count of columns
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_win_set_width(Window window, Integer width, Error *err)
|
void nvim_win_set_width(Window window, Integer width, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
|
|
||||||
@@ -186,6 +193,7 @@ void nvim_win_set_width(Window window, Integer width, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Variable value
|
/// @return Variable value
|
||||||
Object nvim_win_get_var(Window window, String name, Error *err)
|
Object nvim_win_get_var(Window window, String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
|
|
||||||
@@ -203,6 +211,7 @@ Object nvim_win_get_var(Window window, String name, Error *err)
|
|||||||
/// @param value Variable value
|
/// @param value Variable value
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_win_set_var(Window window, String name, Object value, Error *err)
|
void nvim_win_set_var(Window window, String name, Object value, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
|
|
||||||
@@ -219,6 +228,7 @@ void nvim_win_set_var(Window window, String name, Object value, Error *err)
|
|||||||
/// @param name Variable name
|
/// @param name Variable name
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_win_del_var(Window window, String name, Error *err)
|
void nvim_win_del_var(Window window, String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
|
|
||||||
@@ -278,6 +288,7 @@ Object window_del_var(Window window, String name, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Option value
|
/// @return Option value
|
||||||
Object nvim_win_get_option(Window window, String name, Error *err)
|
Object nvim_win_get_option(Window window, String name, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
|
|
||||||
@@ -296,6 +307,7 @@ Object nvim_win_get_option(Window window, String name, Error *err)
|
|||||||
/// @param value Option value
|
/// @param value Option value
|
||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
void nvim_win_set_option(Window window, String name, Object value, Error *err)
|
void nvim_win_set_option(Window window, String name, Object value, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
|
|
||||||
@@ -312,6 +324,7 @@ void nvim_win_set_option(Window window, String name, Object value, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return (row, col) tuple with the window position
|
/// @return (row, col) tuple with the window position
|
||||||
ArrayOf(Integer, 2) nvim_win_get_position(Window window, Error *err)
|
ArrayOf(Integer, 2) nvim_win_get_position(Window window, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Array rv = ARRAY_DICT_INIT;
|
Array rv = ARRAY_DICT_INIT;
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
@@ -330,6 +343,7 @@ ArrayOf(Integer, 2) nvim_win_get_position(Window window, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Tabpage that contains the window
|
/// @return Tabpage that contains the window
|
||||||
Tabpage nvim_win_get_tabpage(Window window, Error *err)
|
Tabpage nvim_win_get_tabpage(Window window, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Tabpage rv = 0;
|
Tabpage rv = 0;
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
@@ -347,6 +361,7 @@ Tabpage nvim_win_get_tabpage(Window window, Error *err)
|
|||||||
/// @param[out] err Error details, if any
|
/// @param[out] err Error details, if any
|
||||||
/// @return Window number
|
/// @return Window number
|
||||||
Integer nvim_win_get_number(Window window, Error *err)
|
Integer nvim_win_get_number(Window window, Error *err)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
int rv = 0;
|
int rv = 0;
|
||||||
win_T *win = find_window_by_handle(window, err);
|
win_T *win = find_window_by_handle(window, err);
|
||||||
@@ -366,6 +381,7 @@ Integer nvim_win_get_number(Window window, Error *err)
|
|||||||
/// @param window Window handle
|
/// @param window Window handle
|
||||||
/// @return true if the window is valid, false otherwise
|
/// @return true if the window is valid, false otherwise
|
||||||
Boolean nvim_win_is_valid(Window window)
|
Boolean nvim_win_is_valid(Window window)
|
||||||
|
FUNC_API_SINCE(1)
|
||||||
{
|
{
|
||||||
Error stub = ERROR_INIT;
|
Error stub = ERROR_INIT;
|
||||||
return find_window_by_handle(window, &stub) != NULL;
|
return find_window_by_handle(window, &stub) != NULL;
|
||||||
|
@@ -186,6 +186,7 @@
|
|||||||
# define FUNC_API_ASYNC
|
# define FUNC_API_ASYNC
|
||||||
# define FUNC_API_NOEXPORT
|
# define FUNC_API_NOEXPORT
|
||||||
# define FUNC_API_NOEVAL
|
# define FUNC_API_NOEVAL
|
||||||
|
# define FUNC_API_SINCE(X)
|
||||||
# define FUNC_ATTR_MALLOC REAL_FATTR_MALLOC
|
# define FUNC_ATTR_MALLOC REAL_FATTR_MALLOC
|
||||||
# define FUNC_ATTR_ALLOC_SIZE(x) REAL_FATTR_ALLOC_SIZE(x)
|
# define FUNC_ATTR_ALLOC_SIZE(x) REAL_FATTR_ALLOC_SIZE(x)
|
||||||
# define FUNC_ATTR_ALLOC_SIZE_PROD(x, y) REAL_FATTR_ALLOC_SIZE_PROD(x, y)
|
# define FUNC_ATTR_ALLOC_SIZE_PROD(x, y) REAL_FATTR_ALLOC_SIZE_PROD(x, y)
|
||||||
|
Reference in New Issue
Block a user