関数を考えてみましょう。
function! Test()
:let aString = "I'm a string!"
:!echo aString
endfunction
ここ:call Test()
で、次のパイプを BASHに入力します。
aString
Press ENTER or type command to continue
:!echo
の値はどのように取得できaString
ますか?
ありがとう!
関数を考えてみましょう。
function! Test()
:let aString = "I'm a string!"
:!echo aString
endfunction
ここ:call Test()
で、次のパイプを BASHに入力します。
aString
Press ENTER or type command to continue
:!echo
の値はどのように取得できaString
ますか?
ありがとう!