This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Makes the scrollbar a little bit better to see. | |
atom-text-editor.editor ::-webkit-scrollbar-thumb { | |
background: #666 !important; | |
} | |
// Bidirectional text is broken, so let's pretend it doesn't exist. | |
atom-text-editor.editor .line { | |
unicode-bidi: bidi-override; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (action.toindex < 0) return state; | |
var olditem = state.get(action.index); | |
var newlist = state.delete(action.index).insert(action.toindex, olditem); | |
return newlist; |
NewerOlder