mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
Move __fish_complete_file_url to evince.fish
This commit is contained in:
parent
fb8e90de28
commit
c36d802dda
2 changed files with 20 additions and 20 deletions
|
@ -1,4 +1,24 @@
|
|||
|
||||
function __fish_complete_file_url
|
||||
set -l comp
|
||||
|
||||
if set -q argv[1]
|
||||
set comp $argv[1]
|
||||
else
|
||||
set comp (commandline -ct)
|
||||
end
|
||||
|
||||
set -l prefix (echo $comp|cut -c 1-7)
|
||||
|
||||
if test file:// = $prefix
|
||||
set -l stripped (echo $comp|cut -c 8-)
|
||||
printf "%s\n" file://(complete -C"echo $stripped")
|
||||
else
|
||||
echo file://
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
complete -c evince -a '(__fish_complete_file_url)'
|
||||
complete -c evince -s p -l page-label -d "The page of the document to display" -x
|
||||
complete -c evince -s f -l fullscreen -d "Run evince in fullscreen mode"
|
||||
|
|
|
@ -1,20 +0,0 @@
|
|||
|
||||
function __fish_complete_file_url
|
||||
set -l comp
|
||||
|
||||
if set -q argv[1]
|
||||
set comp $argv[1]
|
||||
else
|
||||
set comp (commandline -ct)
|
||||
end
|
||||
|
||||
set -l prefix (echo $comp|cut -c 1-7)
|
||||
|
||||
if test file:// = $prefix
|
||||
set -l stripped (echo $comp|cut -c 8-)
|
||||
printf "%s\n" file://(complete -C"echo $stripped")
|
||||
else
|
||||
echo file://
|
||||
end
|
||||
|
||||
end
|
Loading…
Reference in a new issue