Live data from Hacker News

List of hidden OS X features, tips and tricks

apple.stackexchange.com

1–10 of 66 posts

Re: List of hidden OS X features, tips and tricks

#6
Didn't see this one on the list - while Command+Tabbing, if you hold down Option while letting go of Command at the end, you'll open a new window in the specified application if it currently doesn't have any open.

It might sound confusing, but it's quite useful if you've closed all the windows of a given app but still have it running.

Re: List of hidden OS X features, tips and tricks

#8

Didn't see this one on the list - while Command+Tabbing, if you hold down Option while letting go of Command at the end, you'll open a new window in the specified application if it currently doesn't have any open. It might sound confusing, but it's quite useful if you've closed all the windows of a given app but still have it running.

wow, thanks for this. when I switched to Mac last year I actually googled around about shortcuts to deal with the lack of a universal 'restore minimized' shortcut.

this doesn't solve it entirely, I think, but can't believe I never came across it.

Re: List of hidden OS X features, tips and tricks

#9
when you pipe something to pbcopy, it doesn't strip any trailing newline:

    echo hi | pbcopy
pasting this would get you hi. so if you want to put the output of a command in the clipboard, you can do something like (where `find .` is your command):

    echo -n $(find .) | pbcopy
that will take advantage of the fact that subshells discard a trailing newline (at least in bash, zsh. probably others..)
Post reply on HN