How to change speed of text movement when paging up / down in Sublime Text 3?

When I edit a file in Sublime Text 3, if I click Page Down, the text goes to the next page. How do I change the speed (or not scroll at all)?

+3


source to share


1 answer


  • Go to Settings -> Settings - User
  • Add the line:

    "scroll_speed": 1.0
    
          

(Note: this is a JavaScript file. If you add the above line to the end, remember to add a comma to the previous line, if you add a line in the middle somewhere, add a comma!)



For speed (from default settings):

// Set to 0 to disable smooth scrolling. Set to a value between 0 and 1 to
// scroll slower, or set to larger than 1 to scroll faster

      

+3


source







All Articles