Perform vim-style editor pane splitting

Using percentage dimensions to absolutely position the panes on screen where they need to be located. Flexbox would have been nice, but unfortunately I could not work around what seem to be bugs (or at least major inconveniences) in its current implementation.
This commit is contained in:
Nathan Sobo
2012-03-19 16:48:13 -06:00
parent 9fab492f66
commit 81e5a10ddd
5 changed files with 173 additions and 68 deletions

View File

@@ -4,3 +4,7 @@ _.mixin
remove: (array, element) ->
array.splice(array.indexOf(element), 1)
sum: (array) ->
sum = 0
sum += elt for elt in array
sum