AutoFoldCode
A Sublime Text package that saves/restores folded code regions in files automatically.
Details
Installs
- Total 8K
- Win 5K
- Mac 2K
- Linux 1K
Jun 9 | Jun 8 | Jun 7 | Jun 6 | Jun 5 | Jun 4 | Jun 3 | Jun 2 | Jun 1 | May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 1 | 0 | 2 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 3 | 0 | 1 | 2 | 0 | 1 | 3 | 1 | 0 | 0 | 3 | 5 | 2 | 3 | 5 | 1 | 0 | 5 | 3 | 0 | 4 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 2 | 2 | 0 | 1 | 0 | 3 |
Mac | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 2 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 2 | 0 |
Linux | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 5 | 1 | 4 | 1 | 5 | 1 | 0 | 1 | 0 | 10 | 0 | 0 | 5 | 1 | 8 | 2 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
AutoFoldCode 
A Sublime Text package that:
- saves/restores folded code regions in files automatically
- saves/restores selections in files automatically
This plugin makes folded code regions and selections persist - whether you're just opening/closing a file, starting/quitting Sublime Text or rebooting your computer, AutoFoldCode will restore your code folds and selections with no hassle.
Installation
Automatic (preferred)
- Open the Command Palette, and find
Package Control: Install Package
. - Search for
AutoFoldCode
and install.
Manual
# To install, clone this repository into you Sublime Packages directory:
cd /path/to/packages/directory
git clone https://github.com/Vasily-X/AutoFoldCode.git
# To update to the latest:
git pull origin master
Usage
Once installed, AutoFoldCode will automatically begin persisting code folds.
This package includes some useful commands:
AutoFoldCode: Clear All
- This command will clear AutoFoldCode's cache, and unfold any folded regions in open views.
AutoFoldCode: Clear Current File
- This command will remove the current file's folded regions from the cache, and unfold all folded regions in the file.
AutoFoldCode: Unfold All Open Files
- This unfolds all open files in all open windows.
- If you want to just unfold just the current file, Sublime Text already includes the
"unfold_all"
command for this.
Configuration
max_buffer_size
- By default, AutoFoldCode will not save folds in any view whose length exceeds
MAX_BUFFER_SIZE_DEFAULT
characters. You can override this value by supplying a"max_buffer_size": <int>
value in yourAutoFoldCode.sublime-settings
file.
- By default, AutoFoldCode will not save folds in any view whose length exceeds
save_selections
- You can also disable the feature which saves/restores selections by setting
"save_selections": false
in yourAutoFoldCode.sublime-settings
file.
- You can also disable the feature which saves/restores selections by setting
FAQ
- “When I start Sublime Text, my code folds/selections aren't restored immediately”
- This is because AutoFoldCode hasn't loaded yet. Once Sublime Text initialises AutoFoldCode, then your folds/selections will be restored.
- “Sometimes AutoFoldCode folds my code in the wrong places”
This will occur if you have closed Sublime Text, edit the file with another editor, then re-open Sublime Text.This used to occur in older versions of this plugin, but shouldn't anymore since it now uses a hash to verify the contents of the file.
Credits
Many thanks to the contributors! And of course, thanks to the great developers at Sublime Text.