diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-17 13:38:04 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-17 13:38:04 +0200 |
commit | 55b8ad3dabc16451f0ae59a7ae8ab9edb67f84e6 (patch) | |
tree | 25eb06d623613b6eb84a6337e72f2b0acf90be16 /src/testdir/test87.in | |
parent | c24c1acd828e9dc410c2a674c794600eed98bcf6 (diff) | |
download | vim-git-55b8ad3dabc16451f0ae59a7ae8ab9edb67f84e6.tar.gz |
updated for version 7.3.962v7.3.962
Problem: Python tests are not portable.
Solution: Use shiftwidth instead of iminsert. (ZyX)
Diffstat (limited to 'src/testdir/test87.in')
-rw-r--r-- | src/testdir/test87.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testdir/test87.in b/src/testdir/test87.in index 51425d645..c7f092040 100644 --- a/src/testdir/test87.in +++ b/src/testdir/test87.in @@ -341,7 +341,7 @@ EOF :" colorcolumn: string, window-local :" statusline: string, window-local/global :" autoindent: boolean, buffer-local -:" iminsert: number, buffer-local +:" shiftwidth: number, buffer-local :" omnifunc: string, buffer-local :" preserveindent: boolean, buffer-local/global :" path: string, buffer-local/global @@ -398,7 +398,7 @@ EOF :let lst+=[['colorcolumn', '+1', '+2', '+3', 'abc', 0, 0, 1 ]] :let lst+=[['statusline', '1', '2', '4', 0, 0, 1, 1 ]] :let lst+=[['autoindent', 0, 1, 1, 2, 1, 0, 2 ]] -:let lst+=[['iminsert', 0, 2, 1, 3, 0, 0, 2 ]] +:let lst+=[['shiftwidth', 0, 2, 1, 3, 0, 0, 2 ]] :let lst+=[['omnifunc', 'A', 'B', 'C', 1, 0, 0, 2 ]] :let lst+=[['preserveindent', 0, 1, 1, 2, 1, 1, 2 ]] :let lst+=[['path', '.,,', ',,', '.', 0, 0, 1, 2 ]] |