Thank you anyway for fast reaction. Working good
BufferScroll
Hi,
Is this working in ST3? Doesnāt seem to work in mine Hoping for an update soon. thanks
Here: github.com/SublimeText/BufferScroll/tree/st3
Semi working ā ST insist to restore scroll at funny positions
[quote=ātitoā]Here: github.com/SublimeText/BufferScroll/tree/st3
Semi working ā ST insist to restore scroll at funny positions[/quote]
Thanks!!!
tito,
Thanks for looking into this already. Now that ST3 is in open beta, Iām trying to get set up with it to write and BufferScroll is essential (I have been using it daily since you got it to its current level of functionality, all that time ago, thanks).
Now in ST3 (Iām running Win7x64, if that makes a difference) and I can get typewriter scrolling working fine, but no scroll sync. It will appear to scroll sync briefly if I erase the user settings file and throw in a fresh copy of the default settings file for the plugin, but the only file Iāve seen scroll sync even then has been the default settings file (Iāve had a long plaintext and a short plaintext file open and ready to go for testing but neither have responded), and even that behavior subsides quickly.
Seems suspicious to me, like maybe something in ST3 is changed or broken, but right now, ST3 is nearly useless (funny how the lack of your plugin cripples the whole thing for this particular user).
Any thoughts on what might be going on here? Iāve made sure to try removing the file type specific settings you made as examples in the default setting file and also leaving them be and setting scroll sync for plaintext to true. Iāve also gone in with fresh copies of the default settings, copied the whole thing over to user, then set them all to true, just in case there was some conflict. Obviously some folk have it working, and Iāve seen it fire a couple times here, so I donāt know what else I might be doing wrong.
Thanks,
Kensai
Alright, after much futzing around with things (basically just trying the same things over and over, restarting ST3, over and over, yada yada yada), it seems to be working properly now. For now ;-p Of course, having to be this stubborn to get a plugin to activate still seems to suggest some small incompatibility between BS and ST3 or beta bugs just on ST3s side. Hereās hoping it keeps working, because other than this little headache, ST3 is looking like even more of a hotrod than ST2 was after Iād tricked it out.
Thanks tito.
Kensai,
I think is not your fault, but a malfunctioning of the package. I reviewed the last days the functionality and made a little tweak to the sync scroll logic. Maybe you want to update, and let me know if still present issues. I was able to reproduce the problem at first, but not lately, so I *think *is fixed.
github.com/SublimeText/BufferScroll/tree/st3
Regards,
How are you guys installing this for Sublime Text 3? ST3 appears to want itās packages as .sublime-package files and BufferScroll does not install like that when cloned from GitHub.
Are there some instructions on how to do it somewhere?
Whether we can make a selection with:
- only folded region
- only non-folded region (simply excluded fold-marker)
?
Whao, thatās so fast, thank you.
window.run_command(ābuffer_scroll_fold_select_foldedā)
window.run_command(ābuffer_scroll_fold_select_unfoldedā)
I suggest changing BufferScrollFoldSelectUnfolded to:
class BufferScrollFoldSelectUnfolded(sublime_plugin.TextCommand):
def run(self, view):
folds = [item.a, item.b] for item in self.view.folded_regions()]
if folds:
self.view.sel().clear()
prev = 0
for fold in folds:
# sublime.message_dialog(self.view.substr(fold[0]))
self.view.sel().add(sublime.Region(prev, int(fold[0])))
if self.view.substr(fold[1]) == "\n":
prev = int(fold[1]) + 1
else:
prev = int(fold[1])
self.view.sel().add(sublime.Region(prev, self.view.size()))
Nope, if possible consider upgrading, not only it works better and faster, you will also support work invested into new versions. Unless there is one of the few bug that may affect your setup, just upgrade.
I made some updates, and recovered some lost functionality. In theory it should restore scroll and selections in all the situationsā¦ did I broke something!?
Just started using Sublime text recently. I was wondering if you (Tito) would be willing to post the zip for the latest compatible bufferscroll for Sublime text 2, as you did for sidebar enhancements. I will eventually try out sb 3, but am new to advanced text editors, and have only started setting up sb 2, so I donāt want to jump ship just yet. Either way, thanks for your efforts. This package sure does look useful! Thanks!
Iād suggest you to go dirrectly on ST3. Despite its beta status, itās super stable.
Besides that, you will find ST2 compatible packages harder and harder