Re: indent/tf.vim update to include b:undo_indent

2022-04-25 Thread Bram Moolenaar
Christian J. Robinson wrote: > I've attached an update of the indent/tf.vim file so it supports > b:undo_indent. Thanks, I'll include it. -- Master: Boy, there is nothing more for you to learn Student: I didn't know that! /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net

indent/tf.vim update to include b:undo_indent

2022-04-25 Thread Christian J. Robinson
I've attached an update of the indent/tf.vim file so it supports b:undo_indent. -- Christian J. Robinson -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit

Re: %f item in getqflist()

2022-04-25 Thread Lifepillar
On 2022-04-25, Lifepillar wrote: > I am looking into parsing a list of strings with an errorformat to > create a quicklist or location list out of it. Currently, I am doing it > as follows: > > let efm = "%f:%l:%m" > let what = getqflist({"lines": ["foo:3:bar"], "efm": efm}) > call

%f item in getqflist()

2022-04-25 Thread Lifepillar
I am looking into parsing a list of strings with an errorformat to create a quicklist or location list out of it. Currently, I am doing it as follows: let efm = "%f:%l:%m" let what = getqflist({"lines": ["foo:3:bar"], "efm": efm}) call setloclist(0, what.items) echo what.items[0]