Skip to content
This repository has been archived by the owner on Feb 3, 2019. It is now read-only.

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
cice committed Jun 25, 2011
0 parents commit f5f29eb
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Base File.sublime-settings
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme"
}
2 changes: 2 additions & 0 deletions Default (Linux).sublime-keymap
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[
]
3 changes: 3 additions & 0 deletions Default (OSX).sublime-keymap
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[
{ "keys": ["alt+tab"], "command": "focus_next_group" }
]
2 changes: 2 additions & 0 deletions Default (Windows).sublime-keymap
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[
]
5 changes: 5 additions & 0 deletions Global.sublime-settings
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Place user-specific overrides in this file, to ensure they're preserved
// when upgrading
{
"file_exclude_patterns": ".idea"
}
13 changes: 13 additions & 0 deletions focus_next_group.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import sublime, sublime_plugin

class FocusNextGroup(sublime_plugin.WindowCommand):
def run(self):
w = sublime.active_window()
n = w.num_groups()
c = w.active_group()
g = c + 1

if(g == n):
g = 0

w.focus_group(g)
Binary file added focus_next_group.pyc
Binary file not shown.

0 comments on commit f5f29eb

Please sign in to comment.