view src/testdir/test_comparators.vim @ 23902:cc5df920f1b9

Added tag v8.2.2493 for changeset 6793853063e56864f3f1067bdfefd0d36a615c34
author Bram Moolenaar <Bram@vim.org>
date Wed, 10 Feb 2021 17:30: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