Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes #125
  • Loading branch information
miped committed Feb 8, 2015
1 parent 89a89c3 commit 3832541
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions SublimeGit.sublime-settings
Expand Up @@ -70,6 +70,18 @@
*/
"git_status_open_files_transient": true,

/*
* Disable vintageous mode
*
* Vintageous is disabled by default, since otherwise
* you'd have to enter insert mode to use any of the
* SublimeGit keyboard shortcuts. If you know what
* you're doing, and you want a different behavior
* you can enable vintageous in the status view by
* setting this to false.
*/
"git_status_disable_vintageous": true,

/*
* Change behavior of the status bar message
*
Expand Down
2 changes: 1 addition & 1 deletion sgit/status.py
Expand Up @@ -493,7 +493,7 @@ def run(self, refresh_only=False):

view.settings().set('git_view', 'status')
view.settings().set('git_repo', repo)
view.settings().set('__vi_external_disable', True)
view.settings().set('__vi_external_disable', get_setting('git_status_disable_vintageous') is True)

for key, val in list(GIT_STATUS_VIEW_SETTINGS.items()):
view.settings().set(key, val)
Expand Down

0 comments on commit 3832541

Please sign in to comment.