Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
Activate `Prefer tabs when opening documents` only for one application
In macOS 11.6, I can go to System Preferences->General
and activate the Prefer tabs when opening documents
option so that new windows are opened as new tabs. This setting will influence many applications e.g. Mail, Terminal, Finder etc.
How can I enable this only for one specific application, e.g. the Terminal, without influencing the other applications?
1 answer
The setting can be changed on a per application basis with
defaults write -app terminal AppleWindowTabbingMode -string always
(replace terminal
with the name of the app you want to change)
Important: this only works if the application in question is not running. This is a bit tricky if, like me, you want to change the behaviour of the terminal itself, but one can temporarily install another terminal emulator like iTerm, execute the command and then uninstall again.
0 comment threads