how to make closing all tabs after closing program?
Closing tabs
math2001
#2
You want all tabs to be closed after you close sublime text?
- Search up in the command palette
File: Close All. - Close ST
0 Likes
OdatNurd
#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