blob: 69f255f1df012ba29f7450bc085ecdc0f7f4f133 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
" 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
|