diff options
author | John Ankarström <john@ankarstrom.se> | 2020-12-11 16:48:39 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2020-12-11 16:48:39 +0100 |
commit | be8cc462b75235759938ec6d65e6cb305b4ccc06 (patch) | |
tree | c270c5c4023109711698376726da4d3c23ee918f | |
parent | 63a13305b656ce5d2e502773bf2c17c99f3992b3 (diff) | |
download | ahk-be8cc462b75235759938ec6d65e6cb305b4ccc06.tar.gz |
jump: Remove option to open path in current window
-rw-r--r-- | tt.jump.ahk | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tt.jump.ahk b/tt.jump.ahk index 31fe3f7..fba9f0d 100644 --- a/tt.jump.ahk +++ b/tt.jump.ahk @@ -25,21 +25,6 @@ if (JumpPaths[k] != "") Run, % """" JumpPaths[k] """" } ToolTip -return - -; Open in current (or new) Explorer window - -!#s:: -ToolTip, ... -SendInput, {Blind}{LWin Up} -Input, k, L1 -if (JumpPaths[k] != "") - if ((e := Explorer()) != -1) ; (see tt.programs.explorer.ahk) - e.Navigate(JumpPaths[k]) - else - Run, % "explorer """ JumpPaths[k] """" -ToolTip -return ;; -> library |