Skip to content

Instantly share code, notes, and snippets.

! Disable smooth scrolling scripts
! https://gist.github.com/oxguy3/ebd9fe692518c7f7a1e9
/jquery.nicescroll*.js
/jquery.smoothscroll*.js
/jquery.smooth-scroll*.js
/jquery-smoothscroll*.js
/jquery-smooth-scroll*.js
/nicescroll*.js
/smoothscroll*.js
/smooth-scroll*.js
# Command for alt-up
atom.commands.add 'atom-text-editor', 'custom:move-up': ->
editor = atom.workspace.getActiveTextEditor()
for cursor in editor.getCursors()
if not cursor.isAtBeginningOfLine()
cursor.moveToBeginningOfLine()
else
cursor.moveLeft()
cursor.moveToBeginningOfLine()