Reputation: 8017
I am searching for an IDE or a small editor which have an ability to "allocate some part of code to a new tab".
Lets say i have a 1000 line file. I want to quickly edit just one method - 30 lines for example. I mark these 30 lines, click something and i am editing these lines in a new tab. And when i have edition finished, it applies to a 1000line file.
I am using mainly Linux but if there is something windows-only program i will test it and give a shot for windows. Please help me (:
Upvotes: 0
Views: 90
Reputation: 10560
I am searching for an IDE or a small editor which have an ability to "allocate some part of code to a new tab".
This feature should be easy to implement in any scriptable editor. For example it took me less than a minute to write the following Zeus editor Lua macro that does exactly what you describe:
function key_macro()
screen_update_disable()
MarkCopyEx()
FileNew()
MarkPasteSmart()
screen_update_enable()
screen_update()
end
key_macro() -- run the macro
Zeus is a Windows based editor, but as I said before, this should be very easy to implement in any scriptable editor.
Upvotes: 2
Reputation:
Upvotes: 1