Live data from Hacker News

E text editor version 2 released

e-texteditor.com

11–20 of 48 posts

Re: E text editor version 2 released

#11

Alternate headline: Textmate clone beats Textmate to version 2. This was pretty much my text editor of choice when I had to use a Windows box.

In other news, Chrome, a Firefox clone, has beaten Firefox to version 4, and also to version 5...

... Or maybe, just maybe, comparing version numbers across different programs is completely useless.

Re: E text editor version 2 released

#12
post #5
post #4

Earlier quoted context omitted.

Watch the screencast. This editor also has multiple-cursor editing.

As far as I see, it isn't "true" multiple-cursor editing like Sublime has. At least as far as I could tell from the video. The difference being, in true multi-cursor selections, you actually have several cursors which behave like cursors . So, for example, you can do "ctrl+right", and all the cursors move forward one word. Even if all the words are a different length, the cursors behave correctly. This seems like a s…

I can't imagine a situation where this functionality would be useful. Can you give an example?

Re: E text editor version 2 released

#13
post #12
post #5

Earlier quoted context omitted.

As far as I see, it isn't "true" multiple-cursor editing like Sublime has. At least as far as I could tell from the video. The difference being, in true multi-cursor selections, you actually have several cursors which behave like cursors . So, for example, you can do "ctrl+right", and all the cursors move forward one word. Even if all the words are a different length, the cursors behave correctly. This seems like a s…

I can't imagine a situation where this functionality would be useful. Can you give an example?

I'm not sure exactly the type of functionality he's talking about, but in a shared session, the ability of two people to modify a file simultaneously would be extremely useful in certain circumstances.

Re: E text editor version 2 released

#14
post #11

Alternate headline: Textmate clone beats Textmate to version 2. This was pretty much my text editor of choice when I had to use a Windows box.

In other news, Chrome, a Firefox clone, has beaten Firefox to version 4, and also to version 5... ... Or maybe, just maybe, comparing version numbers across different programs is completely useless.

Better not compare releases and new features either ... like it or not TextMate is stagnant.

Re: E text editor version 2 released

#15
post #12
post #5

Earlier quoted context omitted.

As far as I see, it isn't "true" multiple-cursor editing like Sublime has. At least as far as I could tell from the video. The difference being, in true multi-cursor selections, you actually have several cursors which behave like cursors . So, for example, you can do "ctrl+right", and all the cursors move forward one word. Even if all the words are a different length, the cursors behave correctly. This seems like a s…

I can't imagine a situation where this functionality would be useful. Can you give an example?

When one doesn't know how to use regexs for S&R?

Re: E text editor version 2 released

#16
post #12
post #5

Earlier quoted context omitted.

As far as I see, it isn't "true" multiple-cursor editing like Sublime has. At least as far as I could tell from the video. The difference being, in true multi-cursor selections, you actually have several cursors which behave like cursors . So, for example, you can do "ctrl+right", and all the cursors move forward one word. Even if all the words are a different length, the cursors behave correctly. This seems like a s…

I can't imagine a situation where this functionality would be useful. Can you give an example?

When I get some time, I'll write it up more fully with some screencasts.

For now, I'll try explaining: the way I think of it is, it lets you do the exact same thing as macros, except live. Macros in vim/emacs/others are often touted as a great feature, and they are. In vim for example, formatting a huge column of, say, html text involves formatting one row using the proper keyboard commands, then repeating the action multiple times. But with multiple selection, you can operate on all the rows at once, easily seeing what it is you're doing and how it's affecting all the rows.

Maybe even more importantly, it makes it much easier to do activities you wouldn't dream of doing in a macro, since it's much easier and more light-weight. For example, say I have two very similar if statements, one which deals with case "x" and one with case "y". Say I wanted to add a small piece of code to both. I can, with one command, select both "if"s, then just write away that piece of code. Lets say each "if" has a different variable name, I can actually move the cursor up to the variable name, select the name, then paste it every time I need to use it. This is the kind of repetitive task that happens a lot in real-life code, but which you would never use a macro for since it takes to long to make work. With multiple cursors, it works easily.

Summary: multiple cursors make macro-like things 20 times more intuitive and much easier in practice, meaning you use them more, meaning you do less repetitive stuff.

Hope that helps explain it; for more details, you'll have to wait/check out Sublime yourself.

Re: E text editor version 2 released

#17
post #12
post #5

Earlier quoted context omitted.

As far as I see, it isn't "true" multiple-cursor editing like Sublime has. At least as far as I could tell from the video. The difference being, in true multi-cursor selections, you actually have several cursors which behave like cursors . So, for example, you can do "ctrl+right", and all the cursors move forward one word. Even if all the words are a different length, the cursors behave correctly. This seems like a s…

I can't imagine a situation where this functionality would be useful. Can you give an example?

There are all kinds of uses, but generally, they're all a crutch for fucking something up in the first place. Like, for instance, in a Django model, where you've got a bunch of CharFields, so you copy and paste one line 8 + times, and edit the name of the field... and then realise that you've spelt it "CahrField".

With a multicursor editor, you just drag the mouse over that area to put a cursor on all those lines, and then type the fixed version to apply to all at once.

Regexes would do just as well, but depending on how comfortable you are with them this is a bit more rapid.

Re: E text editor version 2 released

#18
post #5
post #4

Earlier quoted context omitted.

Watch the screencast. This editor also has multiple-cursor editing.

As far as I see, it isn't "true" multiple-cursor editing like Sublime has. At least as far as I could tell from the video. The difference being, in true multi-cursor selections, you actually have several cursors which behave like cursors . So, for example, you can do "ctrl+right", and all the cursors move forward one word. Even if all the words are a different length, the cursors behave correctly. This seems like a s…

I believe it is "true" multi-cursor (I went from e -> Sublime, and used it semi-frequently), but you'd have to test to confirm (I only used a limited subset of the functionality).

Regardless, I really, really love Sublime too. I wish it was available on other platforms.

Re: E text editor version 2 released

#19
post #12
post #5

Earlier quoted context omitted.

As far as I see, it isn't "true" multiple-cursor editing like Sublime has. At least as far as I could tell from the video. The difference being, in true multi-cursor selections, you actually have several cursors which behave like cursors . So, for example, you can do "ctrl+right", and all the cursors move forward one word. Even if all the words are a different length, the cursors behave correctly. This seems like a s…

I can't imagine a situation where this functionality would be useful. Can you give an example?

I think it is neat in theory, but in practice I find sublime's multi-cursor thing more of a pain.

Across a whole document I just don't trust it to do what I am expecting when I can't see all the changes on the screen at once. Search and replace remains a much more intuitive (to me) approach.

Post reply on HN