view src/testdir/test_cscope.vim @ 9719:219dbe63ad2a v7.4.2135

commit https://github.com/vim/vim/commit/89eaa4185efacab253b23a182c1c8a7bbf1096c9 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 31 14:17:27 2016 +0200 patch 7.4.2135 Problem: Various tiny issues. Solution: Update comments, white space, etc.
author Christian Brabandt <cb@256bit.org>
date Sun, 31 Jul 2016 14:30:05 +0200
parents da98db362fef
children ab96eb561a7e
line wrap: on
line source

" Test for cscope commands.

if !has('cscope')
  finish
endif

func Test_cscopequickfix()
  set cscopequickfix=s-,g-,d+,c-,t+,e-,f0,i-,a-
  call assert_equal('s-,g-,d+,c-,t+,e-,f0,i-,a-', &cscopequickfix)

  call assert_fails('set cscopequickfix=x-', 'E474:')
  call assert_fails('set cscopequickfix=s', 'E474:')
  call assert_fails('set cscopequickfix=s7', 'E474:')
  call assert_fails('set cscopequickfix=s-a', 'E474:')
endfunc