view src/testdir/test_scroll_opt.vim @ 28365:da2f2f8fd66e v8.2.4708

patch 8.2.4708: PHP test files are not recognized Commit: https://github.com/vim/vim/commit/177847e67a495f80a15b6dfd0a3fcd151b44249e Author: Julien Voisin <jvoisin@google.com> Date: Thu Apr 7 16:01:13 2022 +0100 patch 8.2.4708: PHP test files are not recognized Problem: PHP test files are not recognized. Solution: Add the *.phpt pattern. (Julien Voisin, closes https://github.com/vim/vim/issues/10112)
author Bram Moolenaar <Bram@vim.org>
date Thu, 07 Apr 2022 17: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