Skip to content

Commit

Permalink
Merge pull request #20 from wT-/master
Browse files Browse the repository at this point in the history
Few small fixes for Windows compatibility.
  • Loading branch information
fk128 committed Mar 7, 2015
2 parents 53f9347 + 5e803f4 commit 52967e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Main.sublime-menu
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
},
{
"caption": "Notes",
"mnemonic": "n",
"mnemonic": "N",
"id": "notes",
"children": [
{ "caption": "-" , "id": "open" },
Expand Down
4 changes: 2 additions & 2 deletions Notes.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"root": "~/Dropbox/Notes/",
"archive_dir": ".archive",
"jotter_color_scheme": "Packages/PlainNotes/Color Schemes/Sticky-Yellow.tmTheme",
"jotter_date_format" :"%-d %-b %Y",
"jotter_time_format": "%-I:%M %p",
"jotter_date_format" :"%d %b %Y",
"jotter_time_format": "%I:%M %p",
"note_save_extension": "note",
"note_file_extensions": ["md","note"],
"enable_yaml": false,
Expand Down
2 changes: 1 addition & 1 deletion jotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ class OpenInboxCommand(sublime_plugin.ApplicationCommand):
def run(self):
root = get_root()
inbox = os.path.join(root, '.brain', 'Inbox.note')
sublime.active_window().run_command("open_file", {"file": inbox})
sublime.active_window().open_file(inbox)

0 comments on commit 52967e8

Please sign in to comment.