You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oh-my-fish/plugins/osx/tab.fish

8 lines
256 B
Fish

# Open the current directory in a new tab
function tab -d "Open the current directory in a new tab"
osascript 2>/dev/null -e '
tell application "System Events"
tell process "Terminal" to keystroke "t" using command down
end tell'
end