C++ Editor for Linux MD9.1


 
Thread Tools Search this Thread
Top Forums Programming C++ Editor for Linux MD9.1
# 1  
Old 11-20-2003
C++ Editor for Linux MD9.1

What is the best C++ editor that works under MD9.1?
I know the question is more of a personal opinion, but it's more meant for me to see what program would be best to install.

Also, does C++ under a unix-based OS work differently then under windows? Because I've learned C++ for windows and want to be able to program within linux too...
If there is a difference, what books explain the switch between windows and linux C++ programming best?
# 2  
Old 11-20-2003
Hi,
what is MD9.1 (motiff ?)
as for unix, i do not know any specific editor for c++, but i love vi and can suggest you to go for it.
you may also use emacs, i have not used it however.

besides with vi (rather vim or gvim) you can get all the text features of keyword highlighting, auto indentation etc etc.

as for the concepts of c++, they remain the same, but the compiler behaviour surely varies.

as long as you are not using system specific libraries all is the same. if you intend to do system programming and stuff like that then yo need to go for the specific books. My favourite is Richard steven for system programming.

All the best!!!
# 3  
Old 11-20-2003
basic c++ programming is cross platform, after that, basically everything depends on the libraries you use.
# 4  
Old 11-20-2003
I agree with linuxpenguin. Working with multiple UNIX flavors at multiple companies, I tend to lean towards the lowest common factor. I know that I'll find vi everywhere I work. The same can't be said of custom editors, emacs etc. There is power in vi that people often overlook (buffers, typecasting etc.)

Cheers,

Keith
# 5  
Old 11-21-2003
If you prefer an IDE, try kdevelop. It's a nice one, though any text editor is sufficient.
# 6  
Old 11-21-2003
BTW, Kdevelop is at http://www.kdevelop.org/ . I've downloaded it and am playing - it reminds me of my old Borland days.

Keith
# 7  
Old 11-27-2003
Quote:
Originally posted by linuxpenguin
Hi,
what is MD9.1 (motiff ?)
MD9.1 = Mandrake 9.1(linux)

And thanks for all the replies :P Got another question, those editors you all posted, do they come with compilers and linkers as well? Or should I get a compiler from somewhere else?
Cause with my first question I actually meant an editor that has a compiler included, at school I use notepad and dmc(a command-line compiler). We don't have command-line access from within windows, but with a simple trick everyone can get around that :P

At home, at my windows pc I use notepad and borland visual C++ and dmc.

I'm thinking of using emacs at my linux pc, but I'm going to try Vi too. but I need a compiler too :P I'll go look over the internet, but some feedback here would be much appreciated!
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. What is on Your Mind?

What is Your Favorite Editor for Linux and UNIX? | A Video in 1080 HD

We have asked UNIX.com users over the years what is their favorite editor and why. Here is the top three answers. Here is a new YT video on this question: What Editor Does Everyone Use? https://youtu.be/gqE8RTZZt9g Of course, vi was the overwhelming favorite. Credits: 1080 HD... (3 Replies)
Discussion started by: Neo
3 Replies

2. HP-UX

UNIX VI editor equivalent of LINUX

Hi All, I am comfortable working in LINUX and need equivalents for HP-UX for below mentioned, 1. We use TAB key to expand/reveal a name in LINUX. Is there any way to make this work for UNIX, where it is double escape. 2. Also can we use make use of left,down,up,right keys instead... (3 Replies)
Discussion started by: pradebban
3 Replies

3. Linux

Space bar issue in Vi editor on Linux - Solaris

Hi I have a process generating a file in Solaris. Now we have migrated the process to Linux. When we open the file in vi on solaris and hit space bar, it stops after reaching the end of line. But in linux it continues to go on the next line. So I want to know whether the difference is between the... (4 Replies)
Discussion started by: sudhamacs
4 Replies

4. SuSE

<92> unknown character when opened with Vi editor in Linux

Hi, One of our applications has this string : xxx ¿ yyyyy We are on Linux Suse and the character set is en_US.UTF-8. Our requirement is to replace this special character ¿ with a space. When we open the file containing this string using VI editor we see the same character as <92> xxx... (10 Replies)
Discussion started by: LinuxTest
10 Replies

5. Shell Programming and Scripting

set EDITOR=vi -> default editor not setting for cron tab

Hi All, I am running a script , working very fine on cmd prompt. The problem is that when I open do crontab -e even after setting editor to vi by set EDITOR=vi it does not open a vi editor , rather it do as below..... ///////////////////////////////////////////////////// $ set... (6 Replies)
Discussion started by: aarora_98
6 Replies

6. UNIX for Dummies Questions & Answers

Pasting text in VI editor from a different editor

Hi, I knw its a silly question, but am a newbie to 'vi' editor. I'm forced to use this, hence kindly help me with this question. How can i paste a chunk 'copied from' a different editor(gedit) in 'vi editor'? As i see, p & P options does work only within 'vi'. (10 Replies)
Discussion started by: harishmitty
10 Replies
Login or Register to Ask a Question