view src/testdir/test_comparators.vim @ 23415:3ed012d8c315

Added tag v8.2.2250 for changeset 9bd3873b13e28022e1844d291f0e007a8e473a77
author Bram Moolenaar <Bram@vim.org>
date Wed, 30 Dec 2020 20:45:04 +0100
parents 08940efa6b4e
children
line wrap: on
line source

" Test for comparators

function Test_Comparators()
  try
    let oldisident=&isident
    set isident+=#
    call assert_equal(1, 1 is#1)
  finally
    let &isident=oldisident
  endtry
endfunction

" vim: shiftwidth=2 sts=2 expandtab