Mercurial > vim
annotate src/testdir/test_options.in @ 8913:caffda31048c v7.4.1743
commit https://github.com/vim/vim/commit/75be2339d877bbd38df91c0181e1e0e388852df6
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Apr 14 23:10:40 2016 +0200
patch 7.4.1743
Problem: Clang warns for uninitialzed variable. (Michael Jarvis)
Solution: Initialize it.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 14 Apr 2016 23:15:05 +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 |