-
Notifications
You must be signed in to change notification settings - Fork 30
Description
Concerning the evaluation of code lines via OSC, it is currently possible to select the tab and obviously the line.
However, currently, it does not integrate the selection of different panes, if you split right/left or up/down or a new window.
So, it selects the window and pane currently selected.
It would be great, if we would select the window and pane with the selection of line.
Currently, via SuperCollider, you can change the tab, the line and position with something like this :
o = NetAddr.new("127.0.0.1", 3333);
o.sendMsg("/pulsar/eval", \type, 'line', \tab, 0, \row, 1, \column, 1);
With a new implementation integrating the pane and window, it could look like this :
o.sendMsg("/pulsar/eval", \type, 'line', \win, 0, \pan, 0, \tab, 0, \row, 1, \column, 1);
And if a window / pane / tab is not provided or is not available, it selects the current window / pane or tab.
I do not have the competence to implement that right now.
But I could try to look for with a little bit of help or if anyone puts me in the right direction ?
Would it be useful to others than me ?