Skip to content

Commit e6f4552

Browse files
committed
- Fix menu mnemonic. Gets rid of the console nag
- Fix open_inbox command's path problem on Windows
1 parent 53f9347 commit e6f4552

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Main.sublime-menu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
},
6464
{
6565
"caption": "Notes",
66-
"mnemonic": "n",
66+
"mnemonic": "N",
6767
"id": "notes",
6868
"children": [
6969
{ "caption": "-" , "id": "open" },

jotter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ class OpenInboxCommand(sublime_plugin.ApplicationCommand):
5858
def run(self):
5959
root = get_root()
6060
inbox = os.path.join(root, '.brain', 'Inbox.note')
61-
sublime.active_window().run_command("open_file", {"file": inbox})
61+
sublime.active_window().open_file(inbox)
6262

0 commit comments

Comments
 (0)