On Nov 14, 2014, at 20:02, Alex Popescu <[email protected]> wrote: > 1.5 years later and I still don't know how to do this :-(. ______________________________________________________________________
Hey Alex, Look in the expert prefs section of the help. defaults write com.barebones.bbedit ProjectsListCanAcquireKeyboardFocus -bool YES Control-<Tab> moves you serially between edit-pane, project-file-pane, currently open documents pane, worksheet & scratchpad pane. If you're in the Live-Search field <Tab> will pop you into the project-file-pane instead of into the edit-pane. I find all that to be a pain (pun intended) and don't use the feature much. To toggle it on/off: #! /usr/bin/env bash bbSetting=$(defaults read com.barebones.bbedit ProjectsListCanAcquireKeyboardFocus 2>/dev/null); if [[ $bbSetting == "" ]] || [[ $bbSetting == 0 ]]; then defaults write com.barebones.bbedit ProjectsListCanAcquireKeyboardFocus -bool YES osascript -e "display notification \"TRUE\" with title \"BBEdit\" subtitle \"Allow Project File List Keyboard Focus\"" elif [[ $bbSetting == 1 ]]; then defaults write com.barebones.bbedit ProjectsListCanAcquireKeyboardFocus -bool NO osascript -e "display notification \"FALSE\" with title \"BBEdit\" subtitle \"Allow Project File List Keyboard Focus\"" fi * Tested only on 10.9.5. -- Best Regards, Chris -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a problem, please email "[email protected]" rather than posting to the group. Follow @bbedit on Twitter: <http://www.twitter.com/bbedit> --- You received this message because you are subscribed to the Google Groups "BBEdit Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected].
