473,597 Members | 2,342 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Best editor?

When not using the interactive prompt, what are you using? I keep
hearing everyone say Emacs, but I can't understand it at all. I keep
trying to learn and understand why so many seem to like it because I
can't understand customization even without going through a hundred
menus that might contain the thing I am looking for (or I could go
learn another language just to customize!).

Personally I like SciTE, it has everything I think a midweight editor
should: code folding, proper python support, nice colors out of the
box, hotkey access to compile (I'm sure emacs does this, but I couldn't
figure out for the life of me how), etc.

Opinions on what the best is? Or reading I could get to maybe sway me
to Emacs (which has the major advantage of being on everyone's system).

Jul 18 '05 #1
36 2741
I use gedit under gnome, works perfect, it is very easy to use, it has
the colours - it also supports other languages.

Jul 18 '05 #2
ChinStrap wrote:
When not using the interactive prompt, what are you using? I keep
hearing everyone say Emacs, but I can't understand it at all. I keep
trying to learn and understand why so many seem to like it because I
can't understand customization even without going through a hundred
menus that might contain the thing I am looking for (or I could go
learn another language just to customize!).


Epsilon http://www.lugaru.com/ is a commercial Emacs-like editor with a
built-in Python mode and will automatically treat .py files as being
Python. No fiddling is required. It works well, and I spend many of my
waking hours in front of an Epsilon (even created a Fortran mode :)). I
think Epsilon is used more on Windows than Linux/Unix, where Emacs and
XEmacs have existed for a long time, but an Epsilon license contains
binaries for Linux and other Unices as well.

XEmacs/Emacs frustrate me, for example constantly asking if I want to
enable a "recursive mini-buffer", which I have no clue about or
interest in. Epsilon is a well-done Emacs IMO.

A key benefit of Emacs-like editors, including Epsilon, is that one can
run the shell (cmd.exe prompt on Windows, bash/csh/ksh on Unix) from
within the editor. One can fill the entire screen with an Emacs, split
it into buffers for source codes and a shell, and live happily ever
after :). Standard output is not lost but can be retrieved just by
scrolling up in the editor. I am addicted to running a shell within an
Emacs-like editor.

Of course there are many good editors -- don't feel obligated to use
Emacs if you are happy and productive with something else.

Jul 18 '05 #3
be*******@aol.c om wrote:
ChinStrap wrote:
When not using the interactive prompt, what are you using? I keep
hearing everyone say Emacs, but I can't understand it at all. I keep
trying to learn and understand why so many seem to like it because I
can't understand customization even without going through a hundred
menus that might contain the thing I am looking for (or I could go
learn another language just to customize!).
Epsilon http://www.lugaru.com/ is a commercial Emacs-like editor with a
built-in Python mode and will automatically treat .py files as being
Python. No fiddling is required. It works well, and I spend many of my
waking hours in front of an Epsilon (even created a Fortran mode :)). I
think Epsilon is used more on Windows than Linux/Unix, where Emacs and
XEmacs have existed for a long time, but an Epsilon license contains
binaries for Linux and other Unices as well.


$250 just for an Emacs clone? Sorry, but this is a bit greedy. Sure, it does
some things differently, but in the same time you learn Epsilon, you can
learn Emacs.
XEmacs/Emacs frustrate me, for example constantly asking if I want to
enable a "recursive mini-buffer", which I have no clue about or
interest in. Epsilon is a well-done Emacs IMO.


constantly? You seem to make fundamental mistakes using Emacs. Reading one or
two tutorials could have helped.

mfg
Georg
Jul 18 '05 #4
Windows: textpad
Linux: vim

Jul 18 '05 #5
Hi All--

el*******@gmail .com wrote:

Windows: textpad
Linux: vim


Windows: gvim
Linux: gvim, or vim if I have to.
Other unices: gvim, vim, vi

SlickEdit doesn't suck. Emacs doesn't suck, either.

Metta,
Ivan
----------------------------------------------
Ivan Van Laningham
God N Locomotive Works
http://www.andi-holmes.com/
http://www.foretec.com/python/worksh...oceedings.html
Army Signal Corps: Cu Chi, Class of '70
Author: Teach Yourself Python in 24 Hours
Jul 18 '05 #6
ChinStrap wrote:

Opinions on what the best is?


The best editor? Ed is the standard text editor. Accept no substitutes.
--
Michael Hoffman
Jul 18 '05 #7
In article <11************ *********@l41g2 000cwc.googlegr oups.com>,
ChinStrap <ca****@gmail.c om> wrote:

When not using the interactive prompt, what are you using? I keep
hearing everyone say Emacs, but I can't understand it at all. I keep
trying to learn and understand why so many seem to like it because I
can't understand customization even without going through a hundred
menus that might contain the thing I am looking for (or I could go
learn another language just to customize!).


Use vim. 80% of the power of emacs at 20% of the learning curve.
--
Aahz (aa**@pythoncra ft.com) <*> http://www.pythoncraft.com/

"The joy of coding Python should be in seeing short, concise, readable
classes that express a lot of action in a small amount of clear code --
not in reams of trivial code that bores the reader to death." --GvR
Jul 18 '05 #8
Hi All--

Aahz wrote:

Use vim. 80% of the power of emacs at 20% of the learning curve.


I think Aahz has it dead on. Umpty-mumble years ago I spent six weeks
learning emacs lisp and customizing emacs until it did EXACTLY what I
wanted. It was a great user interface, logical, consistent,
orthagonal. It had only one thing wrong with it; it depended on
hardware keyboard features that PC keyboards don't have.

It would have taken me six weeks to retrain myself to the standard emacs
interface, so I used vi. When vim became available, I switched to
that. There's a good book available for vim:

http://www.amazon.com/exec/obidos/AS...196910-2449750

It's excellent; even the index is useful, which is more than I can say
for 80% of the O'Reilly books out there, much as I love 'em.

Metta,
Ivan
----------------------------------------------
Ivan Van Laningham
God N Locomotive Works
http://www.andi-holmes.com/
http://www.foretec.com/python/worksh...oceedings.html
Army Signal Corps: Cu Chi, Class of '70
Author: Teach Yourself Python in 24 Hours
Jul 18 '05 #9
ChinStrap wrote:
When not using the interactive prompt, what are you using? I keep
hearing everyone say Emacs, but I can't understand it at all. I keep
trying to learn and understand why so many seem to like it because I
can't understand customization even without going through a hundred
menus that might contain the thing I am looking for (or I could go
learn another language just to customize!).

Personally I like SciTE, it has everything I think a midweight editor
should: code folding, proper python support, nice colors out of the
box, hotkey access to compile (I'm sure emacs does this, but I couldn't
figure out for the life of me how), etc.

Opinions on what the best is? Or reading I could get to maybe sway me
to Emacs (which has the major advantage of being on everyone's system).

There is only a "best" editor if you aare convinced that only oine
measure is important, allowing you to place all editors on a single
straight line and declare the one that appears furthest to the left or
right the "best".

In practice, of course, different people value different editor
characteristics , so there are a multitude of opinions about which is "best".

regards
Steve
--
Steve Holden +1 703 861 4237 +1 800 494 3119
Holden Web LLC http://www.holdenweb.com/
Python Web Programming http://pydish.holdenweb.com/

Jul 18 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

33
9851
by: Frank | last post by:
What is the best IDE for developing PHP applications? What do you use and why? Thanks.
8
2669
by: John Smith | last post by:
I was wondering what is the best PHP Editor to use that will allow in program preview of the scripts. I need one for the following two OSs: Linux - KDE / Gnome Windows 2000 I would like to be able to write a script and then preview it in the same program without having to upload it to a website that is running mod_php
15
12713
by: Jim | last post by:
This is probably a common question - What is the best CSS editor? I'm an old HTML dinosaur that just getting into CSS. My HTML editor from way back is Homesite. They (Macromedia) tout Topstyle Pro but I wonder what the professionals use.
14
2038
by: Rajnish | last post by:
Hi C experts, Please suggest me best c programming language tool, which is like Jbuilder (for java) which suggest all avilable methods etc on typing the object. Best regards, Rajnish
21
3172
by: PythonStudent | last post by:
Hi, Can one of you say to me what's the best editor for editing the python programs ( for linux or windows ), and if you can send it to me to the adresse Ahcheriet@gmail.com Thanks
5
2068
by: howachen | last post by:
Currently I only use Ultra-Edit to write Javascript and debug using the firefox JS debugger. But as the project goes complex, I need to have a more advance editor, such as class/methods browsing, auto-complete, and maybe a build-in debugger if possible? I don't mind to pay for the editor, but what is the best editor now in the market?
13
2303
by: frk.won | last post by:
I am interested in learning how to use the VS 2005 code snippets. However, I wish to know what are the best ways to source control the code snippets? Are there any source safe/subversion add-ons for this purpose? If not, any urls which demonstrates code snippets management?
5
2001
by: andy | last post by:
I currently use Eclipse for creating the PHP application, which is great for editing but quite slow when using FTP. But when im testing i like to use CuteFTP Pro for quicky editing and seeing the results. Im getting fed up with CuteFTP as its really flakey. I am looking for a simiar application like CuteFTP that has an inbuilt editor but can not find one, every one I have looked at uses a different application to edit. Can anyone...
5
16827
by: Joe | last post by:
We're looking for a fully functional RTF/HTML editor for our WinForms application. We need a control with the following features: 1. Supports image 2. Supports hyperlinks (auto detects) and allows use to create "custom" hyperlinks. 3. Can have their menus and toolbars merged with our application or is fully programmically controlled.
0
7969
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
7886
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8035
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8258
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6688
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5847
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5431
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3927
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2404
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.