echo 'display notification "VimConfは11月16日開催です♪" with title "Vim Girl"' | osascript' display notificationの引数に表示したい文字列を指定して、AppleScriptとして実行します。 with titleやsubtitleを指定すれば、メッセージのタイトルを変更することができます。 では、Vimからも利用できるようにしてみましょう。 .vimrcに直接書いてみます。 function! s:mac_notify(say) call vimproc#system("echo 'display notification "."\"".a:say."\" with title \"Vim\"' | osascript") endfunction command! -nargs=1 MacNot