473,586 Members | 2,546 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

IDE that uses an external editor?


One thing that's kept me from even looking at IDEs is that to the best of my
knowledge none of them will integrate properly with external editors like
Emacs or vi. I know lots of tools support "Emacs-like keybindings", but
believe me, I've never found one that does a decent job of that. There is
just so much more to powerful editors like Emacs or vi than a handful of
cursor movement commands. Once a person is proficient they generally won't
accept substitutes.

So, please prove me wrong. Are there any IDEs that will actually work with
an external instance of Emacs (either by firing it up or by using a remote
connection program like gnuclient)?

Thx,

Skip
Oct 13 '06 #1
3 1170
sk**@pobox.com wrote:
One thing that's kept me from even looking at IDEs is that to the best of my
knowledge none of them will integrate properly with external editors like
Emacs or vi. I know lots of tools support "Emacs-like keybindings", but
believe me, I've never found one that does a decent job of that. There is
just so much more to powerful editors like Emacs or vi than a handful of
cursor movement commands. Once a person is proficient they generally won't
accept substitutes.

So, please prove me wrong. Are there any IDEs that will actually work with
an external instance of Emacs (either by firing it up or by using a remote
connection program like gnuclient)?
For Java, I know Netbeans uses an external protocol to talk to other
editors. Both XEmacs and vim are possibilities.

Recently, other projects like agide have started using the netbeans
protocol. My guess would be that something like agide is exactly what
you want: it's more of a "tie my editor, project builder, debugger, etc
together seamlessly" concept than a "you will use this editor, this
project builder, and this debugger" concept. Sort of an unintegrated
but federated development environment. It's all written in Python, but
it's still sort-of in its infancy.

Oct 13 '06 #2
Like said before, pida is a great IDE that supports vim as its external
editor and also the default editor called Culebra, I've used pida
myself and it has some nice features. It's still rough around the edges
and has bugs, but its useable.

It's written with the Kiwi framework, wich is a wrapper for PyGTK.

It has a codeoutliner pane (using ctags I think, but it looks very
clean), file explorer pane, project files, todo list, and even a built
in doc viewer (didnt work very wll with some docs). It also has a
todolist pane and a pane that displays errors caught by PyLint (very
useful). It has a built-in terminal and python interpreter. Supports
CVS and SVN for your projects!

For the most part I just use Vim alone, but pida definetely seems to
have a lot of potential. Be sure to get the latest version; I would use
pida if it wasnt for some minor bugs.

http://pida.berlios.de/

Oct 14 '06 #3
sk**@pobox.com wrote:
One thing that's kept me from even looking at IDEs is that to the best of my
knowledge none of them will integrate properly with external editors like
Emacs or vi. I know lots of tools support "Emacs-like keybindings", but
believe me, I've never found one that does a decent job of that. There is
just so much more to powerful editors like Emacs or vi than a handful of
cursor movement commands. Once a person is proficient they generally won't
accept substitutes.

So, please prove me wrong. Are there any IDEs that will actually work with
an external instance of Emacs (either by firing it up or by using a remote
connection program like gnuclient)?
I don't use an IDE when coding on *nix, but I use decent Pythonwin on
Windows (never found one of these other monster IDEs fluent/better enough)

It detects immediately when a file on disk changed and asks to reload
form file or not - any good code editor should do this. The sc1-based
editors ones do this usually. Thus one can without worries edit in
different editors simultaneously.

Also in Pythonwins py-code or .ini settings it would be very easy to
implement a 1-liner for a key stroke which opens the current file in an
external editor. So that should do it.
The same practice should be possible easly with almost any *nix IDE
which is written open source in python or lisp ... or has other easy
script customization capabs.
(But I think there are no decent python IDE's on *nix :-( )

-robert
Oct 14 '06 #4

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

Similar topics

2
4580
by: Ney André de Mello Zunino | last post by:
Hello. I am having trouble building a simple project that uses one of the Standard C++ Library's IO facilities. The following is a stripped-down version that illustrates the problem: #include <fstream> int main(int argc, char* argv)
7
1680
by: Dan Nash | last post by:
Hi I'm trying to create an external stylesheet for use in my Web App. It works fine, and I've got it linked and everything. The only problem is the "background-image" property isn't working. I've selected the iamge through VS, and its in the _images/ subdir. The code that VS created is as follows: background-image: url(_images/back.jpg) ...
3
1396
by: I.g.o.r. | last post by:
Hello! I run into a very anoying problem in asp.net 2.0. I have external JScript file included in some aspx through <script> tag; In my solution .js file is placed in custom folder named skripta. Everything is ok when I add new .js file containing some code. But when I add some new functions to .js (everything doing through visual studio...
0
1646
by: Ben Finney | last post by:
skip@pobox.com writes: The Eclim project exposes Eclipse functionality and then uses Vim as an interface. Instead of trying to write a java IDE in Vim or a Vim editor in Eclipse, eclim provides an Eclipse plug-in that exposes Eclipse features through a server interface, and a set of Vim plug-ins that communicate with Eclipse over that...
3
1835
by: RICHARD BROMBERG | last post by:
I have a simple program to test using an external .js file. This external file contains some functions that I need to call from several html programs. The program as written below works fine. 1. <html> 2. <head> 3. <meta http-equiv="Content-Language" content="en-us"> 4. <meta http-equiv="Content-Type" content="text/html;...
11
2033
by: anupam roy | last post by:
Hi All, I have one text editor application which can open XML files for editing. Now when a file is aleady opened, i have opened the same file in an external editor(notepad or wordpad) and saved it. In this scenario, how to throw a warning message to the XML editor, notifying that file has been chaged in an external editor and how to...
1
1733
by: kamalatanvi | last post by:
Hi, I have downloaded win32 module and tied to install it by make install Win32-0.34 nmake is not recognized as an internal or external command, operable program or batch file nmake -- NOT OK I am not getting how to install external modules, which are downloaded through CPAN.
11
3634
by: coomberjones | last post by:
I have a few std::strings that I am using to store raw binary data, each of which may very well include null bytes at any point or points. I want to slap them together into a single string, so I tried a std::ostringstream: std::ostringstream oss; oss << x << y << z; std::string result ( oss.str() ); The result shows that feeding the...
4
2194
by: Shalini Bhalla | last post by:
I wan to include external file in fck editor , pls tell me how can i do so .....
0
7915
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...
1
7965
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...
0
8220
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...
0
6617
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...
0
5392
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...
0
3838
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3869
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2345
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
1
1452
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.