is there way sublime open files of extension in same window? example, when using 2x2 grid, i'd keep scss files in upper left, haml in upper right, js lower left , search in lower right. i'd use search function, , have files go other 3 tabs instead of search window each time.
i've tried 'open in relevant window' plugin , doesn't appear make difference.
when opening lots of files gets tedious opening them , having manually move them window wasn't active when opening.
edit: i'm working on mac, i'd need works there, or preferably cross platform.
edit: op working on mac, i'll leave in case windows users interested in solution.
---
perhaps shell extension help.
if you're familiar registry, can create new key opens selected files in new window. create modified version of sublime text has.
the existing key sublime text exists here:
hkey_classes_root\*\shell\open sublime text\command with default value of (depending on version):
c:\program files\sublime text 3\sublime_text.exe "%1" you create new key so:
hkey_classes_root\*\shell\open sublime text (new window)\command then add -n arguement default value:
c:\program files\sublime text 3\sublime_text.exe -n "%1" this create new window every time use shell extension open files , keep multiple files organized in same window.
to take step further, if have programming experience create own shell extension takes list of files , groups them you, in turn can create new windows programmatically.
Comments
Post a Comment