mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-18 05:12:46 +08:00
![ridiculousfish](/assets/img/avatar_default.png)
Prior to this change, abbreviations were stored as fish variables, often universal. However we intend to add additional features to abbreviations which would be very awkward to shoe-horn into variables. Re-implement abbreviations using a builtin, managing them internally. Existing abbreviations stored in universal variables are still imported, for compatibility. However new abbreviations will need to be added to a function. A follow-up commit will add it. Now that abbr is a built-in, remove the abbr function; but leave the abbr.fish file so that stale files from past installs do not override the abbr builtin.
135 lines
3.2 KiB
Fish
135 lines
3.2 KiB
Fish
#RUN: %fish %s
|
|
|
|
# Universal abbreviations are imported.
|
|
set -U _fish_abbr_cuckoo somevalue
|
|
set fish (status fish-path)
|
|
$fish -c abbr
|
|
# CHECK: abbr -a -U -- cuckoo somevalue
|
|
|
|
# Test basic add and list of __abbr1
|
|
abbr __abbr1 alpha beta gamma
|
|
abbr | grep __abbr1
|
|
# CHECK: abbr -a -- __abbr1 'alpha beta gamma'
|
|
|
|
# Erasing one that doesn\'t exist should do nothing
|
|
abbr --erase NOT_AN_ABBR
|
|
abbr | grep __abbr1
|
|
# CHECK: abbr -a -- __abbr1 'alpha beta gamma'
|
|
|
|
# Adding existing __abbr1 should be idempotent
|
|
abbr __abbr1 alpha beta gamma
|
|
abbr | grep __abbr1
|
|
# CHECK: abbr -a -- __abbr1 'alpha beta gamma'
|
|
|
|
# Replacing __abbr1 definition
|
|
abbr __abbr1 delta
|
|
abbr | grep __abbr1
|
|
# CHECK: abbr -a -- __abbr1 delta
|
|
|
|
# __abbr1 -s and --show tests
|
|
abbr -s | grep __abbr1
|
|
abbr --show | grep __abbr1
|
|
# CHECK: abbr -a -- __abbr1 delta
|
|
# CHECK: abbr -a -- __abbr1 delta
|
|
|
|
# Test erasing __abbr1
|
|
abbr -e __abbr1
|
|
abbr | grep __abbr1
|
|
|
|
# Ensure we escape special characters on output
|
|
abbr '~__abbr2' '$xyz'
|
|
abbr | grep __abbr2
|
|
# CHECK: abbr -a -- '~__abbr2' '$xyz'
|
|
abbr -e '~__abbr2'
|
|
|
|
# Ensure we handle leading dashes in abbreviation names properly
|
|
abbr -- --__abbr3 xyz
|
|
abbr | grep __abbr3
|
|
# CHECK: abbr -a -- --__abbr3 xyz
|
|
abbr -e -- --__abbr3
|
|
|
|
# Test that an abbr word containing spaces is rejected
|
|
abbr "a b c" "d e f"
|
|
abbr | grep 'a b c'
|
|
# CHECKERR: abbr --add: Abbreviation 'a b c' cannot have spaces in the word
|
|
|
|
# Test renaming
|
|
abbr __abbr4 omega
|
|
abbr | grep __abbr5
|
|
abbr -r __abbr4 __abbr5
|
|
abbr | grep __abbr5
|
|
# CHECK: abbr -a -- __abbr5 omega
|
|
abbr -e __abbr5
|
|
abbr | grep __abbr4
|
|
|
|
# Test renaming a nonexistent abbreviation
|
|
abbr -r __abbr6 __abbr
|
|
# CHECKERR: abbr --rename: No abbreviation named __abbr6
|
|
|
|
# Test renaming to a abbreviation with spaces
|
|
abbr __abbr4 omega
|
|
abbr -r __abbr4 "g h i"
|
|
# CHECKERR: abbr --rename: Abbreviation 'g h i' cannot have spaces in the word
|
|
abbr -e __abbr4
|
|
|
|
# Test renaming without arguments
|
|
abbr __abbr7 omega
|
|
abbr -r __abbr7
|
|
# CHECKERR: abbr --rename: Requires exactly two arguments
|
|
|
|
# Test renaming with too many arguments
|
|
abbr __abbr8 omega
|
|
abbr -r __abbr8 __abbr9 __abbr10
|
|
# CHECKERR: abbr --rename: Requires exactly two arguments
|
|
abbr | grep __abbr8
|
|
abbr | grep __abbr9
|
|
abbr | grep __abbr10
|
|
# CHECK: abbr -a -- __abbr8 omega
|
|
|
|
# Test renaming to existing abbreviation
|
|
abbr __abbr11 omega11
|
|
abbr __abbr12 omega12
|
|
abbr -r __abbr11 __abbr12
|
|
# CHECKERR: abbr --rename: Abbreviation __abbr12 already exists, cannot rename __abbr11
|
|
|
|
abbr __abbr-with-dashes omega
|
|
complete -C__abbr-with
|
|
# CHECK: __abbr-with-dashes Abbreviation: omega
|
|
|
|
abbr --add --global __abbr13 aaaaaaaaaaaaa
|
|
abbr --add --global __abbr14 bbbbbbbbbbbbb
|
|
abbr --erase __abbr13 __abbr14
|
|
abbr | grep __abbr13
|
|
abbr | grep __abbr14
|
|
|
|
abbr -q banana
|
|
echo $status
|
|
# CHECK: 1
|
|
|
|
abbr -q __abbr8 banana
|
|
echo $status
|
|
# CHECK: 0
|
|
|
|
abbr -q banana __abbr8 foobar
|
|
echo $status
|
|
# CHECK: 0
|
|
|
|
abbr --add grape --position nowhere juice
|
|
echo $status
|
|
# CHECKERR: abbr: Invalid position 'nowhere'
|
|
# CHECKERR: Position must be one of: command, anywhere.
|
|
# CHECK: 2
|
|
|
|
abbr --add grape --position anywhere juice
|
|
echo $status
|
|
# CHECK: 0
|
|
|
|
abbr --add grape --position command juice
|
|
echo $status
|
|
# CHECK: 0
|
|
|
|
abbr --query banana --position anywhere
|
|
echo $status
|
|
# CHECKERR: abbr: --position option requires --add
|
|
# CHECK: 2
|