Home  >  Article  >  Development Tools  >  Where are sublime files saved?

Where are sublime files saved?

下次还敢
下次还敢Original
2024-04-03 15:51:20811browse

Where are Sublime files saved?

Short answer:

Sublime Text files are saved in the local storage directory of the operating system.

Detailed instructions:

Sublime Text files are saved in the following location:

Windows:

  • {User}\AppData\Roaming\Sublime Text (version number)\Indexed\
  • For example: C:\Users\John Doe\AppData\Roaming\Sublime Text 4\Indexed\

macOS:

  • ##~/Library/Application Support/Sublime Text (version number)/ Packages/
  • For example:
  • ~/Library/Application Support/Sublime Text 4/Packages/

Linux:

  • {User directory}/.config/sublime-text-$(version number)/Packages/
  • For example:
  • /home/john. doe/.config/sublime-text-4/Packages/

Specific file location:

  • .sublime-project File: In the project root directory, contains information about project settings.
  • .sublime-workspace File: In the project root directory, contains settings for multiple project files.
  • .sublime-settings File: In the Packages/User directory, contains user-defined settings.
  • Custom code, plug-ins and themes: In the Packages directory.
  • Unsaved files: In the Local directory, the suffix is ​​.tmp.

Additional Notes:

    The version number varies depending on the Sublime Text version (e.g., 4, 3).
  • User directories vary by operating system (e.g. "AppData Roaming" in Windows).
  • If you are looking for a specific file, you can use Sublime Text's Go to File command (
  • Ctrl P).

The above is the detailed content of Where are sublime files saved?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn