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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
301 B
VimL
Raw Normal View History

vim9script
# Vim :new command and class constructors
# TODO: move to vim9_constructor and create new vim_ex_new and vim9_ex_new
# tests
class Test
def new()
enddef
def newOther()
enddef
def newyetanother()
enddef
endclass
Test.new()
Test.newOther()
Test.newyetanother()
new
quit