List of hidden OS X features, tips and tricks
apple.stackexchange.com
List of hidden OS X features, tips and tricks
1–10 of 66 posts
Re: List of hidden OS X features, tips and tricks
#2https://encrypted.google.com/search?q=hidden%20features%20of...
Re: List of hidden OS X features, tips and tricks
#3 defaults write NSGlobalDomain KeyRepeat -int 0Re: List of hidden OS X features, tips and tricks
#4Re: List of hidden OS X features, tips and tricks
#5Re: List of hidden OS X features, tips and tricks
#6It 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
#7Select a word or symbol of interest, and cmd-e to get it in the find buffer.
$ pbpaste | fgrep -i `pbpaste -pboard find`
I have this aliased to pbg, so will typically pipe the output to awk or some such.
Re: List of hidden OS X features, tips and tricks
#8Didn'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.
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 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..)