mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:7.4.470
Problem: Test 11 and 100 do not work properly on Windows. Solution: Avoid using feedkeys(). (Ken Takata) https://code.google.com/p/vim/source/detail?r=v7-4-470
This commit is contained in:
parent
850b0b8663
commit
c26c387490
@ -16,7 +16,7 @@ STARTTEST
|
|||||||
:new one
|
:new one
|
||||||
:0put ='ONE: expecting global undolevels: 5, local undolevels: -123456 (default)'
|
:0put ='ONE: expecting global undolevels: 5, local undolevels: -123456 (default)'
|
||||||
:call FillBuffer()
|
:call FillBuffer()
|
||||||
:call feedkeys(":earlier 10\n", 't')
|
:earlier 10
|
||||||
:call UndoLevel()
|
:call UndoLevel()
|
||||||
:set ft=unix
|
:set ft=unix
|
||||||
:%w! test.out
|
:%w! test.out
|
||||||
@ -24,7 +24,7 @@ STARTTEST
|
|||||||
:0put ='TWO: expecting global undolevels: 5, local undolevels: 2 (first) then 10 (afterwards)'
|
:0put ='TWO: expecting global undolevels: 5, local undolevels: 2 (first) then 10 (afterwards)'
|
||||||
:setlocal ul=2
|
:setlocal ul=2
|
||||||
:call FillBuffer()
|
:call FillBuffer()
|
||||||
:call feedkeys(":earlier 10\n", 't')
|
:earlier 10
|
||||||
:call UndoLevel()
|
:call UndoLevel()
|
||||||
:setlocal ul=10
|
:setlocal ul=10
|
||||||
:call UndoLevel()
|
:call UndoLevel()
|
||||||
|
@ -46,13 +46,13 @@ STARTTEST
|
|||||||
:w>>test.out " Append it to the output file
|
:w>>test.out " Append it to the output file
|
||||||
:set shelltemp " need temp files here
|
:set shelltemp " need temp files here
|
||||||
:au FilterReadPre *.out call rename(expand("<afile>"), expand("<afile>") . ".t")
|
:au FilterReadPre *.out call rename(expand("<afile>"), expand("<afile>") . ".t")
|
||||||
:au FilterReadPre *.out exe '!sed s/e/E/ ' . shellescape(expand("<afile>")) . ".t >" . shellescape(expand("<afile>"))
|
:au FilterReadPre *.out exe 'silent !sed s/e/E/ ' . shellescape(expand("<afile>")) . ".t >" . shellescape(expand("<afile>"))
|
||||||
:au FilterReadPre *.out exe '!rm ' . shellescape(expand("<afile>")) . '.t'
|
:au FilterReadPre *.out exe 'silent !rm ' . shellescape(expand("<afile>")) . '.t'
|
||||||
:au FilterReadPost *.out '[,']s/x/X/g
|
:au FilterReadPost *.out '[,']s/x/X/g
|
||||||
:e! test.out " Edit the output file
|
:e! test.out " Edit the output file
|
||||||
:23,$!cat
|
:23,$!cat
|
||||||
:23,$s/\r$// " remove CR for when sed adds them
|
:23,$s/\r$// " remove CR for when sed adds them
|
||||||
:au! FileReadPre *.gz exe '!gzip -d ' . shellescape(expand("<afile>"))
|
:au! FileReadPre *.gz exe 'silent !gzip -d ' . shellescape(expand("<afile>"))
|
||||||
:au FileReadPre *.gz call rename(expand("<afile>:r"), expand("<afile>"))
|
:au FileReadPre *.gz call rename(expand("<afile>:r"), expand("<afile>"))
|
||||||
:au! FileReadPost *.gz '[,']s/l/L/
|
:au! FileReadPost *.gz '[,']s/l/L/
|
||||||
:$r Xtestfile.gz " Read compressed file
|
:$r Xtestfile.gz " Read compressed file
|
||||||
|
@ -196,7 +196,7 @@ static int included_patches[] = {
|
|||||||
473,
|
473,
|
||||||
472,
|
472,
|
||||||
//471 NA
|
//471 NA
|
||||||
//470,
|
470,
|
||||||
//469 NA
|
//469 NA
|
||||||
//468,
|
//468,
|
||||||
467,
|
467,
|
||||||
|
Loading…
Reference in New Issue
Block a user