Mercurial > vim
view src/testdir/test_lispwords.vim @ 7726:f6311c321411 v7.4.1161
commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 23 23:02:34 2016 +0100
patch 7.4.1161
Problem: ":argadd" without argument is supposed to add the current buffer
name to the arglist.
Solution: Make it work as documented. (Coot, closes https://github.com/vim/vim/issues/577)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 23 Jan 2016 23:15:05 +0100 |
parents | 979f8a595326 |
children | 44aa2997239d |
line wrap: on
line source
" Tests for 'lispwords' settings being global-local set nocompatible viminfo+=nviminfo func Test_global_local_lispwords() setglobal lispwords=foo,bar,baz setlocal lispwords-=foo | setlocal lispwords+=quux call assert_equal('foo,bar,baz', &g:lispwords) call assert_equal('bar,baz,quux', &l:lispwords) call assert_equal('bar,baz,quux', &lispwords) setlocal lispwords< call assert_equal('foo,bar,baz', &g:lispwords) call assert_equal('foo,bar,baz', &l:lispwords) call assert_equal('foo,bar,baz', &lispwords) endfunc