diff src/testdir/test_quickfix.vim @ 9432:abb72f0b9e06 v7.4.1997

commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 7 18:58:59 2016 +0200 patch 7.4.1997 Problem: Cannot easily scroll the quickfix window. Solution: Add ":cbottom".
author Christian Brabandt <cb@256bit.org>
date Thu, 07 Jul 2016 19:00:07 +0200
parents 2ce9814053d8
children 374afcf9d11d
line wrap: on
line diff
--- a/src/testdir/test_quickfix.vim
+++ b/src/testdir/test_quickfix.vim
@@ -1414,3 +1414,16 @@ echo string(loc_two)
   call delete('Xone', 'rf')
   call delete('Xtwo', 'rf')
 endfunc
+
+function Test_cbottom()
+  call setqflist([{'filename': 'foo', 'lnum': 42}]) 
+  copen
+  let wid = win_getid()
+  call assert_equal(1, line('.'))
+  wincmd w
+  call setqflist([{'filename': 'var', 'lnum': 24}], 'a') 
+  cbottom
+  call win_gotoid(wid)
+  call assert_equal(2, line('.'))
+  cclose
+endfunc