Skip to content

Commit fd9578a

Browse files
committed
User settings and menu entries in Preferences
1 parent faa737d commit fd9578a

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
// Default SublimeIPythonNotebook Preferences file
2+
//
3+
// DO NOT EDIT THIS FILE! Copy it to your Packages/User folder and modify that copy.
4+
//
5+
16
{
2-
"color_scheme": "Packages/SublimeIPythonNotebook/ipynb_dark.hidden-tmTheme"
7+
//Color scheme for displaying notebooks
8+
//Light:
9+
"color_scheme": "Packages/IPython Notebook/ipynb_light.hidden-tmTheme",
10+
//Dark:
11+
//"color_scheme": "Packages/IPython Notebook/ipynb_dark.hidden-tmTheme",
312
}

ipy_view.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ def __init__(self, view, notebook_id, baseurl):
288288
self.baseurl = baseurl
289289
view.set_scratch(True)
290290
#view.set_syntax_file("Packages/Python/Python.tmLanguage")
291-
view.set_syntax_file("Packages/SublimeIPythonNotebook/SublimeIPythonNotebook.tmLanguage")
291+
view.set_syntax_file("Packages/IPython Notebook/SublimeIPythonNotebook.tmLanguage")
292292
view.settings().set("ipython_notebook", True)
293293
self.cells = []
294294
self.notebook_id = notebook_id

0 commit comments

Comments
 (0)