You are not logged in.
Pages: 1
Im looking for a c++ editor, i would like something like Borland or Dev-c++
Anyone know an editor thats something like that.. ?
Dunix the new Devil amongst Devils
Offline
try anjuta
Forever newbie !!!
Offline
If you want a C++ editor, you can almost use any text editor in linux (vi, emacs, kedit, gnome stuff - which I don't know).
If you want an Integrated Development Environment, try KDevelop or anjuta.
:: / my web presence
Offline
i use vim in console, kwrite/kate in X (make sure, your console has colors :-) )
The impossible missions are the only ones which succeed.
Offline
Scite......
Mr Green
Offline
Thanks guys, ill try those...
i know i could use nano or vi or texteditor of my choice but i was really looking for something grafical like Dev-C++ or borland
Dunix the new Devil amongst Devils
Offline
Thanks guys, ill try those...
i know i could use nano or vi or texteditor of my choice but i was really looking for something grafical like Dev-C++ or borland
kwrite is something graphical highlighting your code - what do you need more? :-)
i forgot to mention: there is also gvim and nedit
http://www.archlinux.org/packages.php?s … ate=&pp=50
and if you want a suite for dev, then kdevelop is big enough :-)
The impossible missions are the only ones which succeed.
Offline
I found Anjuta to my liking thanks
Eval CoDeR INC
Dunix the new Devil amongst Devils
Offline
I found Anjuta to my liking thanks
Eval CoDeR INC
that's a whole IDE !! but if you like it, its ok (for me, it has a way too much momentum starting)
The impossible missions are the only ones which succeed.
Offline
im here again...
Im looking for another editor, somthing like Ultraedit in windows, but everytime i say that, people tell me to use emacs, but that program blows... What I need is an editor that can highlight c++ language and thats able to ftp to the mud(Multi user dungeon) I code on...
I really like the looks of Kate, but doesn't seem to work on gnome...
Anyone ?
Dunix the new Devil amongst Devils
Offline
you could use midnight commander's integrated editor, by using it you can logon to a ftp server and edit documents on-the-fly
Read about/get it here:
http://www.ibiblio.org/mc/
./valberg
Offline
you could use midnight commander's integrated editor, by using it you can logon to a ftp server and edit documents on-the-fly
Read about/get it here:
http://www.ibiblio.org/mc/
this can also be done using konqueror + kate
The impossible missions are the only ones which succeed.
Offline
valberg wrote:you could use midnight commander's integrated editor, by using it you can logon to a ftp server and edit documents on-the-fly
Read about/get it here:
http://www.ibiblio.org/mc/this can also be done using konqueror + kate
or by using nano on the remote server
To err is human... to really foul up requires the root password.
Offline
dp wrote:valberg wrote:you could use midnight commander's integrated editor, by using it you can logon to a ftp server and edit documents on-the-fly
Read about/get it here:
http://www.ibiblio.org/mc/this can also be done using konqueror + kate
or by using nano on the remote server
well yeah maybe, but mc is just faster and sexier (or something)
./valberg
Offline
yeah but i would really like something that has both things in one....
Dunix the new Devil amongst Devils
Offline
yeah but i would really like something that has both things in one....
an editor that can edit and transfer the files to the right place?
here i agree to oscar_: use an editor on the remote server (vim is installed everywwhere hopefully, and it also has nice color-highlighting) is the simpliest way to go
The impossible missions are the only ones which succeed.
Offline
Bluefish is very ultraedit-like. Quite similar. I use bluefish for my website coding, but it has syntax coloring for a variety of languages. Doesn't upload files, though, but it's very nice.
Offline
Im not sure where i saw it, but after a search in a month i found Jedit, seems like what i needed thanks for all the help:)
Dunix the new Devil amongst Devils
Offline
Scite......
Mr Green, I like Scite and use Anjuta as an IDE {yes, Scintilla based}
Scite is a text editor and now lives under GTK2. the only problem I have is the bad fonts it uses. I love GNOME fonts. I go and set to Global.Options or how the f--k that file is the names of the font, but Scite still sucks on fonts.
does ANYONE has a good font setting in that thing called Sicte. not to small, not too bold, just like Anjuta
or, please allow us to prelink Anjuta which ATM is not possible because of:
$ sudo prelink /opt/gnome/bin/anjuta
prelink: /opt/gnome/bin/anjuta: Cannot prelink against non-PIC shared library /usr/lib/libz.so.1
Offline
Mr Green wrote:Scite......
Mr Green, I like Scite and use Anjuta as an IDE {yes, Scintilla based}
Scite is a text editor and now lives under GTK2. the only problem I have is the bad fonts it uses. I love GNOME fonts. I go and set to Global.Options or how the f--k that file is the names of the font, but Scite still sucks on fonts.
does ANYONE has a good font setting in that thing called Sicte. not to small, not too bold, just like Anjuta
![]()
or, please allow us to prelink Anjuta which ATM is not possible because of:
$ sudo prelink /opt/gnome/bin/anjuta
prelink: /opt/gnome/bin/anjuta: Cannot prelink against non-PIC shared library /usr/lib/libz.so.1
For all Scite Users, I found how to change the fonts the Scite uses.. open Scite as root, and then go to Option edit properties, and select Open cpp.properties.. look for a section called if PLAT_GTK
and replace it with the following:
if PLAT_GTK
# command.help.$(file.patterns.cpp)=man $(CurrentWord) | col -b
font.face=!Bitstream Vera Sans Mono
font_size.big=12
font_size.small=10
font_size.verysmall=8
font.base=font:$(font.face),size:$(font_size.big)
font.small=font:$(font.face),size:$(font_size.small)
font.verysmall=font:$(font.face),size:$(font_size.verysmall)
font.comment=$(font.small)
font.code.comment.box=$(font.comment)
font.code.comment.line=$(font.comment)
font.code.comment.doc=$(font.comment)
font.text=$(font.small)
font.text.comment=$(font.small)
font.embedded.base=$(font.small)
font.embedded.comment=$(font.small)
font.monospace=$(font.small)
font.vbs=$(font.monospace)
font.js=$(font.monospace)
Save and voila! nice fonts
Offline
thanks, man!
To err is human... to really foul up requires the root password.
Offline
Pages: 1