Mercurial > vim
annotate src/testdir/test_options.in @ 9534:340106787852 v7.4.2047
commit https://github.com/vim/vim/commit/bfafb4c4a01db3f8c508716daf689e0dfe92b649
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jul 16 14:20:45 2016 +0200
patch 7.4.2047
Problem: Compiler warning for initializing a struct.
Solution: Initialize in another way. (Anton Lindqvist)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 16 Jul 2016 14:30:06 +0200 |
parents | 55c67e16e4fd |
children |
rev | line source |
---|---|
5774 | 1 Test for ":options". |
2 | |
3 STARTTEST | |
4 :so small.vim | |
5 :let caught = 'ok' | |
6 :try | |
7 :options | |
8 :catch | |
9 :let caught = v:throwpoint . "\n" . v:exception | |
10 :endtry | |
11 :buf 1 | |
12 :$put =caught | |
7212
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
5774
diff
changeset
|
13 :" |
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
5774
diff
changeset
|
14 :" Test that changing 'path' keeps two commas. |
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
5774
diff
changeset
|
15 :set path=foo,,bar |
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
5774
diff
changeset
|
16 :set path-=bar |
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
5774
diff
changeset
|
17 :set path+=bar |
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
5774
diff
changeset
|
18 :$put =&path |
5774 | 19 :/^result/,$w! test.out |
20 :qa! | |
21 ENDTEST | |
22 | |
23 result |