diff options
Diffstat (limited to 'vim/bundle/tlib_vim/autoload/tlib/Test.vim')
| -rwxr-xr-x | vim/bundle/tlib_vim/autoload/tlib/Test.vim | 19 | 
1 files changed, 19 insertions, 0 deletions
| diff --git a/vim/bundle/tlib_vim/autoload/tlib/Test.vim b/vim/bundle/tlib_vim/autoload/tlib/Test.vim new file mode 100755 index 0000000..4a4281e --- /dev/null +++ b/vim/bundle/tlib_vim/autoload/tlib/Test.vim @@ -0,0 +1,19 @@ +" @Author:      Tom Link (micathom AT gmail com?subject=[vim]) +" @Website:     http://www.vim.org/account/profile.php?user_id=4037 +" @License:     GPL (see http://www.gnu.org/licenses/gpl.txt) +" @Revision:    11 + +" :enddoc: + + +let s:prototype = tlib#Object#New({'_class': ['Test']}) "{{{2 +function! tlib#Test#New(...) "{{{3 +    let object = s:prototype.New(a:0 >= 1 ? a:1 : {}) +    return object +endf + + +function! s:prototype.Dummy() dict "{{{3 +    return 'Test.vim' +endf + | 
