ユーザ定義ファンクションを実行する
作者: 小見 拓
—
最終変更
2009年12月06日 05時18分
ユーザ定義ファンクションを実行する
:function ReturnFunction()
:return "ReturnFunction() is called"
:endfunction
:echo ReturnFunction()
"# => ReturnFunction() is called
:function EchoFunction()
:echo "EchoFunction() is called"
:endfunction
:call EchoFunction()
"# => EchoFunction() is called

ブックマーク
前: 外部コマンドを実行する
