mirror of
https://github.com/neovim/neovim.git
synced 2025-09-09 12:58:16 +00:00
Merge #10038 from janlazo/vim-8.0.1514
vim-patch:8.0.{1514,1519},8.1.1360
This commit is contained in:
@@ -2081,6 +2081,7 @@ getbufline({expr}, {lnum} [, {end}])
|
|||||||
List lines {lnum} to {end} of buffer {expr}
|
List lines {lnum} to {end} of buffer {expr}
|
||||||
getbufvar({expr}, {varname} [, {def}])
|
getbufvar({expr}, {varname} [, {def}])
|
||||||
any variable {varname} in buffer {expr}
|
any variable {varname} in buffer {expr}
|
||||||
|
getchangelist({expr}) List list of change list items
|
||||||
getchar([expr]) Number get one character from the user
|
getchar([expr]) Number get one character from the user
|
||||||
getcharmod() Number modifiers for the last typed character
|
getcharmod() Number modifiers for the last typed character
|
||||||
getcharsearch() Dict last character search
|
getcharsearch() Dict last character search
|
||||||
@@ -4013,6 +4014,22 @@ getbufvar({expr}, {varname} [, {def}]) *getbufvar()*
|
|||||||
:let bufmodified = getbufvar(1, "&mod")
|
:let bufmodified = getbufvar(1, "&mod")
|
||||||
:echo "todo myvar = " . getbufvar("todo", "myvar")
|
:echo "todo myvar = " . getbufvar("todo", "myvar")
|
||||||
<
|
<
|
||||||
|
getchangelist({expr}) *getchangelist()*
|
||||||
|
Returns the |changelist| for the buffer {expr}. For the use
|
||||||
|
of {expr}, see |bufname()| above. If buffer {expr} doesn't
|
||||||
|
exist, an empty list is returned.
|
||||||
|
|
||||||
|
The returned list contains two entries: a list with the change
|
||||||
|
locations and the current position in the list. Each
|
||||||
|
entry in the change list is a dictionary with the following
|
||||||
|
entries:
|
||||||
|
col column number
|
||||||
|
coladd column offset for 'virtualedit'
|
||||||
|
lnum line number
|
||||||
|
If buffer {expr} is the current buffer, then the current
|
||||||
|
position refers to the position in the list. For other
|
||||||
|
buffers, it is set to the length of the list.
|
||||||
|
|
||||||
getchar([expr]) *getchar()*
|
getchar([expr]) *getchar()*
|
||||||
Get a single character from the user or input stream.
|
Get a single character from the user or input stream.
|
||||||
If [expr] is omitted, wait until a character is available.
|
If [expr] is omitted, wait until a character is available.
|
||||||
|
@@ -806,6 +806,7 @@ Buffers, windows and the argument list:
|
|||||||
getbufinfo() get a list with buffer information
|
getbufinfo() get a list with buffer information
|
||||||
gettabinfo() get a list with tab page information
|
gettabinfo() get a list with tab page information
|
||||||
getwininfo() get a list with window information
|
getwininfo() get a list with window information
|
||||||
|
getchangelist() get a list of change list entries
|
||||||
getjumplist() get a list of jump list entries
|
getjumplist() get a list of jump list entries
|
||||||
|
|
||||||
Command line: *command-line-functions*
|
Command line: *command-line-functions*
|
||||||
|
@@ -9547,6 +9547,40 @@ f_getbufvar_end:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// "getchangelist()" function
|
||||||
|
static void f_getchangelist(typval_T *argvars, typval_T *rettv, FunPtr fptr)
|
||||||
|
{
|
||||||
|
tv_list_alloc_ret(rettv, 2);
|
||||||
|
vim_ignored = tv_get_number(&argvars[0]); // issue errmsg if type error
|
||||||
|
emsg_off++;
|
||||||
|
const buf_T *const buf = tv_get_buf(&argvars[0], false);
|
||||||
|
emsg_off--;
|
||||||
|
if (buf == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
list_T *const l = tv_list_alloc(buf->b_changelistlen);
|
||||||
|
tv_list_append_list(rettv->vval.v_list, l);
|
||||||
|
// The current window change list index tracks only the position in the
|
||||||
|
// current buffer change list. For other buffers, use the change list
|
||||||
|
// length as the current index.
|
||||||
|
tv_list_append_number(rettv->vval.v_list,
|
||||||
|
(buf == curwin->w_buffer)
|
||||||
|
? curwin->w_changelistidx
|
||||||
|
: buf->b_changelistlen);
|
||||||
|
|
||||||
|
for (int i = 0; i < buf->b_changelistlen; i++) {
|
||||||
|
if (buf->b_changelist[i].mark.lnum == 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
dict_T *const d = tv_dict_alloc();
|
||||||
|
tv_list_append_dict(l, d);
|
||||||
|
tv_dict_add_nr(d, S_LEN("lnum"), buf->b_changelist[i].mark.lnum);
|
||||||
|
tv_dict_add_nr(d, S_LEN("col"), buf->b_changelist[i].mark.col);
|
||||||
|
tv_dict_add_nr(d, S_LEN("coladd"), buf->b_changelist[i].mark.coladd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* "getchar()" function
|
* "getchar()" function
|
||||||
*/
|
*/
|
||||||
|
@@ -116,6 +116,7 @@ return {
|
|||||||
getbufinfo={args={0, 1}},
|
getbufinfo={args={0, 1}},
|
||||||
getbufline={args={2, 3}},
|
getbufline={args={2, 3}},
|
||||||
getbufvar={args={2, 3}},
|
getbufvar={args={2, 3}},
|
||||||
|
getchangelist={args={1, 1}},
|
||||||
getchar={args={0, 1}},
|
getchar={args={0, 1}},
|
||||||
getcharmod={},
|
getcharmod={},
|
||||||
getcharsearch={},
|
getcharsearch={},
|
||||||
|
@@ -3817,6 +3817,7 @@ static buf_T *do_sub(exarg_T *eap, proftime_T timeout,
|
|||||||
// 3. Substitute the string. During 'inccommand' preview only do this if
|
// 3. Substitute the string. During 'inccommand' preview only do this if
|
||||||
// there is a replace pattern.
|
// there is a replace pattern.
|
||||||
if (!preview || has_second_delim) {
|
if (!preview || has_second_delim) {
|
||||||
|
save_ma = curbuf->b_p_ma;
|
||||||
if (subflags.do_count) {
|
if (subflags.do_count) {
|
||||||
// prevent accidentally changing the buffer by a function
|
// prevent accidentally changing the buffer by a function
|
||||||
curbuf->b_p_ma = false;
|
curbuf->b_p_ma = false;
|
||||||
|
48
src/nvim/testdir/test_changelist.vim
Normal file
48
src/nvim/testdir/test_changelist.vim
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
" Tests for the changelist functionality
|
||||||
|
|
||||||
|
" Tests for the getchangelist() function
|
||||||
|
func Test_getchangelist()
|
||||||
|
if !has("jumplist")
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
|
||||||
|
bwipe!
|
||||||
|
enew
|
||||||
|
call assert_equal([], getchangelist(10))
|
||||||
|
call assert_equal([[], 0], getchangelist('%'))
|
||||||
|
|
||||||
|
call writefile(['line1', 'line2', 'line3'], 'Xfile1.txt')
|
||||||
|
call writefile(['line1', 'line2', 'line3'], 'Xfile2.txt')
|
||||||
|
|
||||||
|
edit Xfile1.txt
|
||||||
|
exe "normal 1Goline\<C-G>u1.1"
|
||||||
|
exe "normal 3Goline\<C-G>u2.1"
|
||||||
|
exe "normal 5Goline\<C-G>u3.1"
|
||||||
|
normal g;
|
||||||
|
call assert_equal([[
|
||||||
|
\ {'lnum' : 2, 'col' : 4, 'coladd' : 0},
|
||||||
|
\ {'lnum' : 4, 'col' : 4, 'coladd' : 0},
|
||||||
|
\ {'lnum' : 6, 'col' : 4, 'coladd' : 0}], 2],
|
||||||
|
\ getchangelist('%'))
|
||||||
|
|
||||||
|
hide edit Xfile2.txt
|
||||||
|
exe "normal 1GOline\<C-G>u1.0"
|
||||||
|
exe "normal 2Goline\<C-G>u2.0"
|
||||||
|
call assert_equal([[
|
||||||
|
\ {'lnum' : 1, 'col' : 6, 'coladd' : 0},
|
||||||
|
\ {'lnum' : 3, 'col' : 6, 'coladd' : 0}], 2],
|
||||||
|
\ getchangelist('%'))
|
||||||
|
hide enew
|
||||||
|
|
||||||
|
call assert_equal([[
|
||||||
|
\ {'lnum' : 2, 'col' : 4, 'coladd' : 0},
|
||||||
|
\ {'lnum' : 4, 'col' : 4, 'coladd' : 0},
|
||||||
|
\ {'lnum' : 6, 'col' : 4, 'coladd' : 0}], 3], getchangelist(2))
|
||||||
|
call assert_equal([[
|
||||||
|
\ {'lnum' : 1, 'col' : 6, 'coladd' : 0},
|
||||||
|
\ {'lnum' : 3, 'col' : 6, 'coladd' : 0}], 2], getchangelist(3))
|
||||||
|
|
||||||
|
bwipe!
|
||||||
|
call delete('Xfile1.txt')
|
||||||
|
call delete('Xfile2.txt')
|
||||||
|
endfunc
|
@@ -612,9 +612,24 @@ func Test_sub_replace_10()
|
|||||||
call assert_equal('1aaa', substitute('123', '1\zs\|[23]', 'a', 'g'))
|
call assert_equal('1aaa', substitute('123', '1\zs\|[23]', 'a', 'g'))
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
func Test_sub_cmd_9()
|
||||||
|
new
|
||||||
|
let input = ['1 aaa', '2 aaa', '3 aaa']
|
||||||
|
call setline(1, input)
|
||||||
|
func Foo()
|
||||||
|
return submatch(0)
|
||||||
|
endfunc
|
||||||
|
%s/aaa/\=Foo()/gn
|
||||||
|
call assert_equal(input, getline(1, '$'))
|
||||||
|
call assert_equal(1, &modifiable)
|
||||||
|
|
||||||
|
delfunc Foo
|
||||||
|
bw!
|
||||||
|
endfunc
|
||||||
|
|
||||||
func Test_nocatch_sub_failure_handling()
|
func Test_nocatch_sub_failure_handling()
|
||||||
" normal error results in all replacements
|
" normal error results in all replacements
|
||||||
func! Foo()
|
func Foo()
|
||||||
foobar
|
foobar
|
||||||
endfunc
|
endfunc
|
||||||
new
|
new
|
||||||
@@ -650,6 +665,7 @@ func Test_nocatch_sub_failure_handling()
|
|||||||
call assert_equal(1, error_caught)
|
call assert_equal(1, error_caught)
|
||||||
call assert_equal(['1 aaa', '2 aaa', '3 aaa'], getline(1, 3))
|
call assert_equal(['1 aaa', '2 aaa', '3 aaa'], getline(1, 3))
|
||||||
|
|
||||||
|
delfunc Foo
|
||||||
bwipe!
|
bwipe!
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user