Use -- to prevent arg injection when invoking programs that support standalone --
This commit is contained in:
parent
5036b9f8a5
commit
a5adc4b315
1 changed files with 5 additions and 5 deletions
|
|
@ -249,26 +249,26 @@ def default_launch_actions() -> Tuple[OpenAction, ...]:
|
|||
# Open directories
|
||||
protocol file
|
||||
mime inode/directory
|
||||
action launch --type=os-window --cwd $FILE_PATH
|
||||
action launch --type=os-window --cwd -- $FILE_PATH
|
||||
|
||||
# Open executable file
|
||||
protocol file
|
||||
mime inode/executable,application/vnd.microsoft.portable-executable
|
||||
action launch --hold --type=os-window $FILE_PATH
|
||||
action launch --hold --type=os-window -- $FILE_PATH
|
||||
|
||||
# Open text files without fragments in the editor
|
||||
protocol file
|
||||
mime text/*
|
||||
action launch --type=os-window $EDITOR $FILE_PATH
|
||||
action launch --type=os-window $EDITOR -- $FILE_PATH
|
||||
|
||||
# Open image files with icat
|
||||
protocol file
|
||||
mime image/*
|
||||
action launch --type=os-window kitten icat --hold $FILE_PATH
|
||||
action launch --type=os-window kitten icat --hold -- $FILE_PATH
|
||||
|
||||
# Open ssh URLs with ssh command
|
||||
protocol ssh
|
||||
action launch --type=os-window ssh $URL
|
||||
action launch --type=os-window ssh -- $URL
|
||||
'''.splitlines()))
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue