Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-

C IDE

Name: Anonymous 2007-09-11 7:05 ID:OJESjWTz

DevCpp4 or 5beta?
Another better?
Not eclipse, I don't like it. Code::blocks looks fagish.

Name: Anonymous 2007-09-11 7:20 ID:Heaven

Name: Anonymous 2007-09-11 7:27 ID:Heaven

Emacs

Name: Anonymous 2007-09-11 7:34 ID:OJESjWTz

>>3
For windoze.

Name: Anonymous 2007-09-11 7:35 ID:3T/DAm9j

>>4
Vim.

Name: Anonymous 2007-09-11 7:38 ID:Heaven

>>2
Thanks

Name: Anonymous 2007-09-11 7:39 ID:Heaven

>>5
Is Vim really an IDE?

Name: Anonymous 2007-09-11 7:42 ID:3T/DAm9j

>>7
That depends on your definition of an IDE.  It does everything I need, and more.

Name: Anonymous 2007-09-11 10:43 ID:dFSFSyo5

vi

Name: Anonymous 2007-09-11 10:50 ID:3T/DAm9j

>>9
OKAY YOU FUQIN ANGERED AN EXPERT PROGRAMMER
 GODFUCKIGNDAMN
FIRST OF ALL, YOU DONT FUQIN KNOW WHAT A MAN PAGE IS
SECONDLY, THIS IS /prog/ DO NOT DEMAND USEFUL ANSWERS THE WAY YOU WANT THEM TO BE
THIRDLY PROGRAMMING IS ALL ABOUT PHILOSOPHY AND ``ABSTRACT BULLSHITE'' THAT YOU WILL NEVER COMPREHEND
AND FUQIN LASTLY, FUCK OFF WITH YOUR BULLSHYT
EVERYTHING HAS ALREADY BEEN ANSWERED IN >>3,5,10

Name: Anonymous 2007-09-11 16:00 ID:Heaven

>>10
idiot

Name: Anonymous 2009-03-06 12:23


The greatest IDE But that hasnt shown   up yet You   label them as   they became expert?

Name: Anonymous 2010-11-16 3:29

Name: Anonymous 2010-12-20 18:26

Name: Anonymous 2011-02-03 3:54

Name: Anonymous 2011-02-03 5:56

Name: Anonymous 2013-03-13 12:58

Vim

Name: Ashbad !!+VASyH02wNCrG58 2013-03-13 21:14

Since when were vi/vim/emacs/etc. IDEs?  The ability to edit text and to colorize syntax does not an IDE make.

Visual Studio is surprisingly excellent, for MSVC or not.  Very nice debugging and deployment features.

Code::Blocks is usually what I download as a minimum at my school's computers, so I at least have something to work with.  Not as full featured, but FOSS and all that.

Netbeans/Eclipse are both good and are equal to each other in regard to C, but Visual Studio seems much better to me if you can obtain a copy, or if you're fine running a trial version to try it out.

DevCpp is terrible, outdated, and should not even be considered.  Never used Beta5, no advice there.

Name: Anonymous 2013-03-13 21:24

>>19
Integrated Development Environment
Think about it.

Name: Anonymous 2013-03-13 21:26

>>19
Okay.

vim with an autocompletion plugin, and I assume you also have make, gdb and gcc/clang.

Name: Anonymous 2013-03-13 21:26

>>19
Cool mail and tripcode, /g/ shitstain.

Name: Anonymous 2013-03-13 21:56

>>5-8,19-20
vim is a disintegrated development environment. To really do anything with it, you need at to least

 - Install cscope
 - Install ctags (for .S files and other things cscope doesn't understand)
 - Build vim with cscope support (every sane Linux distro's full vim package has this by default)
 - Read if_cscop.txt and paste (some of) their recommended settings into your ~/.vimrc
 - Write some scripts to generate tags and cscope.out (put them in the project makefile if you can)

That's my basic setup and I still ! into the shell all the time to run indent and etc.

>>21
I always tell myself that vimscript plugins for completion or gdb connectivity are just a shitty way to re-implement emacs, and that I'll just give up and switch to evil-mode if I decide I need them. I never get around to it, though - I just use screen to open another window and run gdb or whatever in that. Thus, I'm C-a'ing all over and my emacs envy persists.

Name: Anonymous 2013-03-13 22:02

>>23
Then use emacs and slowly rupture your carpal tunnel. I couldn't care less about your choices.

Name: Anonymous 2013-03-13 22:24

>>23
This is why you should use real vi instead. It includes ctags and doesn't need all that other shit.

Name: Anonymous 2013-03-13 22:59

>>24
rupture your carpal tunnel
That's what evil-mode would be for.

>>25
use a real vi
u mena nvi?

Name: Anonymous 2013-03-13 23:57

u mena nvi?
No.
http://ex-vi.sf.net/

Name: Anonymous 2013-03-14 1:12

>>27
I had no idea tags support was present in the original Berkeley vi. Neat!

Name: Anonymous 2013-03-14 1:21

>>28
The original Ctags was introduced in BSD Unix and was written by Ken Arnold, with Fortran support by Jim Kleckner and Pascal support by Bill Joy.

Name: Anonymous 2013-03-14 8:53

>>19
im too baka i never could manage eclipse to compile me even a simple 'hello world' -_-
it has way too many buttons and other strange things, so i use geany+gdb/clang

Name: Anonymous 2013-03-14 8:55

oh, and valgrind of course
does eclipse have an analogue of valgrind?

Name: Anonymous 2013-03-15 0:17

>>31
Most Java programmers don't care that memory even exists, but surprisingly there is:

http://www.eclipse.org/linuxtools/projectPages/valgrind/

Like every Eclipse plugin, though, it will always lag behind the command line utility.  Tried doing a complex rebase in EGit lately?

Name: Anonymous 2013-03-15 11:35

install
gvim (or vim-gtk)
vim-clang-complete
vim-supertab


and then, add to your .vimrc
syntax on
set ai si
let g:SuperTabDefaultCompletionType = "context"
let g:SuperTabLongestHighlight = 1
" supertab does clang completion backwards
let g:SuperTabMappingForward = '<s-tab>'
let g:SuperTabMappingBackward = '<tab>'


and just use evim -g

alternatively, you can make a script
# cat > /usr/bin/vim-notepad
#!/bin/bash
evim -g "%@"
^D
# chmod +x /usr/bin/vim-notepad

Name: Anonymous 2013-03-15 11:37

you'll have ctrl-x/c/v/s cut/copy/paste and save, with nice syntax highlighting and one of the best completions for c and c++

Name: Anonymous 2013-03-15 11:40

>>32
eclipse has a version for 'c/c++ developers', i mentioned it.. they should make a course how to use it or so because i cannot realize how

Name: emacs 2013-03-15 12:24

emacs

Name: Anonymous 2013-03-15 12:42

ED!!!

Name: Anonymous 2013-03-15 12:48

ed man!! !!man ed

Name: Anonymous 2013-03-15 13:55

>>36
emacs.

Don't change these.
Name: Email:
Entire Thread Thread List