Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sublime text: how to turn off the synchronized scrolling of the same views to one file?

Tags:

sublimetext3

In Sublime Text(My version is Sublime Text 3), there is 'File->New View into File' feature. When I put two views of the same file into different groups respectively, they seem to scroll synchronizingly with the right a little ahead of the left. So I can't compare two portions of the file which are a little far from each other. Can I turn off this 'smart' feature and how? :)

like image 731
lfree Avatar asked Mar 18 '14 00:03

lfree


People also ask

Is Sublime Text 4 stable?

The first stable release of Sublime Text 4 has finally arrived! We've worked hard on providing improvements without losing focus on what makes Sublime Text great. There are some new major features that we hope will significantly improve your workflow and a countless number of minor improvements across the board.

How do I view side by side in Sublime Text?

If you want to see more than one document at the same time in Sublime Text 3, you could drag a tab out into a second window. Alternatively, you can split the main window into multiple sub-windows, then click and drag your document tabs into the sub-window you prefer.

Which is the latest version of Sublime Text?

3.2.1 (Build 3207)

Is Sublime Text on Mac?

Sublime Text can now utilize your GPU on Linux, Mac and Windows when rendering the interface.


1 Answers

This is probably happening because of an installed plug-in called BufferScroll. But you don't need to uninstall BufferScroll to fix this. You can just change one of its preferences.

  1. From the "Preferences" menu, choose "Package Settings" and then "BufferScroll".
  2. Paste { "synch_scroll" : false } into that file. (If that file is not already empty, just add , "synch_scroll" : false to the last line in that file. )
  3. Save the preferences file and create a new "New View Into File".
like image 171
KatieK Avatar answered Oct 17 '22 22:10

KatieK