C++ IDE and/or Text editor with split screen

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications C++ IDE and/or Text editor with split screen
# 1  
Old 10-16-2010
C++ IDE and/or Text editor with split screen

I'm looking for a c++ IDE and/or Text editor with split screen abilities like what you see below with notepad ++. Having the ability to split your screen is very helpful when comparing code.

Image

http://i255.photobucket.com/albums/h...lit_Screen.jpg

I have tried geany which chokes VERY badly when trying to compile multiple files. I have tried kate which doesn't have a compiler. Any other suggestions would be appreciated.
# 2  
Old 10-17-2010
xterm + nano + gcc? open as many windows side by side as you want.
# 3  
Old 10-18-2010
Quote:
Originally Posted by Corona688
xterm + nano + gcc? open as many windows side by side as you want.
I would like a c++ IDE and/or gui Text editor. I want a program that I can split screen with. It is hard to compare code when you have multiple windows open.
# 4  
Old 10-18-2010
I don't know of a graphical IDE with the features you want. What's so intimidating about typing text into a black window instead of a white one?
# 5  
Old 10-18-2010
I was playing around in Eclipse trying to get the C++ plugin to work, so I would have one IDE for both JAVA and C++. Maybe it will work for you!

The diff has some very nice optional presentations for comparison. I like the one where lines are prefixed =+- for same, new, old. I also love diff3 -e to merge changes from a common starting point file and two modified files using ex.

A coding style with many lines really helps all tools, so start designing, and adhering to, a nicely indented, one line per parameter, assignment or boolean predicate style. Alas, comma lists and other infix operators mess this up a bit with list-level operators intruding into the list elements, unless you go newline-crazy-ugly (I've seen it)!

Oh, for a language with lists externally notated, like:
Code:
.
.
.
OR(
 z == 3
 bool_variable
 c > 7
 AND(
  d == 9
  e < 100
  bool_returning_method()
  )
 )

# 6  
Old 10-21-2010
Quote:
Originally Posted by Corona688
I don't know of a graphical IDE with the features you want. What's so intimidating about typing text into a black window instead of a white one?
It is hard to compare code when you have multiple windows open.



---------- Post updated at 05:39 PM ---------- Previous update was at 05:37 PM ----------




Quote:
Originally Posted by DGPickett
I was playing around in Eclipse trying to get the C++ plugin to work, so I would have one IDE for both JAVA and C++. Maybe it will work for you!

The diff has some very nice optional presentations for comparison. I like the one where lines are prefixed =+- for same, new, old. I also love diff3 -e to merge changes from a common starting point file and two modified files using ex.

A coding style with many lines really helps all tools, so start designing, and adhering to, a nicely indented, one line per parameter, assignment or boolean predicate style. Alas, comma lists and other infix operators mess this up a bit with list-level operators intruding into the list elements, unless you go newline-crazy-ugly (I've seen it)!

Oh, for a language with lists externally notated, like:
Code:
.
.
.
OR(
 z == 3
 bool_variable
 c > 7
 AND(
  d == 9
  e < 100
  bool_returning_method()
  )
 )

Could you explain how to set it up please?
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Split a text file into multiple text files?

I have a text file with entries like 1186 5556 90844 7873 7722 12 7890.6 78.52 6679 3455 9867 1127 5642 ..N so many records like this. I want to split this file into multiple files like cluster1.txt, cluster2.txt, cluster3.txt, ..... clusterN.txt. (4 Replies)
Discussion started by: sammy777
4 Replies

2. UNIX for Dummies Questions & Answers

Nano ; does it have split screen capability?

Can nano have two files open at once? Thanks in advance! (2 Replies)
Discussion started by: theKbStockpiler
2 Replies

3. Programming

Text editor in C

Hi, I want to create a text editor in C on Unix. Can any1 jus tell me how to start with n wat all I have to look into if I have to write an editor.. Thanks (2 Replies)
Discussion started by: julie_s
2 Replies

4. Filesystems, Disks and Memory

shift hard disk from primary IDE channel to secondary IDE channal

Wellcomes All, some times ago I 've installed a Debian ditribution on an Hard Disk who was set as Primary Master. Few days ago, I 've decided to install another Hard Disk with a different Operating System. When I did that, I turned off the old hard disk, and I mouted the new one on the Primary IDE... (1 Reply)
Discussion started by: thekarsillo
1 Replies

5. 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

6. Shell Programming and Scripting

Using Unix screen cmd effecting Vi editor

Hello, I enjoy using the unix screen utility, but my vi sessions lose the ability to syntax highlight code and split screen(:vs or :sp). When not using screen, I can do those things within vi. Anybody experience this and know the fix? Thanks (1 Reply)
Discussion started by: geephei
1 Replies

7. UNIX for Dummies Questions & Answers

Text editor

I currently use konsole fo rmy terminal use. when i go into vi and type the letter t the stupied thing highlights the letter brown and it messes my thing up. Whereever i type the letter t it highlights in brown. Is there some way to change it. I dont know how this problem start. RH 8 (3 Replies)
Discussion started by: ASpin
3 Replies

8. UNIX for Dummies Questions & Answers

VI or text editor

Before I learned how wonderfull VI and Unix was. I used a little crappy DOS editor. I wouldn't go back to it for anything. However I work with a lot of formatted files that use the column position. I wonder if any here knows of a way to make VI display the cursors coulmn position or if there is a... (2 Replies)
Discussion started by: Chrisg411
2 Replies
Login or Register to Ask a Question