質問

Each tab in my xcode project can have navigation/debug/utility menus open. If I close those menus on one tab, then switch to the next, they may be open. This is really frustrating! If I want the menus closed, I want them closed on all tabs. How can I change this behavior?

役に立ちましたか?

解決

Each tab:

(1) Copies the state of the tab/window from which it was cloned;

(2) Remembers and maintains its own state individually.

So, either create your new tab at a time when the panes are closed in the current tab (if that is the default you prefer), or else be willing to change the pane state when you switch to a tab if it isn't what you want for that tab.

(Or, don't use tabs, I guess.)

Also, it really helps to know the keyboard shortcuts for opening/closing the panes. When these are second nature, I find this is not such a big deal.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top