Ayuto wrote:Actually, you can do that with Notepad++ as well. To run the program with a Python interpreter you only need to install a plugin.
Mahi wrote:Sublime also has multiple cursors.
Notepad++ too.
https://notepad-plus-plus.org/features/multi-editing.htmlMahi wrote:You download Plugin Manager by executing one command through the Sublime's console, and then you can download any plugin by accessing your command palette (Ctrl+P remember?) and just type "ins plu" or "inst plug" or anything that resembles "install plugins". You then get a list of all plugins available on GitHub (it downloads them directly from GitHub

) and you can search for plugins right through Sublime.
Oh, did I mention? They're all coded in Python. So you can code your own anytime you want.
Notepad++ also has a plugin manager and AFAIK the plugin are written in Python.
I might take a look at Sublime Text 3. Maybe there are really some neat features that don't exist in Notepad++.
WHAT?? Notepad++ didn't have any of these before!

I'm downloading it now, gotta give it a try!
Edit:Okay uninstalled, no thanks.

I misunderstood the part where you said "you can do that with Notepad++ as well", I thought you meant Notepad++ had a command palette, but you only meant that those things I mentioned as examples can be done in Notepad++ too. The fancy thing is not that you can do a lot in Sublime, it's that you can do a lot
with the command palette. Whenever you wanna do something, you hit Ctrl+P and search for
any action. It's not the actions that are cool, it's the command palette.
Tried it, threw it away. Try Sublime 3's multi-cursor support, cause this isn't anything similar.
Why would I wanna create multiple cursors using my mouse button 1? Or hold down alt to create multiple cursors
right next to the previous ones?
In sublime, I highlight a word (ctrl+d) or a sentence, then I hit ctrl+d to find the next occurrence of that word/sentence (and select it, and add a cursor to it), and I'm free to select any occurrences I want. You can skip occurrences with ctrl+k, ctrl+d.
You can also just hit Alt+F3 to select all occurrences of the selection, or drag using my mouse3 to create multiple cursors everywhere I drag (similar to Notepad++, but I can DRAG through the whole file in 2 seconds, instead of having to click 400 times on each line).
Once you learn to use the multiple cursors (3 shortcuts: ctrl+d, alt+F3, mouse3), you never wanna go back. I guarantee.
Ayuto wrote:Notepad++ also has a plugin manager and AFAIK the plugin are written in Python.
It seems like Notepad++'s plugins are done with C++:
https://notepad-plus-plus.org/contribute/plugin-howto.htmlAnd they're 10 times harder to find and install. And there are so few of them, all of which do so little. Sublime's Package Manager is just so perfect and easy to use, and there's a plugin for everything!
Predz wrote:For managing your own projects I advice using Sublime Text, as Mahi said, the ease of use in this product is crazy. I still have Notepad ++ installed specifically for reading other peoples projects and it is good, but still prefer Sublime for the ease of use when wanting to modify a whole project.
I don't see how is Notepad++ better at reading projects than Sublime? I'm not saying Sublime is better than Notepad++ either, I mean, you're just reading text? But if you're already using Sublime, why have Notepad++ too? Just curious.