mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
lint
This commit is contained in:
parent
d82688973d
commit
f0ccac0ba4
@ -3041,9 +3041,10 @@ const char * set_one_cmd_context(
|
|||||||
p = arg + 1;
|
p = arg + 1;
|
||||||
arg = (const char *)skip_cmd_arg((char_u *)arg, false);
|
arg = (const char *)skip_cmd_arg((char_u *)arg, false);
|
||||||
|
|
||||||
/* Still touching the command after '+'? */
|
// Still touching the command after '+'?
|
||||||
if (*arg == NUL)
|
if (*arg == NUL) {
|
||||||
return p;
|
return p;
|
||||||
|
}
|
||||||
|
|
||||||
// Skip space(s) after +command to get to the real argument.
|
// Skip space(s) after +command to get to the real argument.
|
||||||
arg = (const char *)skipwhite((const char_u *)arg);
|
arg = (const char *)skipwhite((const char_u *)arg);
|
||||||
@ -5405,8 +5406,8 @@ static int uc_scan_attr(char_u *attr, size_t len, uint32_t *argt, long *def,
|
|||||||
size_t vallen = 0;
|
size_t vallen = 0;
|
||||||
size_t attrlen = len;
|
size_t attrlen = len;
|
||||||
|
|
||||||
/* Look for the attribute name - which is the part before any '=' */
|
// Look for the attribute name - which is the part before any '='
|
||||||
for (i = 0; i < (int)len; ++i) {
|
for (i = 0; i < (int)len; i++) {
|
||||||
if (attr[i] == '=') {
|
if (attr[i] == '=') {
|
||||||
val = &attr[i + 1];
|
val = &attr[i + 1];
|
||||||
vallen = len - i - 1;
|
vallen = len - i - 1;
|
||||||
@ -7508,8 +7509,9 @@ static void ex_read(exarg_T *eap)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (*eap->arg == NUL) {
|
if (*eap->arg == NUL) {
|
||||||
if (check_fname() == FAIL) /* check for no file name */
|
if (check_fname() == FAIL) { // check for no file name
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
i = readfile(curbuf->b_ffname, curbuf->b_fname,
|
i = readfile(curbuf->b_ffname, curbuf->b_fname,
|
||||||
eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
|
eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
|
||||||
} else {
|
} else {
|
||||||
|
@ -1292,7 +1292,10 @@ static void nlua_add_treesitter(lua_State *const lstate) FUNC_ATTR_NONNULL_ALL
|
|||||||
lua_setfield(lstate, -2, "_ts_parse_query");
|
lua_setfield(lstate, -2, "_ts_parse_query");
|
||||||
}
|
}
|
||||||
|
|
||||||
int nlua_expand_pat(expand_T *xp, char_u *pat, int *num_results, char_u ***results)
|
int nlua_expand_pat(expand_T *xp,
|
||||||
|
char_u *pat,
|
||||||
|
int *num_results,
|
||||||
|
char_u ***results)
|
||||||
{
|
{
|
||||||
lua_State *const lstate = nlua_enter();
|
lua_State *const lstate = nlua_enter();
|
||||||
int ret = OK;
|
int ret = OK;
|
||||||
|
@ -2,7 +2,6 @@ local helpers = require('test.functional.helpers')(after_each)
|
|||||||
|
|
||||||
local clear = helpers.clear
|
local clear = helpers.clear
|
||||||
local eq = helpers.eq
|
local eq = helpers.eq
|
||||||
local funcs = helpers.funcs
|
|
||||||
local exec_lua = helpers.exec_lua
|
local exec_lua = helpers.exec_lua
|
||||||
|
|
||||||
local get_completions = function(input, env)
|
local get_completions = function(input, env)
|
||||||
|
Loading…
Reference in New Issue
Block a user