Mercurial > vim
view src/testdir/test_move.vim @ 18120:ed222e264905 v8.1.2055
patch 8.1.2055: not easy to jump to function line from profile
Commit: https://github.com/vim/vim/commit/181d4f58cc421f2e6d3b16333d4cb70d35ad1342
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Sep 18 22:04:56 2019 +0200
patch 8.1.2055: not easy to jump to function line from profile
Problem: Not easy to jump to function line from profile.
Solution: Use "file:99" instead of "file line 99" so that "gf" works.
(Daniel Hahler, closes #4951)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 18 Sep 2019 22:15:03 +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