Files
org-vim/runtime/syntax/testdir/input/vim_new.vim
T

18 lines
205 B
VimL
Raw Normal View History

vim9script
# Vim :new command and class constructors.
class Test
def new()
enddef
def newOther()
enddef
def newyetanother()
enddef
endclass
Test.new()
Test.newOther()
Test.newyetanother()
new
quit