view src/testdir/test_jumps.vim @ 24598:6b85c09a4d73 v8.2.2838

patch 8.2.2838: file extension .wrap not recognized Commit: https://github.com/vim/vim/commit/e3e598e82b79a2ab5ba5e312d54e65c940e2e809 Author: Liam Beguin <liambeguin@gmail.com> Date: Thu May 6 17:45:22 2021 +0200 patch 8.2.2838: file extension .wrap not recognized Problem: File extension .wrap not recognized. Solution: Use dosini filetype for .wrap files. (Liam Beguin, closes https://github.com/vim/vim/issues/8177)
author Bram Moolenaar <Bram@vim.org>
date Thu, 06 May 2021 18:00:04 +0200
parents 08940efa6b4e
children
line wrap: on
line source

" 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