Mercurial > vim
view src/testdir/test_global.vim @ 15740:2fe4a503c5ad v8.1.0877
patch 8.1.0877: new buffer used every time the quickfix window is opened
commit https://github.com/vim/vim/commit/ee8188fc74a7cf9ee7acb634b2bb7a032d0cb24c
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Feb 5 21:23:04 2019 +0100
patch 8.1.0877: new buffer used every time the quickfix window is opened
Problem: New buffer used every time the quickfix window is opened.
Solution: Reuse the buffer. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/3902)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 05 Feb 2019 21:30:06 +0100 |
parents | 8e5ec22db3d8 |
children | b8fd7364befd |
line wrap: on
line source
func Test_yank_put_clipboard() new call setline(1, ['a', 'b', 'c']) set clipboard=unnamed g/^/normal yyp call assert_equal(['a', 'a', 'b', 'b', 'c', 'c'], getline(1, 6)) set clipboard& bwipe! endfunc func Test_nested_global() new call setline(1, ['nothing', 'found', 'found bad', 'bad']) call assert_fails('g/found/3v/bad/s/^/++/', 'E147') g/found/v/bad/s/^/++/ call assert_equal(['nothing', '++found', 'found bad', 'bad'], getline(1, 4)) bwipe! endfunc