view src/testdir/test_increment_dbcs.vim @ 21299:883315e762b7 v8.2.1200

patch 8.2.1200: Vim9: cannot disassemble a lambda function Commit: https://github.com/vim/vim/commit/bfd65589d9b6bd5fd2c8ee768d1427469bd61ead Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 13 18:18:00 2020 +0200 patch 8.2.1200: Vim9: cannot disassemble a lambda function Problem: Vim9: cannot disassemble a lambda function. Solution: Recognize "<lambda>123" as a function name.
author Bram Moolenaar <Bram@vim.org>
date Mon, 13 Jul 2020 18:30:04 +0200
parents 2dcaa860e3fc
children 08940efa6b4e
line wrap: on
line source

" Tests for using Ctrl-A/Ctrl-X using DBCS.
set encoding=cp932
scriptencoding cp932

func SetUp()
  new
  set nrformats&
endfunc

func TearDown()
  bwipe!
endfunc

func Test_increment_dbcs_1()
  set nrformats+=alpha
  call setline(1, ["ŽR1"])
  exec "norm! 0\<C-A>"
  call assert_equal(["ŽR2"], getline(1, '$'))
  call assert_equal([0, 1, 3, 0], getpos('.'))

  call setline(1, ["‚`‚a‚b0xDE‚e"])
  exec "norm! 0\<C-X>"
  call assert_equal(["‚`‚a‚b0xDD‚e"], getline(1, '$'))
  call assert_equal([0, 1, 10, 0], getpos('.'))
endfunc

" vim: shiftwidth=2 sts=2 expandtab