view src/testdir/test_scroll_opt.vim @ 22649:6e965b3587a4 v8.2.1873

patch 8.2.1873: Vim9: missing white space when using <f-args> Commit: https://github.com/vim/vim/commit/20d89e0ac65686481f97657008deede0b39ef5db Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 20 23:11:33 2020 +0200 patch 8.2.1873: Vim9: missing white space when using <f-args> Problem: Vim9: missing white space when using <f-args>. Solution: Add spaces. (Christian J. Robinson)
author Bram Moolenaar <Bram@vim.org>
date Tue, 20 Oct 2020 23:15:03 +0200
parents 08940efa6b4e
children 6c6ac189a05f
line wrap: on
line source

" Test for reset 'scroll'

func Test_reset_scroll()
  let scr = &l:scroll

  setlocal scroll=1
  setlocal scroll&
  call assert_equal(scr, &l:scroll)

  setlocal scroll=1
  setlocal scroll=0
  call assert_equal(scr, &l:scroll)

  try
    execute 'setlocal scroll=' . (winheight(0) + 1)
    " not reached
    call assert_false(1)
  catch
    call assert_exception('E49:')
  endtry

  split

  let scr = &l:scroll

  setlocal scroll=1
  setlocal scroll&
  call assert_equal(scr, &l:scroll)

  setlocal scroll=1
  setlocal scroll=0
  call assert_equal(scr, &l:scroll)

  quit!
endfunc

" vim: shiftwidth=2 sts=2 expandtab