Sublime Forum

Closing tabs

#1

how to make closing all tabs after closing program?

0 Likes

#2

You want all tabs to be closed after you close sublime text?

  1. Search up in the command palette File: Close All.
  2. Close ST
0 Likes

#3

nah, i want all last tabs will be closed when ST start

0 Likes

#4

The configuration option hot_exit controls this; it defaults to being turned on, but if you turn it off in your user settings everything should open in a clean state (i.e. an empty window) the next time you start sublime.

// Exiting the application with hot_exit enabled will cause it to close
// immediately without prompting. Unsaved modifications and open files will
// be preserved and restored when next starting.
//
// Closing a window with an associated project will also close the window
// without prompting, preserving unsaved changes in the workspace file
// alongside the project.
"hot_exit": true,
1 Like