Re: What IDE are you using?
Posted: Sun Oct 07, 2012 1:02 am
The icon looks better than Notepad++!
Yes, that's what I meant.BlackBulletIV wrote:You forgot multiple cursors! That's one of the best features! (Unless of course you were referencing that by "rename multiple variables at the same time.")
Nope.BlackBulletIV wrote:Also Notepad++ doesn't have auto-indent?
In my opinion, NOTEPAD + + has all of these features, except "Rename multiple variables at the same time", "Cross platform".Nsmurf wrote:Roland_Yonaba wrote:Convince me, what specific features have you experienced that you never had with Notepad++ ?
- Auto indenting. This is a big deal for me.
- Goto anything. In the small project i was testing it on, this isn't such a big deal, but for larger projects it's great!
- Projects. They save all the files you were working on, where you were in those files, unsaved changes, ect.
- Batch edits. This is something i wouldn't use often, but it would be very useful sometimes.
- Lots of plugins.
- F7 runs the current project in *any* way you specify.
- Snippets. Save code templates for later reuse.
- Open entire folders, instead of just files.
- Auto complete for parentheses, brackets, ect.
I think i was missing some of the features of np++ then. Auto indenting? Goto anything? Projects? Does np++ really have all those? where are they?AntonioModer wrote:In my opinion, NOTEPAD + + has all of these features, except "Rename multiple variables at the same time", "Cross platform".
Plus of the "Sublime Text" for me is - "Python based plugin API (built in Python console to interactively experiment in real time)".
Code: Select all
Editor::Type()
{
if(most_features != all_features && additional_plugins != native_implementation)
{
AwesomeEditor = 'Sublime';
}
else
{
AwesomeEditor = 'Notepad++';
}
return AwesomeEditor;
}
Code: Select all
editors = {Sublime, NotepadPlusPlus}
for i, v in ipairs(editors) do
if v.alreadyInstalled then
print(v.name)
break
end
end
http://npp-community.tuxfamily.org/docu ... management - this is "Projects".Nsmurf wrote:I think i was missing some of the features of np++ then. Auto indenting? Goto anything? Projects? Does np++ really have all those? where are they?AntonioModer wrote:In my opinion, NOTEPAD + + has all of these features, except "Rename multiple variables at the same time", "Cross platform".
Plus of the "Sublime Text" for me is - "Python based plugin API (built in Python console to interactively experiment in real time)".