mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 05:20:35 +08:00
b480c8ce79
U+F8FF is the last character in the private use area, but it's also the codepoint used for the Apple symbol (), which is typeable on US keyboards in OS X, and so should actually work.
14 lines
250 B
Plaintext
14 lines
250 B
Plaintext
# vim: set filetype=expect:
|
|
#
|
|
# General tests that don't belong elsewhere
|
|
|
|
spawn $fish
|
|
|
|
expect_prompt
|
|
|
|
# ensure the Apple key () is typeable
|
|
send_line "echo "
|
|
expect_prompt "" {} unmatched {
|
|
puts stderr "Couldn't type apple key ()"
|
|
}
|