Does anyone remember DOS Navigator? It has a text editor that allows to copy/paste blocks of text. Does anyone know a Windows text editor with the same capability?

link|improve this question

79% accept rate
feedback

3 Answers

up vote 0 down vote accepted

If you mean selecting and manipulating rectangular blocks of text instead of lines, then a few spring to mind:

  • Far's editor can do that; just hold Alt instead of Shift while selecting
  • Notepad++ can do it as well; just hold Alt+Shift but the implementation is horrible. For example, your block can't extend further to the right than the length of the current line (even though other lines in the block may be longer). In my eyes, this is a bug.
  • Visual Studio also allows this, using Alt+Shift again.
link|improve this answer
feedback

I have fantastic news for you.

MS Word, has always let you do a block highlight.

ALT+drag the mouse.

link|improve this answer
feedback

How about gvim? You can easily copy and paste blocks using yy (yank) and p to paste.

For example, if you wanted to copy 3 lines starting on the line of the cursor, you'd first press Esc to ensure you were in command mode, then 3yy.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.