Some default extensions for the Olive notebook editor.
This package contains a number of default extensions. In order to load a given extension, simply use using on the module.
using OliveDefaults: StylerAdd the code above to your olive.jl home file after adding OliveDefaults, for more information checkout installing extensions.
The styler extension allows the end-user to create and load their own stylesheets! This allows for an easy way to customize the way Olive looks, especially when it comes to color.
using OliveDefaults: StylerThe docbrowser creates pages of module documentation for every name defined within the current notebook. What this means is that we can browse docstrings in Markdown based on what package they are from.
using OliveDefaults: DocBrowserThe autocomplete module does exactly what one might expect -- this package adds autocomplete with spacebar presses.
using OliveDefaults: AutoComplete