So I just got my new Eee PC 1000H and it's obviously not a beast of a machine, but it gets the job done with most tasks. I'm looking for a lightweight IDE or text editor (read: lightweight doesn't mean lack of features, just that it's not a bloated piece of crap) The computer itself has a 1.6ghz Atom processor and 1GB of RAM. It's for school if that makes a difference.

There aren't any requirements besides that, I'm just looking for some suggestions on software that could be useful for someone in my situation.

link

80% accept rate
What OS are you running? XP or Linux? And yeah, what programming languages? – davr Oct 6 '08 at 3:25
feedback

closed as not constructive by Kev Sep 30 '11 at 8:01

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

29 Answers

up vote 37 down vote accepted

I personally vote for Notepad++

link
I agree, it is small and has a set of language highlights that make it actually useful out of the box. – stevemac Oct 6 '08 at 4:40
And it's fast, IMHO. – Brent.Longborough Jan 2 '09 at 13:54
Theres also lots of plugins.. From auto-closing XML/HTML tags to the spell-checking addons. – jitbit Sep 27 '10 at 11:47
the most important thing, its opensource but has capabilities like commercial IDE. – Komang Sep 28 '10 at 5:26
2  
Another vote for Geany. Notepad++ is like a text editor on steroids, whereas Geany was built from the ground up as a lightweight IDE. If you need something even lighter than Notepad++, I recommend Notepad2. – 10basetom Jul 11 '11 at 5:59
show 1 more comment
feedback

VIM and/or EMACS depending on your preference are both relatively light weight and have a truely massive set of features and functionality.

EMACS might be a bit easier to pickup for somebody completely new, but taking the time to learn VIM is (imo) worth it. Both might look a bit weird, but keep at it - the power is more than worth the pain.

My advice overall is to check out GVIM.

Good luck.

link
I'd say that you should not only pick GVim, but Cream which is "a modern configuration of the Vim text editor", and it's really awesome. – David The Man Oct 6 '08 at 4:49
We used to make fun of Emacs being big and very bloated, but that was 15 years ago and on ~100MHz Sparc-stations. Nowadays it's really snappy, even on low-end hardware. – JesperE Oct 6 '08 at 7:02
Now you have VS2008... Really big and bloated. And made by MS. A perfect victim! – Seiti Nov 25 '08 at 2:55
Emacs is the only editor with a built in therapist :) – Tim Post Jan 2 '09 at 13:41
feedback

I like jEdit. It does syntax colouring for many languages, has a good plug-in community, and allows split windows etc. I use it all the time.

I also use Vim but only for quick editing.

link
It is also java so cross platform - which can be real useful – Cruachan Nov 18 '08 at 10:20
feedback

Geany is cross-platform and uses the same editor component like Notepad++ and SciTE, but has much better IDE stuff.

link
1  
I go on editor binges every few months to see what's new. I discovered geany about 2 years ago, and haven't been able to shake it for anything else out there yet. Has IDE components with gedit/notepad++ lightweight-ness. – Just a guy Sep 15 '11 at 0:34
feedback

My preference is the E-Text Editor. It's based on TextMate and is designed to be compatible with it's bundle system (when possible). You can get it here. Only problem is, it isn't free, but I find it well worth the price personally.

link
feedback

PsPad gets my vote.

link
feedback

The only one you'll ever need is Editplus. It's very lightweight and includes sftp support, multi language syntax highlighting and is only $30 (the trial never expires too :).

link
Editplus is indeed great. Tried many editors (and still trying some stuff out), but I still think Editpls is the best. – RepWhoringPeeHaa Jan 3 '11 at 22:45
feedback

Zeus - http://www.zeusedit.com

link
feedback

Sublime Text

I'm loving it.

link
1  
+1 I think this one deserves a little more attention. – johnthexiii Mar 13 at 0:08
Sublime text 2 is amazing! Easy to use! – Web_Designer Mar 29 at 0:25
feedback

I've used Eclipse on some pretty old machines without any problems. If you try to load a lot of plugins, RAM usage will go up, so at that point, I would expect a lot of paging, but if you're only doing 1 language at a time, the lazy plugin loading should keep the usage to a minimum.

link
feedback

My preferences (all links go to download page):

For Windows:

For Linux:

link
I'm pretty partial to Nano, glad to see it mentioned :) – Tim Post Jan 2 '09 at 13:40
feedback

If windows I keep falling back to TextPad.

link
feedback

I have an Acer Aspire One with the Atom as well. It has 1GB ram. I run Eclipse just fine. I can surf Firefox, listen to music, and code without any problems.

I don't think the Atom is as slow as people think.

link
eclipse is slow on my dual core 2ghz :( – davr Oct 6 '08 at 3:26
I don't find it slow at all. Some things take longer than on my desktop, but the performance is useable overall. – jjnguy Oct 6 '08 at 3:32
feedback

I like The Programmer's File Editor (PFE) which can be found at http://www.lancs.ac.uk/staff/steveb/cpaap/pfe.

Very lightweight (624k) and Free!

Features include (from the Readme.txt):

PFE includes the following features:

  • The size of file it can handle is limited only by the total amount of virtual memory available
  • No arbitrary limit on the number of lines a file can contain
  • It can edit multiple files, the number being limited only by the available system resources
  • Allows multiple edit windows showing the same file
  • Multi-level undo facility
  • Can read and write files in UNIX format using LF as line terminator, with automatic format detection
  • Line numbers can be shown in any edit window if required
  • Text can be copied and moved by dragging and dropping
  • Right-click mouse menus give access to commonly required functions
  • DOS commands such as compilers can be run with the output captured in an edit window
  • Commonly-used text can be inserted in a simple operation from template libraries
  • Fully-remappable keyboard, including two-key operation similar to MicroEMACS and mapping of Alt keys to functions
  • Keystrokes and menu commands can be recorded in replayable keyboard macros which can be collected into libraries
  • Files can be printed either in total, by line range, or selected text only
  • Files can be printed with two pages per sheet of paper in landscape mode or as booklets
  • Automatic line indenting and removal of trailing spaces
  • Automatic configuration of edit options depending on file type
  • Automatic configuration of tab sizes depending on file type
  • Automatic brace alignment when editing C source
  • Text indent/undent operations
  • Optional automatic text wrapping at configurable margin
  • Supports Microsoft IntelliMouse (32-Bit Edition)
  • Floating Control Station to manage large numbers of open files (32-Bit Edition)
link
This is very late but I have used PFE for years and have yet to find anything to compete with it's editing features... – Tab Jun 11 '09 at 21:02
feedback

As mentioned by others, my recommendations are:

  1. Vim - pretty much can do anything you need an editor for. If it add more features other than that it might become Emacs :). It run on pretty much all platform out there, Unix, Windows, Mac.
  2. Notepad++. If you prefer classical windows app, this is my other recommendation. It is also free and open source. Very lightweight and also has most features you need for code editing: syntax highlighting, multi-tabs, and can be extended with plugins.
link
feedback

I also use Scite

SciTE is a SCIntilla based Text Editor. Originally built to demonstrate Scintilla, it has grown to be a generally useful editor with facilities for building and running programs. It is best used for jobs with simple configurations - I use it for building test and demonstration programs as well as SciTE and Scintilla, themselves.

SciTE is currently available for Intel Win32 and Linux compatible operating systems with GTK+. It has been run on Windows XP and on Fedora 8 and Ubuntu 7.10 with GTK+ 2.12. Here is a screenshot of SciTE.

On Windows, there is a companion application Filerx which provides project management and macro features to SciTE.

link
feedback
  • Notepad++
  • EditPlus
link
feedback

This question has some suggestions for lightweight text editors.

link
feedback

VIM - Vi Improved.

It can go a long way if you are adept in using the unix/linux utilities. If you are on Windows, just install cygwin msys or mingw or andlinux (as suggested in the comments).

You can use VIM sessions so that you got some concept of 'projects'. Just save your current session when you close VIM and then load a previously saved session to load all the files that you were previously editing. Map commonly used functions (build, clean, deploy) to hotkeys so you can quickly trigger them. It supports a lot of languages. Have very good regex support. Once you've learned how to use it properly, very powerful.

link
yah, cause cygwin doesn't come with a massive over head - END SARCASAM – UnkwnTech Oct 6 '08 at 3:30
I don't install the whole lot. just the tools that I use. – jop Oct 6 '08 at 3:34
Cygwin can go to hell as far as i'm concerned. All the useful utils have been ported to native win32, and then there's msys and mingw. If you really need hardcore linux stuff in windows, you can use andlinux.Even thought it's virtualized, it's still a million times faster than the poo that is cygwin – davr Oct 6 '08 at 5:18
feedback

For C# or VB.NET you can use SharpDevelop.

link
I run this on a laptop and it works great for me. – Dan Adams Oct 30 '08 at 17:07
feedback

SciTE is the best lightweight programming editor.

link
feedback

I use EditPad Lite.

It meets my basic requirements for a notepad replacement:

  • launch as fast as notepad
  • deal with any character set, convert between them, repair improperly converted files, and let me control whether to save utf-8 with or without BOM
  • deal with any line terminator convention, let me convert between them
  • settings configurable per file extension
  • unlimited undo/redo
  • optional word wrap, line numbering
link
feedback

If you need a lightweight WYSIWYG HTML/TXT editor, check out NetEditr

link
feedback

Windows Answers:

  • I've uses textpad for about 9 years. It's not free, but it's a great editor.
  • People who don't use textpad tend to go for ultraEdit.
  • e is getting a lot of attention and is worth checking out.
  • Notepad++ is free and well loved.

OSX Answers.

  • Textmate. There's not been an update to it for a while, but most mac users swear by it.
link
feedback

Notepad2 is a great alternative. There is an article on the website which describes how to replace Windows' notepad.exe.

link
feedback

When I need lightweight tools, I use these:

  • Notepad++ - my preferred general purpose editor, quite useful for coding
  • PSPad - I love this one for its "Create Project from Directory" feature and its excellent "Search/Replace in Files" capability.
  • Microsoft's too-little-known free, "small, simple, and seamless" IDE. It's targeted for the Web and includes a development Web-server that can be used even on Windows XP Home. No IIS required.

I do not consider Eclipse very "light weight," but, still, I frequently use it for many non-Microsoftish purposes, particularly with Java, Scala, Ruby, and Python development.

link
feedback

RedCar http://redcareditor.com/

link
feedback

Have you tried Farawla?

It's a minimalistic code editor with a twist. I built it in an attempt to make it the least obtrusive code editor. Mainly caters for JavaScript and Ruby developers.

Some of the features

  • Full code view; zero clutter
  • Quick jump navigation
  • Lots of familiar keyboard shortcuts
  • Color picker and color preview
link
feedback

Komodo edit is not so lightweight, but much more lightweight than Eclipse, Netbeans and Idea. Starts not instantly, but works pretty fast, and does not freeze during typing in editor like many full-featured IDEs.

link
feedback

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