1

関数を考えてみましょう。

function! Test()
    :let aString = "I'm a string!"
    :!echo aString
endfunction

ここ:call Test()で、次のパイプを BASHに入力します。

aString

Press ENTER or type command to continue

:!echoの値はどのように取得できaStringますか?

ありがとう!

4

1 に答える 1

1

わかりました、最終的に機能しました:

function! Test() 
   :!clear
   :let aString = 'I\''m a string\!'
   :execute "!echo " . aString
endfunction
于 2013-10-26T15:50:20.203 に答える