mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 08:58:01 +00:00
36691df6fe
I believe apm must have been buggy - example output that I found online showed `tr` was mangling paths with spaces in it. Should be fixed. Also, use dscl on OS X in __fish_complete_users.fish like __fish_print_users.fish already does.
4 lines
138 B
Fish
4 lines
138 B
Fish
function __fish_print_abook_emails --description 'Print email addresses (abook)'
|
|
abook --mutt-query "" | string match -r -v '^\s*$'
|
|
|
|
end
|