Mercurial > vim
view src/testdir/test_move.vim @ 17157:bbd454d155a9 v8.1.1578
patch 8.1.1578: MS-Windows: pathdef.c should depend on build options
commit https://github.com/vim/vim/commit/dfc145572813c5d3848feb4029ff8bfb127ab66a
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jun 21 17:36:10 2019 +0200
patch 8.1.1578: MS-Windows: pathdef.c should depend on build options
Problem: MS-Windows: pathdef.c should depend on build options.
Solution: Generate pathdef.c in the object directory. Fix dependencies.
(Ken Takata, closes #4565)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 21 Jun 2019 17:45:05 +0200 |
parents | e3910b9827d0 |
children | b8fd7364befd |
line wrap: on
line source
" Test the ":move" command. func Test_move() enew! call append(0, ['line 1', 'line 2', 'line 3']) g /^$/ delete _ set nomodified move . call assert_equal(['line 1', 'line 2', 'line 3'], getline(1, 3)) call assert_false(&modified) 1,2move 0 call assert_equal(['line 1', 'line 2', 'line 3'], getline(1, 3)) call assert_false(&modified) 1,3move 3 call assert_equal(['line 1', 'line 2', 'line 3'], getline(1, 3)) call assert_false(&modified) 1move 2 call assert_equal(['line 2', 'line 1', 'line 3'], getline(1, 3)) call assert_true(&modified) set nomodified 3move 0 call assert_equal(['line 3', 'line 2', 'line 1'], getline(1, 3)) call assert_true(&modified) set nomodified 2,3move 0 call assert_equal(['line 2', 'line 1', 'line 3'], getline(1, 3)) call assert_true(&modified) set nomodified call assert_fails('1,2move 1', 'E134') call assert_fails('2,3move 2', 'E134') %bwipeout! endfunc