2
votes
Any good advice on using emacs for C++ project?
I'm planning to write such article in near future, but you can now take my configuration of …
0
votes
Emacs and C++
I use msf-abbrevs package for inserting code snippets as i type special code words - something like for, if, etc, but with highliting of positions, that should be filled out, and moving between the …
3
votes
Best documentation for Boost:asio ?
I wrote two small articles that could be used as introductions to boost.asio. They are available from my site
…
10
votes
code browsing, refactoring, auto completion in Emacs
May you'll find useful my article about Cedet. Cedet has support for etags, gtags, cscope and other to …
3
votes
C++ development on linux Code::Blocks, EMACS or GVIM
Code::Blocks is less used because it isn't extensible as Emacs & Vim. During my work (in Emacs) with different programming languages, i often create a new scripts that make my work much easier …
6
votes
How can I refactor C++ source code using emacs?
If you can program in elisp, you can look to combination of cedet + srecode from CEDET libraries - it provide all instruments for this tas …
2
votes
How can I have folds for C++/Java in Emacs?
You can use CEDET to do this. This package provides global-semantic-tag-folding-mode, that allows to fold functions, classes/structures, comments, …
2
votes
std::string comparison
Look to the Boost's String Algo library, that has a number of useful functions, such as starts_with …
3
votes
Opening a file on unix using c++
Here is a ready piece of code, that performs this task:
How do I expand `~' in a filename like th …
0
votes
boost::regex segfaults when using capture
You are using temporary variable from which you want to obtain matches. I think, that your problem will resolved, if instead "abc" you will use following:
string a("abc);
regex_matc …
2
votes
EMACS for C++ development - Problem with CEDET code completion and project
Hello
which version of CEDET are you using?
second line of config isn't necessary - first line should load all...
from lines 3-7 you need to leave only one, with needed set …
3
votes
emacs completions or IntelliSense the same as on Visual Studio
you need to take latest version of CEDET package (better, directly from CVS). You can setup it, as described in documentation on this site
…
2
votes
Invoking makefile in the project root directory from subdirectory Emacs - C++
I use EDE (from CEDET) to define projects, and store compilation commands in the project definition. Look to …
3
votes
Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for?
I use Emacs to develop commercial software with size of several millions LoC, and massive use of templates, etc. I use CEDET + gnu global as auxiliary packages + yasnippet, etc.
…
