comparison src/testdir/test_startup.vim @ 17178:40c4cb095d53 v8.1.1588

patch 8.1.1588: in :let-heredoc line continuation is recognized commit https://github.com/vim/vim/commit/e96a2498f9a2d3e93ac07431f6d4afd77f30afdf Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 25 04:12:16 2019 +0200 patch 8.1.1588: in :let-heredoc line continuation is recognized Problem: In :let-heredoc line continuation is recognized. Solution: Do not consume line continuation. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/4580)
author Bram Moolenaar <Bram@vim.org>
date Tue, 25 Jun 2019 04:15:08 +0200
parents ba7727889385
children 0da9bc55c31a
comparison
equal deleted inserted replaced
17177:b58feb1a84f0 17178:40c4cb095d53
155 155
156 " Test the -o[N] and -O[N] arguments to open N windows split 156 " Test the -o[N] and -O[N] arguments to open N windows split
157 " horizontally or vertically. 157 " horizontally or vertically.
158 func Test_o_arg() 158 func Test_o_arg()
159 let after =<< trim [CODE] 159 let after =<< trim [CODE]
160 set cpo&vim
160 call writefile([winnr("$"), 161 call writefile([winnr("$"),
161 \ winheight(1), winheight(2), &lines, 162 \ winheight(1), winheight(2), &lines,
162 \ winwidth(1), winwidth(2), &columns, 163 \ winwidth(1), winwidth(2), &columns,
163 \ bufname(winbufnr(1)), bufname(winbufnr(2))], 164 \ bufname(winbufnr(1)), bufname(winbufnr(2))],
164 \ "Xtestout") 165 \ "Xtestout")