aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/tools
diff options
context:
space:
mode:
authorGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2015-05-22 09:48:39 +0800
committerGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2015-05-22 09:48:39 +0800
commitc0cf25cf0b28969dd9ef821f7952f42783ed6720 (patch)
treeb5ea6ede9aab35c5cfa174115f265e903e66b0dc /share/tools
parentedf6a951ee3c84c9b24cd285383f7dac764edbb7 (diff)
abbr: rename --remove to --erase
for consistency with other fish commands Closes #2071.
Diffstat (limited to 'share/tools')
-rwxr-xr-xshare/tools/web_config/webconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/tools/web_config/webconfig.py b/share/tools/web_config/webconfig.py
index 5438a43e..d65c86f8 100755
--- a/share/tools/web_config/webconfig.py
+++ b/share/tools/web_config/webconfig.py
@@ -702,7 +702,7 @@ class FishConfigHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
return result
def do_remove_abbreviation(self, abbreviation):
- out, err = run_fish_cmd('abbr -r %s' % abbreviation['word'])
+ out, err = run_fish_cmd('abbr -e %s' % abbreviation['word'])
if out or err:
return err
else: