25 lines
396 B
Text
25 lines
396 B
Text
spawn $env(VIM) -N --noplugin -u ../vimrc
|
|
set timeout 3
|
|
expect {
|
|
timeout {exit 1}
|
|
"VIM - Vi IMproved"
|
|
}
|
|
send ":LustyFilesystemExplorer\r"
|
|
expect ">>"
|
|
send "random-file/"
|
|
# Should not have caused a backtrace and "Press ENTER ..." message
|
|
expect {
|
|
"Press ENTER" {exit 1}
|
|
timeout {exit 1}
|
|
"NO MATCHES" # Success
|
|
}
|
|
|
|
# ESC
|
|
send \033
|
|
send ":q\r"
|
|
expect {
|
|
timeout {exit 1}
|
|
eof
|
|
}
|
|
exit 0
|
|
|