mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-07-01 19:49:25 +00:00
[general] Miscellaneous cleanup and formatting
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
function mand {
|
||||
if (( $# > 0 )); then
|
||||
zstyle -s ':prezto:module:osx:man' dash-keyword 'dashkw' || dashkw='manpages'
|
||||
open "dash://$dashkw:$1" 2>/dev/null
|
||||
open "dash://$dashkw:$1" 2> /dev/null
|
||||
if (( $? != 0 )); then
|
||||
print "$0: Dash is not installed" >&2
|
||||
break
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# function pfd {
|
||||
|
||||
osascript 2>/dev/null <<EOF
|
||||
osascript 2> /dev/null <<EOF
|
||||
tell application "Finder"
|
||||
return POSIX path of (target of first window as text)
|
||||
end tell
|
||||
|
@ -11,7 +11,7 @@ local command="cd \\\"$PWD\\\""
|
||||
(( $# > 0 )) && command="${command}; $*"
|
||||
|
||||
the_app=$(
|
||||
osascript 2>/dev/null <<EOF
|
||||
osascript 2> /dev/null <<EOF
|
||||
tell application "System Events"
|
||||
name of first item of (every process whose frontmost is true)
|
||||
end tell
|
||||
@ -19,7 +19,7 @@ EOF
|
||||
)
|
||||
|
||||
[[ "$the_app" == 'Terminal' ]] && {
|
||||
osascript 2>/dev/null <<EOF
|
||||
osascript 2> /dev/null <<EOF
|
||||
tell application "System Events"
|
||||
tell process "Terminal" to keystroke "t" using command down
|
||||
tell application "Terminal" to do script "${command}" in front window
|
||||
@ -28,7 +28,7 @@ EOF
|
||||
}
|
||||
|
||||
[[ "$the_app" == 'iTerm' ]] && {
|
||||
osascript 2>/dev/null <<EOF
|
||||
osascript 2> /dev/null <<EOF
|
||||
tell application "iTerm"
|
||||
set current_terminal to current terminal
|
||||
tell current_terminal
|
||||
@ -43,7 +43,7 @@ EOF
|
||||
}
|
||||
|
||||
[[ "$the_app" == 'iTerm2' ]] && {
|
||||
osascript 2>/dev/null <<EOF
|
||||
osascript 2> /dev/null <<EOF
|
||||
tell application "iTerm2"
|
||||
tell current window
|
||||
create tab with default profile
|
||||
|
Reference in New Issue
Block a user