view src/testdir/test_comparators.vim @ 24382:ba12300088d4

Added tag v8.2.2731 for changeset 7b84cf514dd8cdc8c47957a511e28ed2b1d07977
author Bram Moolenaar <Bram@vim.org>
date Wed, 07 Apr 2021 19:15:04 +0200
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