Is there a way to save/sync collapsed code from session to session in Sublime Text 3, now that the BufferScroll plugin has been removed?
相关问题
- How do you configure MinGW with Sublime Text 3?
- Code/text folding in SWING
- How to add custom HTML tags in Sublime Text 3
- Not able to run selected lines in REPL R in sublim
- Change map type of an MKMapView
相关文章
- Automatically select pasted text in Sublime Text 3
- Sublime Text 3: how to bind a shortcut to a specif
- How to make Sublime Text 3 default templates
- How can a Sublime Text build system access the con
- In Sublime Text 3, how to have shortcuts for “Buil
- Configure Sublime Text build system for Scala?
- Can't open multiple files in Sublime Text 3
- How do you execute a lua file in sublime text 3?
You could use
AutoFoldCode
which is package just for that xD. It's available via package control.Here's the background story (I can't find the link, the author might have deleted it, so I'm paraphrasing). Basically, the author of Package Control requested that, instead of using dates as version numbers (such as
2016.03.18.06.34.41
for the most recent version of BufferScroll), package authors should use semantic versioning similar to how Github suggests. titoBouzout, who is not only the author of BufferScroll, but of many other very popular packages such as SideBarEnhancements, Tag, and SideBarGit, tried converting his style to something likev2016.03.18
, but apparently Github thought the version number was too high. Or something. I wish I had the original explanation.At any rate, he was unable to do that, and got all upset (to put it politely) when informed/told that he would have to move to a versioning scheme that nearly all other software on Package Control uses. Instead, he decided to take his ball and go home. He's keeping his own versioning scheme, and keeping his packages available on Github, but they won't be on Package Control any more.
Users will manually have to open the Command Palette, select
Package Control: Add Repository
, then enter the Github URL to the repo, such as https://github.com/titoBouzout/BufferScroll (make sure there's no.git
on the end). They will need to do this for each and every titoBouzout package they want to use. The advantage of this method over directlygit clone
ing into thePackages
directory is that updates are pushed automatically, just like with Package Control packages.EDIT Fortunately, even though all issues have been deleted from SideBarEnhancements, I still had the relevant issue (Google cache of page before deletion) open on my work laptop. Here is the author's explanation:
UPDATE
So, it appears the author has caved to pressure, or changed his mind, or something, but all his packages are now available again via Package Control, at least for now.