Hello,
We can use file_open to open file in certain file in certain tab. After file is open, how to move it between tabs? I didn't fine the method in api.
Thanks!
file_open(filename, group=-1, options="")
file_open((filename1, filename2), group=-1, options="")
how to move a file from tab1 to floating tab1 by api
-
- Posts: 2404
- Joined: 25.08.2021 18:15
Re: how to move a file from tab1 to floating tab1 by api
* PROP_INDEX_GROUP: int: index of group with editor's tab, 0-based. Value 0...5: 6 fixed groups, value 6...8: 3 floating groups.
ed.set_prop(PROP_INDEX_GROUP, 6) - move file to floating-1 group.
ed.set_prop(PROP_INDEX_GROUP, 6) - move file to floating-1 group.
Re: how to move a file from tab1 to floating tab1 by api
Get it,thanks~