Adds missing scrollbarStyle EditorConfiguration attribute (#20050)

[Codemirror documentation](http://codemirror.net/doc/manual.html) (search for `scrollbarStyle`)
This commit is contained in:
bodeyb
2017-09-26 14:41:14 -04:00
committed by Mohamed Hegazy
parent 82ace18841
commit a06bec94c5

View File

@@ -765,6 +765,12 @@ declare namespace CodeMirror {
/** Determines whether the gutter scrolls along with the content horizontally (false)
or whether it stays fixed during horizontal scrolling (true, the default). */
fixedGutter?: boolean;
/**
* Chooses a scrollbar implementation. The default is "native", showing native scrollbars. The core library also
* provides the "null" style, which completely hides the scrollbars. Addons can implement additional scrollbar models.
*/
scrollbarStyle?: string;
/** boolean|string. This disables editing of the editor content by the user. If the special value "nocursor" is given (instead of simply true), focusing of the editor is also disallowed. */
readOnly?: any;