PKT4=#--Default.sublime-keymap PKT4=f }}MoveToBuffer.py# This plugin allows you to more easily manage pane focus and view location # when in a multiple group (pane) layout # # args[0] value: action # --------------------------------- # move: move the current view (buffer) to a different group (pane) # focus: makes a different group (pane) active # # args[1] value: destination # --------------------------------- # (default) next group # right: next group # down: next group # next: next group # left: previous group # up: previous group # previous: previous group import sublime, sublimeplugin class MoveToBufferCommand(sublimeplugin.TextCommand): def run(self, view, args): window = view.window() if args[1] == "left" or args[1] == "up" or args[1] == "previous": groupIdx = (window.activeGroup() - 1) % window.numGroups() else: groupIdx = (window.activeGroup() + 1) % window.numGroups() if args[0] == "move": window.setViewPosition(view, groupIdx, 100000) # moves to end of existing tabs else: window.focusView(window.activeViewInGroup(groupIdx))PKT4=/m! README.txtViewNav is a handy plugin that adds a little extra awesomeness for moving and navigating around groups/views using some simple key bindings while you have multiple views/panes open in Subime Text. ##Parameters ####_Action_ * __value__: _binding_ - _description_ * _focus_: alt+arrow - makes a different group (pane) active * _move_: alt+shift+arrow - move the current view (buffer) to a different group (pane) ####_Destination_ * __value__: _description_ * _(default)_: next group * _right_: next group * _down_: next group * _next_: next group * _left_: previous group * _up_: previous group * _previous_: previous group PKT4=#--Default.sublime-keymapPKT4=f }}aMoveToBuffer.pyPKT4=/m! README.txtPK