mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
web_config: improve abbreviations support
* Fetch abbreviations by reading the variable directly. * Use space separators for writing new abbreviations. Work on #731.
This commit is contained in:
parent
14fa48864a
commit
9aaf93f364
1 changed files with 5 additions and 10 deletions
|
@ -687,16 +687,11 @@ class FishConfigHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
|
|||
return result
|
||||
|
||||
def do_get_abbreviations(self):
|
||||
out, err = run_fish_cmd('abbr -s')
|
||||
lines = (x for x in out.rstrip().split('\n'))
|
||||
# Turn the output into something we can use
|
||||
abbrout = (line[len('abbr -a '):].strip('\'') for line in lines)
|
||||
abbrs = [re.split('[ =]', x, maxsplit=1) for x in abbrout]
|
||||
out, err = run_fish_cmd('echo -n -s $fish_user_abbreviations\x1e')
|
||||
|
||||
if abbrs[0][0]:
|
||||
result = [{'word': x, 'phrase': y} for x, y in abbrs]
|
||||
else:
|
||||
result = []
|
||||
lines = (x for x in out.rstrip().split('\x1e'))
|
||||
abbrs = (re.split('[ =]', x, maxsplit=1) for x in lines if x)
|
||||
result = [{'word': x, 'phrase': y} for x, y in abbrs]
|
||||
return result
|
||||
|
||||
def do_remove_abbreviation(self, abbreviation):
|
||||
|
@ -707,7 +702,7 @@ class FishConfigHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
|
|||
return True
|
||||
|
||||
def do_save_abbreviation(self, abbreviation):
|
||||
out, err = run_fish_cmd('abbr -a \'%s=%s\'' % (abbreviation['word'], abbreviation['phrase']))
|
||||
out, err = run_fish_cmd('abbr -a \'%s %s\'' % (abbreviation['word'], abbreviation['phrase']))
|
||||
if err:
|
||||
return err
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue