mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
Fix typo in xdg-mime completion functions
This commit is contained in:
parent
2761cf1bf5
commit
4b51e0f935
2 changed files with 2 additions and 1 deletions
|
@ -35,6 +35,7 @@
|
||||||
- `snap` (#4215)
|
- `snap` (#4215)
|
||||||
- Improved completions for:
|
- Improved completions for:
|
||||||
- `composer` (#4295)
|
- `composer` (#4295)
|
||||||
|
- `xdg-mime` (#4333)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
function __fish_print_xdg_mimetypes --description 'Print XDG mime types'
|
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
|
end
|
||||||
|
|
Loading…
Reference in a new issue