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
351fa065
Commit
351fa065
authored
Apr 09, 2019
by
Umberto Lentini
Committed by
Marc Cornellà
Apr 09, 2019
Browse files
osx: added support for Hyper terminal (#7494)
parent
62abaceb
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/osx/osx.plugin.zsh
View file @
351fa065
...
...
@@ -51,6 +51,17 @@ EOF
end tell
end tell
EOF
elif
[[
"
$the_app
"
==
'Hyper'
]]
;
then
osascript
>
/dev/null
<<
EOF
tell application "System Events"
tell process "Hyper" to keystroke "t" using command down
end tell
delay 1
tell application "System Events"
keystroke "
${
command
}
"
key code 36 #(presses enter)
end tell
EOF
else
echo
"tab: unsupported terminal app:
$the_app
"
...
...
@@ -91,6 +102,19 @@ EOF
end tell
end tell
EOF
elif
[[
"
$the_app
"
==
'Hyper'
]]
;
then
osascript
>
/dev/null
<<
EOF
tell application "System Events"
tell process "Hyper"
tell menu item "Split Vertically" of menu "Shell" of menu bar 1
click
end tell
end tell
delay 1
keystroke "
${
command
}
\n
"
end tell
EOF
else
echo
"
$0
: unsupported terminal app:
$the_app
"
>
&2
...
...
@@ -132,6 +156,19 @@ EOF
end tell
EOF
elif
[[
"
$the_app
"
==
'Hyper'
]]
;
then
osascript
>
/dev/null
<<
EOF
tell application "System Events"
tell process "Hyper"
tell menu item "Split Horizontally" of menu "Shell" of menu bar 1
click
end tell
end tell
delay 1
keystroke "
${
command
}
\n
"
end tell
EOF
else
echo
"
$0
: unsupported terminal app:
$the_app
"
>
&2
false
...
...
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