Thanks for the reply and yes I am writing a new plugin and here is my code.
[code]import sublime
import sublime_plugin
import os, subprocess
class SpliterCommand(sublime_plugin.TextCommand):
def on_done(self, Regex):
self.window.set_layout({
“cols”: [0, 0.5, 1],
“rows”: [0.0, 0.33, 0.66, 1.0],
“cells”: [0, 0, 1, 3], [1, 0, 2, 1], [1, 1, 2, 2], [1, 2, 2, 3]]
})
def run(self, edit):
self.editview = edit
self.window = sublime.active_window()
self.window.show_input_panel('User Input', "Hello",self.on_done,None,None)
getAllViews = self.window.layouts()
jobEdit = jobView.begin_edit()
jobView.insert(edit, 0, 'Hello')
jobView.end_edit(jobEdit)[/code]
Basically this will split the view to 4 layout and I want to insert some info to the 3 layouts in the right side. That’s what I am trying do