mirror of
https://github.com/neovim/neovim.git
synced 2025-09-13 06:48:17 +00:00
vim-patch:8.0.1093: various small quickfix issues
Problem: Various small quickfix issues.
Solution: Remove ":" prefix from title set by a user. Add the qf_id2nr().
function. Add a couple more tests. Update documentation.
(Yegappan Lakshmanan)
b4d5fbabc9
This commit is contained in:
@@ -1412,7 +1412,7 @@ v:beval_text The text under or after the mouse pointer. Usually a word as
|
|||||||
but a dot and "->" before the position is included. When on a
|
but a dot and "->" before the position is included. When on a
|
||||||
']' the text before it is used, including the matching '[' and
|
']' the text before it is used, including the matching '[' and
|
||||||
word before it. When on a Visual area within one line the
|
word before it. When on a Visual area within one line the
|
||||||
highlighted text is used.
|
highlighted text is used. Also see |<cexpr>|.
|
||||||
Only valid while evaluating the 'balloonexpr' option.
|
Only valid while evaluating the 'balloonexpr' option.
|
||||||
|
|
||||||
*v:beval_winnr* *beval_winnr-variable*
|
*v:beval_winnr* *beval_winnr-variable*
|
||||||
@@ -3270,7 +3270,7 @@ escape({string}, {chars}) *escape()*
|
|||||||
:echo escape('c:\program files\vim', ' \')
|
:echo escape('c:\program files\vim', ' \')
|
||||||
< results in: >
|
< results in: >
|
||||||
c:\\program\ files\\vim
|
c:\\program\ files\\vim
|
||||||
< Also see |shellescape()|.
|
< Also see |shellescape()| and |fnameescape()|.
|
||||||
|
|
||||||
*eval()*
|
*eval()*
|
||||||
eval({string}) Evaluate {string} and return the result. Especially useful to
|
eval({string}) Evaluate {string} and return the result. Especially useful to
|
||||||
@@ -3680,7 +3680,7 @@ float2nr({expr}) *float2nr()*
|
|||||||
When the value of {expr} is out of range for a |Number| the
|
When the value of {expr} is out of range for a |Number| the
|
||||||
result is truncated to 0x7fffffff or -0x7fffffff (or when
|
result is truncated to 0x7fffffff or -0x7fffffff (or when
|
||||||
64-bit Number support is enabled, 0x7fffffffffffffff or
|
64-bit Number support is enabled, 0x7fffffffffffffff or
|
||||||
-0x7fffffffffffffff. NaN results in -0x80000000 (or when
|
-0x7fffffffffffffff). NaN results in -0x80000000 (or when
|
||||||
64-bit Number support is enabled, -0x8000000000000000).
|
64-bit Number support is enabled, -0x8000000000000000).
|
||||||
Examples: >
|
Examples: >
|
||||||
echo float2nr(3.95)
|
echo float2nr(3.95)
|
||||||
@@ -6933,6 +6933,7 @@ setline({lnum}, {text}) *setline()*
|
|||||||
:for [n, l] in [[5, 'aaa'], [6, 'bbb'], [7, 'ccc']]
|
:for [n, l] in [[5, 'aaa'], [6, 'bbb'], [7, 'ccc']]
|
||||||
: call setline(n, l)
|
: call setline(n, l)
|
||||||
:endfor
|
:endfor
|
||||||
|
|
||||||
< Note: The '[ and '] marks are not set.
|
< Note: The '[ and '] marks are not set.
|
||||||
|
|
||||||
setloclist({nr}, {list} [, {action}[, {what}]]) *setloclist()*
|
setloclist({nr}, {list} [, {action}[, {what}]]) *setloclist()*
|
||||||
@@ -7137,16 +7138,17 @@ setreg({regname}, {value} [, {options}])
|
|||||||
:call setreg('a', "1\n2\n3", 'b5')
|
:call setreg('a', "1\n2\n3", 'b5')
|
||||||
|
|
||||||
< This example shows using the functions to save and restore a
|
< This example shows using the functions to save and restore a
|
||||||
register (note: you may not reliably restore register value
|
register: >
|
||||||
without using the third argument to |getreg()| as without it
|
|
||||||
newlines are represented as newlines AND Nul bytes are
|
|
||||||
represented as newlines as well, see |NL-used-for-Nul|). >
|
|
||||||
:let var_a = getreg('a', 1, 1)
|
:let var_a = getreg('a', 1, 1)
|
||||||
:let var_amode = getregtype('a')
|
:let var_amode = getregtype('a')
|
||||||
....
|
....
|
||||||
:call setreg('a', var_a, var_amode)
|
:call setreg('a', var_a, var_amode)
|
||||||
|
< Note: you may not reliably restore register value
|
||||||
|
without using the third argument to |getreg()| as without it
|
||||||
|
newlines are represented as newlines AND Nul bytes are
|
||||||
|
represented as newlines as well, see |NL-used-for-Nul|.
|
||||||
|
|
||||||
< You can also change the type of a register by appending
|
You can also change the type of a register by appending
|
||||||
nothing: >
|
nothing: >
|
||||||
:call setreg('a', '', 'al')
|
:call setreg('a', '', 'al')
|
||||||
|
|
||||||
@@ -8343,7 +8345,7 @@ win_getid([{win} [, {tab}]]) *win_getid()*
|
|||||||
Get the |window-ID| for the specified window.
|
Get the |window-ID| for the specified window.
|
||||||
When {win} is missing use the current window.
|
When {win} is missing use the current window.
|
||||||
With {win} this is the window number. The top window has
|
With {win} this is the window number. The top window has
|
||||||
number 1.
|
number 1. Use `win_getid(winnr())` for the current window.
|
||||||
Without {tab} use the current tab, otherwise the tab with
|
Without {tab} use the current tab, otherwise the tab with
|
||||||
number {tab}. The first tab has number one.
|
number {tab}. The first tab has number one.
|
||||||
Return zero if the window cannot be found.
|
Return zero if the window cannot be found.
|
||||||
|
@@ -10065,7 +10065,7 @@ static void get_qf_loc_list(int is_qf, win_T *wp, typval_T *what_arg,
|
|||||||
dict_T *d = what_arg->vval.v_dict;
|
dict_T *d = what_arg->vval.v_dict;
|
||||||
|
|
||||||
if (d != NULL) {
|
if (d != NULL) {
|
||||||
get_errorlist_properties(wp, d, rettv->vval.v_dict);
|
qf_get_properties(wp, d, rettv->vval.v_dict);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
EMSG(_(e_dictreq));
|
EMSG(_(e_dictreq));
|
||||||
|
@@ -4243,10 +4243,22 @@ static int qf_get_list_from_lines(dict_T *what, dictitem_T *di, dict_T *retdict)
|
|||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Return the quickfix/location list number with the given identifier.
|
||||||
|
// Returns -1 if list is not found.
|
||||||
|
static int qf_id2nr(const qf_info_T *const qi, const unsigned qfid)
|
||||||
|
{
|
||||||
|
for (int qf_idx = 0; qf_idx < qi->qf_listcount; qf_idx++) {
|
||||||
|
if (qi->qf_lists[qf_idx].qf_id == qfid) {
|
||||||
|
return qf_idx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
/// Return quickfix/location list details (title) as a
|
/// Return quickfix/location list details (title) as a
|
||||||
/// dictionary. 'what' contains the details to return. If 'list_idx' is -1,
|
/// dictionary. 'what' contains the details to return. If 'list_idx' is -1,
|
||||||
/// then current list is used. Otherwise the specified list is used.
|
/// then current list is used. Otherwise the specified list is used.
|
||||||
int get_errorlist_properties(win_T *wp, dict_T *what, dict_T *retdict)
|
int qf_get_properties(win_T *wp, dict_T *what, dict_T *retdict)
|
||||||
{
|
{
|
||||||
qf_info_T *qi = &ql_info;
|
qf_info_T *qi = &ql_info;
|
||||||
dictitem_T *di;
|
dictitem_T *di;
|
||||||
@@ -4298,12 +4310,8 @@ int get_errorlist_properties(win_T *wp, dict_T *what, dict_T *retdict)
|
|||||||
if (di->di_tv.v_type == VAR_NUMBER) {
|
if (di->di_tv.v_type == VAR_NUMBER) {
|
||||||
// For zero, use the current list or the list specifed by 'nr'
|
// For zero, use the current list or the list specifed by 'nr'
|
||||||
if (di->di_tv.vval.v_number != 0) {
|
if (di->di_tv.vval.v_number != 0) {
|
||||||
for (qf_idx = 0; qf_idx < qi->qf_listcount; qf_idx++) {
|
qf_idx = qf_id2nr(qi, (unsigned)di->di_tv.vval.v_number);
|
||||||
if (qi->qf_lists[qf_idx].qf_id == di->di_tv.vval.v_number) {
|
if (qf_idx == -1) {
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (qf_idx == qi->qf_listcount) {
|
|
||||||
return FAIL; // List not found
|
return FAIL; // List not found
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -4528,12 +4536,8 @@ static int qf_set_properties(qf_info_T *qi, dict_T *what, int action,
|
|||||||
if (!newlist && (di = tv_dict_find(what, S_LEN("id"))) != NULL) {
|
if (!newlist && (di = tv_dict_find(what, S_LEN("id"))) != NULL) {
|
||||||
// Use the quickfix/location list with the specified id
|
// Use the quickfix/location list with the specified id
|
||||||
if (di->di_tv.v_type == VAR_NUMBER) {
|
if (di->di_tv.v_type == VAR_NUMBER) {
|
||||||
for (qf_idx = 0; qf_idx < qi->qf_listcount; qf_idx++) {
|
qf_idx = qf_id2nr(qi, (unsigned)di->di_tv.vval.v_number);
|
||||||
if (qi->qf_lists[qf_idx].qf_id == di->di_tv.vval.v_number) {
|
if (qf_idx == -1) {
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (qf_idx == qi->qf_listcount) {
|
|
||||||
return FAIL; // List not found
|
return FAIL; // List not found
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -4565,6 +4569,13 @@ static int qf_set_properties(qf_info_T *qi, dict_T *what, int action,
|
|||||||
|
|
||||||
retval = qf_add_entries(qi, qf_idx, di->di_tv.vval.v_list,
|
retval = qf_add_entries(qi, qf_idx, di->di_tv.vval.v_list,
|
||||||
title_save, action == ' ' ? 'a' : action);
|
title_save, action == ' ' ? 'a' : action);
|
||||||
|
if (action == 'r') {
|
||||||
|
// When replacing the quickfix list entries using
|
||||||
|
// qf_add_entries(), the title is set with a ':' prefix.
|
||||||
|
// Restore the title with the saved title.
|
||||||
|
xfree(qi->qf_lists[qf_idx].qf_title);
|
||||||
|
qi->qf_lists[qf_idx].qf_title = vim_strsave(title_save);
|
||||||
|
}
|
||||||
xfree(title_save);
|
xfree(title_save);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -469,6 +469,19 @@ func s:test_xhelpgrep(cchar)
|
|||||||
" This wipes out the buffer, make sure that doesn't cause trouble.
|
" This wipes out the buffer, make sure that doesn't cause trouble.
|
||||||
Xclose
|
Xclose
|
||||||
|
|
||||||
|
if a:cchar == 'l'
|
||||||
|
" When a help window is present, running :lhelpgrep should reuse the
|
||||||
|
" help window and not the current window
|
||||||
|
new | only
|
||||||
|
call g:Xsetlist([], 'f')
|
||||||
|
help index.txt
|
||||||
|
wincmd w
|
||||||
|
lhelpgrep quickfix
|
||||||
|
call assert_equal(1, winnr())
|
||||||
|
call assert_notequal([], getloclist(1))
|
||||||
|
call assert_equal([], getloclist(2))
|
||||||
|
endif
|
||||||
|
|
||||||
new | only
|
new | only
|
||||||
|
|
||||||
" Search for non existing help string
|
" Search for non existing help string
|
||||||
@@ -1666,6 +1679,10 @@ func HistoryTest(cchar)
|
|||||||
call assert_equal(' error list 1 of 3; 1 ' . common, res[0])
|
call assert_equal(' error list 1 of 3; 1 ' . common, res[0])
|
||||||
call assert_equal(' error list 2 of 3; 2 ' . common, res[1])
|
call assert_equal(' error list 2 of 3; 2 ' . common, res[1])
|
||||||
call assert_equal('> error list 3 of 3; 3 ' . common, res[2])
|
call assert_equal('> error list 3 of 3; 3 ' . common, res[2])
|
||||||
|
|
||||||
|
call g:Xsetlist([], 'f')
|
||||||
|
let l = split(execute(a:cchar . 'hist'), "\n")
|
||||||
|
call assert_equal('No entries', l[0])
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_history()
|
func Test_history()
|
||||||
@@ -1844,6 +1861,11 @@ func Xproperty_tests(cchar)
|
|||||||
let l = g:Xgetlist({'items':1})
|
let l = g:Xgetlist({'items':1})
|
||||||
call assert_equal(0, len(l.items))
|
call assert_equal(0, len(l.items))
|
||||||
|
|
||||||
|
call g:Xsetlist([], 'r', {'title' : 'TestTitle'})
|
||||||
|
call g:Xsetlist([], 'r', {'items' : [{'filename' : 'F1', 'lnum' : 10, 'text' : 'L10'}]})
|
||||||
|
call g:Xsetlist([], 'r', {'items' : [{'filename' : 'F1', 'lnum' : 10, 'text' : 'L10'}]})
|
||||||
|
call assert_equal('TestTitle', g:Xgetlist({'title' : 1}).title)
|
||||||
|
|
||||||
" The following used to crash Vim with address sanitizer
|
" The following used to crash Vim with address sanitizer
|
||||||
call g:Xsetlist([], 'f')
|
call g:Xsetlist([], 'f')
|
||||||
call g:Xsetlist([], 'a', {'items' : [{'filename':'F1', 'lnum':10}]})
|
call g:Xsetlist([], 'a', {'items' : [{'filename':'F1', 'lnum':10}]})
|
||||||
@@ -1886,10 +1908,10 @@ func Xproperty_tests(cchar)
|
|||||||
call g:Xsetlist([], 'r', l2)
|
call g:Xsetlist([], 'r', l2)
|
||||||
let newl1=g:Xgetlist({'nr':1,'all':1})
|
let newl1=g:Xgetlist({'nr':1,'all':1})
|
||||||
let newl2=g:Xgetlist({'nr':2,'all':1})
|
let newl2=g:Xgetlist({'nr':2,'all':1})
|
||||||
call assert_equal(':Fruits', newl1.title)
|
call assert_equal('Fruits', newl1.title)
|
||||||
call assert_equal(['Fruits'], newl1.context)
|
call assert_equal(['Fruits'], newl1.context)
|
||||||
call assert_equal('Line20', newl1.items[0].text)
|
call assert_equal('Line20', newl1.items[0].text)
|
||||||
call assert_equal(':Colors', newl2.title)
|
call assert_equal('Colors', newl2.title)
|
||||||
call assert_equal(['Colors'], newl2.context)
|
call assert_equal(['Colors'], newl2.context)
|
||||||
call assert_equal('Line10', newl2.items[0].text)
|
call assert_equal('Line10', newl2.items[0].text)
|
||||||
call g:Xsetlist([], 'f')
|
call g:Xsetlist([], 'f')
|
||||||
|
Reference in New Issue
Block a user