diff options
-rw-r--r-- | tt.programs.explorer.ahk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tt.programs.explorer.ahk b/tt.programs.explorer.ahk index bf3428a..0779f9a 100644 --- a/tt.programs.explorer.ahk +++ b/tt.programs.explorer.ahk @@ -212,7 +212,10 @@ qp() qip() { - return """" Explorer().Document.FocusedItem.path """" + r := "" + for item in Explorer().Document.SelectedItems + r .= """" item.path """ " + return r } basename(s) |