Fix typo in xdg-mime completion functions

This commit is contained in:
Kurtis Rader 2017-08-17 10:54:05 -07:00
parent 2761cf1bf5
commit 4b51e0f935
2 changed files with 2 additions and 1 deletions

View file

@ -35,6 +35,7 @@
- `snap` (#4215)
- Improved completions for:
- `composer` (#4295)
- `xdg-mime` (#4333)
---

View file

@ -1,3 +1,3 @@
function __fish_print_xdg_mimetypes --description 'Print XDG mime types'
cat {__fish_print_xdg_applications_directories}/mimeinfo.cache ^/dev/null | string match -v '[MIME Cache]' | string replace = \t
cat (__fish_print_xdg_applications_directories)/mimeinfo.cache ^/dev/null | string match -v '[MIME Cache]' | string replace = \t
end