summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_jumps.vim
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/testdir/test_jumps.vim15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/testdir/test_jumps.vim b/src/testdir/test_jumps.vim
new file mode 100644
index 0000000..5b46adc
--- /dev/null
+++ b/src/testdir/test_jumps.vim
@@ -0,0 +1,15 @@
+" Test for '' mark in an empty buffer
+
+func Test_empty_buffer()
+ new
+ insert
+a
+b
+c
+d
+.
+ call assert_equal(1, line("''"))
+ bwipe!
+endfunc
+
+" vim: shiftwidth=2 sts=2 expandtab