Skip to content

Version 0.1 of my Sublime split tool that simulates how emacs does window splitting.

Notifications You must be signed in to change notification settings

rachidasen/sublime-DynamicSplit

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

DynamicSplit is a [Sublime Text 2][sublime] plugin that tries to create some of the functionality of emacs style Window splitting.


Unlike Sublime's default Window splitting feature, this package splits the current Window in half, either vertically or horizontally. It also duplicates the view of the current file into the newly created view.

Ctrl+8 - horizontal split Ctrl+9 - vertical split Ctrl+0 - undo split (hacked for now)

For example:

------------------------
|          |           |
|          |           |
|  A       |    B      |
|          |           |
|          |           |
|          |           |
|          |           |
------------------------



If you do Ctrl-8 while editing file named "B in the above scenario, you get

------------------------
|          |           |
|          |           |
|  A       |    B      |
|          |---------- |
|          |           |
|          |    B      |
|          |           |
------------------------


If you do Ctrl-9, you get

------------------------
|          |     |     |
|          |     |     |
|  A       | B   |  B  |
|          |     |     |
|          |     |     |
|          |     |     |
|          |     |     |
------------------------

(tested with 3beta)

-James Liang

About

Version 0.1 of my Sublime split tool that simulates how emacs does window splitting.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 91.4%
  • JavaScript 8.6%