Hello how can I activate the tabs on macos? how about windows? when opening more than two files with sublimetext with macos it opens me with two different pages without using tabs.
(Sorry for my English)
Hello how can I activate the tabs on macos? how about windows? when opening more than two files with sublimetext with macos it opens me with two different pages without using tabs.
(Sorry for my English)
If you’re opening files from Finder, you want to change the value of this setting to never
:
// When files are opened from a file explorer or from the command line, this
// controls whether a new window is created or not.
// - "never": Never open a new window unless no window is open.
// - "always": Always open files in a new window.
// - "finder_only": (macOS only) Only open files in a new window when
// opening them from finder or dragging onto the dock icon.
//
// On Mac, this value is overridden in the platform specific settings.
"open_files_in_new_window": "never",
The default for the setting is never
except on MacOS, where the default is finder_only
so that opening files via finder or draging files onto the dock icon opens a new window instead of a new tab in the currently active window.