mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 21:44:16 +00:00
Webconfig: It's abbr --erase, not abbr --remove
This was renamed in c0cf25cf0b
but never
in webconfig.
This commit is contained in:
parent
48874294d6
commit
7fe8a63f53
1 changed files with 1 additions and 1 deletions
|
@ -702,7 +702,7 @@ class FishConfigHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
|
|||
return result
|
||||
|
||||
def do_remove_abbreviation(self, abbreviation):
|
||||
out, err = run_fish_cmd('abbr --remove %s' % abbreviation['word'])
|
||||
out, err = run_fish_cmd('abbr --erase %s' % abbreviation['word'])
|
||||
if out or err:
|
||||
return err
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue