annotate src/testdir/test_assign.vim @ 11148:87779062d706 v8.0.0461

patch 8.0.0461: test 45 hangs on MS-Windows commit https://github.com/vim/vim/commit/4a5a8dd6e5fa5581bd24b584a71b5fce9ba34bb8 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 16 13:54:10 2017 +0100 patch 8.0.0461: test 45 hangs on MS-Windows Problem: Test 45 hangs on MS-Windows. Solution: Reset 'shiftwidth'. Also remove redundent function.
author Christian Brabandt <cb@256bit.org>
date Thu, 16 Mar 2017 14:00:05 +0100
parents 126405b39964
children 5bc07e5d2c1f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8512
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 " Test for assignment
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 func Test_no_type_checking()
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4 let v = 1
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5 let v = [1,2,3]
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6 let v = {'a': 1, 'b': 2}
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
7 let v = 3.4
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8 let v = 'hello'
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9 endfunc
10825
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
10
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
11 func Test_let_termcap()
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
12 " Terminal code
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
13 let old_t_te = &t_te
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
14 let &t_te = "\<Esc>[yes;"
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
15 call assert_match('t_te.*^[[yes;', execute("set termcap"))
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
16 let &t_te = old_t_te
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
17
10930
126405b39964 patch 8.0.0354: test to check that setting termcap key fails sometimes
Christian Brabandt <cb@256bit.org>
parents: 10829
diff changeset
18 if exists("+t_k1")
10829
8233f8f3f7ae patch 8.0.0304: assign test fails in the GUI
Christian Brabandt <cb@256bit.org>
parents: 10825
diff changeset
19 " Key code
8233f8f3f7ae patch 8.0.0304: assign test fails in the GUI
Christian Brabandt <cb@256bit.org>
parents: 10825
diff changeset
20 let old_t_k1 = &t_k1
8233f8f3f7ae patch 8.0.0304: assign test fails in the GUI
Christian Brabandt <cb@256bit.org>
parents: 10825
diff changeset
21 let &t_k1 = "that"
8233f8f3f7ae patch 8.0.0304: assign test fails in the GUI
Christian Brabandt <cb@256bit.org>
parents: 10825
diff changeset
22 call assert_match('t_k1.*that', execute("set termcap"))
8233f8f3f7ae patch 8.0.0304: assign test fails in the GUI
Christian Brabandt <cb@256bit.org>
parents: 10825
diff changeset
23 let &t_k1 = old_t_k1
8233f8f3f7ae patch 8.0.0304: assign test fails in the GUI
Christian Brabandt <cb@256bit.org>
parents: 10825
diff changeset
24 endif
10825
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
25
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
26 call assert_fails('let x = &t_xx', 'E15')
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
27 let &t_xx = "yes"
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
28 call assert_equal("yes", &t_xx)
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
29 let &t_xx = ""
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
30 call assert_fails('let x = &t_xx', 'E15')
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
31 endfunc