view src/testdir/test_options.vim @ 10046:4a07f8de5efa v7.4.2295

commit https://github.com/vim/vim/commit/4792255eff03760dca0fd014616532e6d47db364 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 30 10:56:50 2016 +0200 patch 7.4.2295 Problem: Cscope test fails. Solution: Avoid checking for specific line and column numbers.
author Christian Brabandt <cb@256bit.org>
date Tue, 30 Aug 2016 11:00:07 +0200
parents 12c5c2614432
children 5adc318767be
line wrap: on
line source

" Test for options

function! Test_whichwrap()
  set whichwrap=b,s
  call assert_equal('b,s', &whichwrap)

  set whichwrap+=h,l
  call assert_equal('b,s,h,l', &whichwrap)

  set whichwrap+=h,l
  call assert_equal('b,s,h,l', &whichwrap)

  set whichwrap+=h,l
  call assert_equal('b,s,h,l', &whichwrap)

  set whichwrap&
endfunction

function Test_options()
  let caught = 'ok'
  try
    options
  catch
    let caught = v:throwpoint . "\n" . v:exception
  endtry
  call assert_equal('ok', caught)

  " close option-window
  close
endfunction

function Test_path_keep_commas()
  " Test that changing 'path' keeps two commas.
  set path=foo,,bar
  set path-=bar
  set path+=bar
  call assert_equal('foo,,bar', &path)

  set path&
endfunction

func Test_signcolumn()
  if has('signs')
    call assert_equal("auto", &signcolumn)
    set signcolumn=yes
    set signcolumn=no
    call assert_fails('set signcolumn=nope')
  endif
endfunc