Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
c79e5a97
Commit
c79e5a97
authored
Oct 08, 2013
by
Robby Russell
Browse files
Merge pull request #2132 from jkaving/forklift2
Add support for ForkLift 2 to the ForkLift plugin
parents
bbe4ea54
2be4158d
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/forklift/forklift.plugin.zsh
View file @
c79e5a97
# Open folder in ForkLift.app from console
# Open folder in ForkLift.app
of ForkLift2.app
from console
# Author: Adam Strzelecki nanoant.com, modified by Bodo Tasche bitboxer.de
# Author: Adam Strzelecki nanoant.com, modified by Bodo Tasche bitboxer.de
# Updated to support ForkLift2 by Johan Kaving
#
#
# Usage:
# Usage:
# fl [<folder>]
# fl [<folder>]
...
@@ -22,9 +23,33 @@ function fl {
...
@@ -22,9 +23,33 @@ function fl {
fi
fi
fi
fi
osascript 2>&1 1>/dev/null
<<
END
osascript 2>&1 1>/dev/null
<<
END
tell application "ForkLift"
activate
try
end tell
tell application "Finder"
set appName to name of application file id "com.binarynights.ForkLift2"
end tell
on error err_msg number err_num
tell application "Finder"
set appName to name of application file id "com.binarynights.ForkLift"
end tell
end try
if application appName is running
tell application appName
activate
end tell
else
tell application appName
activate
end tell
repeat until application appName is running
delay 1
end repeat
tell application appName
activate
end tell
end if
tell application "System Events"
tell application "System Events"
tell application process "ForkLift"
tell application process "ForkLift"
try
try
...
@@ -36,7 +61,7 @@ function fl {
...
@@ -36,7 +61,7 @@ function fl {
keystroke "g" using {command down, shift down}
keystroke "g" using {command down, shift down}
tell sheet 1 of topWindow
tell sheet 1 of topWindow
set value of text field 1 to "
$PWD
"
set value of text field 1 to "
$PWD
"
keystroke return
keystroke return
end tell
end tell
end tell
end tell
end tell
end tell
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment