User Alex Ott - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T17:15:01Zhttp://stackoverflow.com/feeds/user/18627http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1754740/cedet-compilation-using-emacs-failed/1754846#17548461Answer by Alex Ott for cedet compilation using emacs failedAlex Ott2009-11-18T09:55:26Z2009-11-18T09:55:26Z<p>Please, look to the version from CVS - as i remember, after releasing of 1.0pre6, were several fixes for windows builds. This version also contains more improvements in other parts</p>
http://stackoverflow.com/questions/1736601/do-you-use-vim-emacs-terminals-to-develop-c-c-what-kind-of-projects-is-this-pr/1737197#17371973Answer by Alex Ott for Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for?Alex Ott2009-11-15T10:31:07Z2009-11-15T10:31:07Z<p>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. </p>
http://stackoverflow.com/questions/1734481/emacs-c-and-c/1734668#17346682Answer by Alex Ott for emacs C and C++Alex Ott2009-11-14T16:05:38Z2009-11-14T16:05:38Z<p>code completion - Semantic (from <a href="http://cedet.sf.net" rel="nofollow">CEDET</a> package), compilation - depends on what you use to compile, but basically you can use EDE package (from CEDET) to maintain & compile projects </p>
http://stackoverflow.com/questions/1668928/invoking-makefile-in-the-project-root-directory-from-subdirectory-emacs-c/1669022#16690222Answer by Alex Ott for Invoking makefile in the project root directory from subdirectory Emacs - C++Alex Ott2009-11-03T17:48:37Z2009-11-03T17:48:37Z<p>I use EDE (from CEDET) to define projects, and store compilation commands in the project definition. Look to <a href="http://github.com/alexott/emacs-configs/blob/master/rc/emacs-rc-cedet.el" rel="nofollow">my config</a> for examples: lines 105-133 -- examples of projects, lines 135-165 -- code, that defines compilation functions, and lines 168-189 -- functions for different kinds of projects -- standard (compile from root directory), and cmake (compilation in separate directory)</p>
http://stackoverflow.com/questions/1655813/how-to-check-if-a-file-is-in-git-repository-when-visiting-from-emacs/1656925#16569252Answer by Alex Ott for How to check if a file is in Git repository when visiting from emacs?Alex Ott2009-11-01T11:22:57Z2009-11-01T11:22:57Z<p>you can use function (vc-backend "file-name") from VC package to obtain information about given file. This function returns name of version control system, where this file is registered. To run your own code, you can combine this function with standard find-file-hook</p>
http://stackoverflow.com/questions/1644490/emacs-completions-or-intellisense-the-same-as-on-visual-studio/1645196#16451963Answer by Alex Ott for emacs completions or IntelliSense the same as on Visual StudioAlex Ott2009-10-29T17:06:28Z2009-10-29T17:06:28Z<p>you need to take latest version of <a href="http://cedet.sf.net" rel="nofollow">CEDET</a> package (better, directly from CVS). You can setup it, as described in documentation on this site</p>
http://stackoverflow.com/questions/1624504/how-to-navigate-to-erlang-function-in-emacs-by-name/1624718#16247184Answer by Alex Ott for How to navigate to erlang function in emacs by name?Alex Ott2009-10-26T13:15:24Z2009-10-26T13:15:24Z<p>Distel package has erl-find-source-under-point function, that is bound to M-. key
You can read more about work with Erlang from Emacs in <a href="http://xtalk.msk.su/~ott/en/writings/emacs-devenv/EmacsErlang.html" rel="nofollow">my article</a></p>
http://stackoverflow.com/questions/1514897/ocaml-emacs-tuareg-evaluate-phrase-keyboard-shortcut-and-how-to-display-actual/1515999#15159991Answer by Alex Ott for OCaml Emacs Tuareg: Evaluate phrase keyboard shortcut, and how to display actual greek symbols?Alex Ott2009-10-04T09:13:31Z2009-10-04T09:13:31Z<p>You can look to <a href="http://github.com/alexott/emacs-configs/blob/master/rc/emacs-rc-pretty-lambda.el" rel="nofollow">my existing configs</a>, based on the code from EmacsWiki with some extensions - function to handle conversion from text to chars, and example of it use for erlang mode - you can change it for ocaml mode also</p>
<p>P.S. but this code has one disadvantage - it also displays these characters inside strings and comments</p>
http://stackoverflow.com/questions/1481760/emacs-for-c-development-problem-with-cedet-code-completion-and-project/1483511#14835112Answer by Alex Ott for EMACS for C++ development - Problem with CEDET code completion and projectAlex Ott2009-09-27T12:40:02Z2009-09-27T12:40:02Z<p>Hello</p>
<p>which version of CEDET are you using?</p>
<p>second line of config isn't necessary - first line should load all...</p>
<p>from lines 3-7 you need to leave only one, with needed set of features. for most cases you need to use only line 4 or 5</p>
<p>EDE should be activated by line (global-ede-mode 1) - at least, this works for me. You can look into <a href="http://github.com/alexott/emacs-configs/blob/master/rc/emacs-rc-cedet.el" rel="nofollow">my cedet config</a></p>
http://stackoverflow.com/questions/1462209/emacs-c-mode-indent-problem-with-doxygen-style-comment/1462388#14623880Answer by Alex Ott for Emacs C-mode indent problem with Doxygen style commentAlex Ott2009-09-22T20:26:26Z2009-09-22T20:26:26Z<p>this very strange, i generate comments with doxymacs and this handled by cc-mode correctly</p>
http://stackoverflow.com/questions/1390980/debugging-scheme-in-emacs/1422099#14220990Answer by Alex Ott for Debugging Scheme in EmacsAlex Ott2009-09-14T14:57:58Z2009-09-14T14:57:58Z<p>you can try to setup slime for some scheme implementation. Look to <a href="http://xtalk.msk.su/~ott/en/writings/emacs-devenv/EmacsScheme.html" rel="nofollow">my article</a> about Emacs + Scheme</p>
http://stackoverflow.com/questions/711046/how-to-setup-cscope-with-aquamacs-on-macos/1422086#14220860Answer by Alex Ott for How to setup cscope with aquamacs on MacOS?Alex Ott2009-09-14T14:56:25Z2009-09-14T14:56:25Z<p>M-x shell then 'cd your_dir; cscope ...." ?</p>
http://stackoverflow.com/questions/1048106/which-xml-parser-for-haskell6Which XML parser for Haskell?Alex Ott2009-06-26T09:03:14Z2009-08-14T03:40:42Z
<p>I'm trying to write some application, that performs analysis of data, stored in pretty big XML files (from 10 to 800MB). Each set of data is stored as single tag, with concrete data specified as attrobutes. I'm currently saxParse from HaXml, and I'm not satisfied with memory usage during work with it. On parsing of 15Mb XML file it consumes more than 1Gb of memory, although I tried to not to store data in the lists, and process it immediately. I use following code:</p>
<pre><code>importOneFile file proc ioproc = do
xml <- readFile file
let (sxs, res) = saxParse file $ stripUnicodeBOM xml
case res of
Just str -> putStrLn $ "Error: " ++ str;
Nothing -> forM_ sxs (ioproc . proc . (extractAttrs "row"))
</code></pre>
<p>where 'proc' - procedure, that performs conversion of data from attributes into record, and 'ioproc' - procedure, that performs some IO action - output to screen, storing in database, etc.</p>
<p>How i can decrease memory consumption during XML parsing? Should switching to another XML parser help?</p>
<p>Update: and which parser supports for different input encodings - utf-8, utf-16, utf-32, etc.?</p>
http://stackoverflow.com/questions/1251503/how-to-create-buffer-similar-to-compilation-in-emacs/1253395#12533951Answer by Alex Ott for How to create buffer similar to *compilation* in Emacs?Alex Ott2009-08-10T06:36:00Z2009-08-10T06:36:00Z<p>It's better to derive your own mode from compilation-mode, and define error regex, etc. </p>
http://stackoverflow.com/questions/1205666/how-to-show-function-prototype-in-emacs/1206374#12063741Answer by Alex Ott for How to show function prototype in Emacs?Alex Ott2009-07-30T12:45:44Z2009-07-30T12:45:44Z<p>CEDET package provide function semantic-ia-show-summary that can show prototype for function/variable under point</p>
http://stackoverflow.com/questions/1175436/how-to-make-emacs-display-chinese-characters/1176016#1176016-1Answer by Alex Ott for How to Make Emacs Display Chinese CharactersAlex Ott2009-07-24T06:23:36Z2009-07-24T06:23:36Z<p>You need to install suitable font family, with all glyphs, for example microsoft ttf fonts</p>
http://stackoverflow.com/questions/1130910/what-is-in-your-emacs-file/1133405#11334051Answer by Alex Ott for What is in your .emacs file?Alex Ott2009-07-15T19:19:50Z2009-07-15T19:19:50Z<p>You can find my .emacs at <a href="http://github.com/alexott/emacs-configs/tree/master" rel="nofollow">github</a>, all settings are split into separate files (for different programming languages, etc.), located in rc subdirectory</p>
http://stackoverflow.com/questions/1085170/how-to-achieve-code-folding-effects-in-emacs/1085583#10855831Answer by Alex Ott for How to achieve code folding effects in emacsAlex Ott2009-07-06T05:46:40Z2009-07-06T05:46:40Z<p>You can also get code folding by using CEDET with following code in init file:</p>
<pre><code>(global-semantic-folding-mode t)
</code></pre>
<p>After evaluation of this code, the small triangle will appear in fringle area, so you will able to fold & unfold code using it. This method is more precise, as it uses syntactic information, extracted from source code</p>
http://stackoverflow.com/questions/1008036/synchronize-emacs-packages-and-settings/1009097#10090974Answer by Alex Ott for synchronize emacs packages and settingsAlex Ott2009-06-17T19:34:41Z2009-06-17T19:34:41Z<p>I use git to keep my configs, and split out platform/machine dependent parts into separate files, and load them depending on machine's name. You can see my configs <a href="http://github.com/alexott/emacs-configs/tree/master" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/944614/emacs-does-hideshow-work-with-xml-mode-sgml-mode/948948#9489480Answer by Alex Ott for emacs: Does HideShow work with xml-mode (sgml-mode)?Alex Ott2009-06-04T06:50:51Z2009-06-04T06:50:51Z<p>nxml-mode is much faster than other xml editing modes. I use it for many years and very happy with it</p>
http://stackoverflow.com/questions/948290/is-there-a-multilanguage-program-that-will-generate-emacs-compatible-who-calls-in/948939#9489390Answer by Alex Ott for Is there a multilanguage program that will generate emacs-compatible who-calls information?Alex Ott2009-06-04T06:47:57Z2009-06-04T06:47:57Z<p><a href="http://cedet.sf.net" rel="nofollow">CEDET</a> can provide this information, but doesn't have ready to use tool. You can look to the code of COGRE package, that is included into CEDET and used to build UML diagrams, including generation of diagrams from existing code</p>
http://stackoverflow.com/questions/944023/how-to-change-the-working-directory-for-build-debug-in-emacs/945915#9459150Answer by Alex Ott for How to change the working directory for build/debug in Emacs?Alex Ott2009-06-03T17:11:01Z2009-06-03T17:11:01Z<p>I'm personaly use EDE to keep compilation settings for concrete projects, and create compile command on the fly. You can see how it works in <a href="http://github.com/alexott/emacs-configs/blob/a67483764df95690a4a7dd53af523e600fdbefa5/rc/emacs-rc-cedet.el" rel="nofollow">my cedet config</a>, starting with line 100</p>
http://stackoverflow.com/questions/933143/boostregex-segfaults-when-using-capture/933950#9339500Answer by Alex Ott for boost::regex segfaults when using captureAlex Ott2009-06-01T08:17:21Z2009-06-01T08:17:21Z<p>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:</p>
<pre><code>string a("abc);
regex_match(a, matches, re.assign("(a)bc"));
</code></pre>
http://stackoverflow.com/questions/932519/opening-a-file-on-unix-using-c/932585#9325853Answer by Alex Ott for Opening a file on unix using c++Alex Ott2009-05-31T18:20:42Z2009-05-31T20:29:55Z<p>Here is a ready piece of code, that performs this task:</p>
<blockquote>
<p><a href="http://www.unixguide.net/unix/programming/2.9.shtml" rel="nofollow">How do I expand `~' in a filename like the shell does?</a></p>
</blockquote>
http://stackoverflow.com/questions/931827/stdstring-comparison/931841#9318412Answer by Alex Ott for std::string comparisonAlex Ott2009-05-31T10:54:49Z2009-05-31T10:54:49Z<p>Look to the Boost's <a href="http://www.boost.org/doc/libs/1%5F39%5F0/doc/html/string%5Falgo.html" rel="nofollow">String Algo</a> library, that has a number of useful functions, such as starts_with, istart_with (case insensitive), etc. If you want to use only part of boost libraries in your project, then you can use bcp utility to copy only needed files</p>
http://stackoverflow.com/questions/930439/using-git-with-emacs/931491#9314914Answer by Alex Ott for Using git with emacsAlex Ott2009-05-31T06:46:00Z2009-05-31T06:46:00Z<p>In my .emacs for Mac OS X i have following code:</p>
<pre><code>(when (equal system-type 'darwin)
(setenv "PATH" (concat "/opt/local/bin:/usr/local/bin:" (getenv "PATH")))
(push "/opt/local/bin" exec-path))
</code></pre>
<p>It seems, that the problem is, that when you run terminal.app it use your shell initialization file to setup all environment variables, but when you launch Emacs from Dock, then these variables aren't set.</p>
<p>P.S. By the way - there are other packages to work with Git from Emacs - magit, DVC, egg... You can read about them in <a href="http://xtalk.msk.su/~ott/en/writings/emacs-vcs/" rel="nofollow">my article</a></p>
http://stackoverflow.com/questions/917337/schema-sensitive-editing-in-emacs-based-on-w3c-xml-schema-not-rng/919344#9193444Answer by Alex Ott for Schema-sensitive editing in emacs, based on W3C XML Schema? (not RNG)Alex Ott2009-05-28T05:43:51Z2009-05-28T05:43:51Z<p>Just use XSD to RNG converter, like <a href="http://code.google.com/p/xsdtorngconverter/" rel="nofollow">this</a></p>
http://stackoverflow.com/questions/791539/how-can-i-have-folds-for-c-java-in-emacs/792264#7922642Answer by Alex Ott for How can I have folds for C++/Java in Emacs?Alex Ott2009-04-27T04:44:38Z2009-04-27T04:44:38Z<p>You can use <a href="http://cedet.sf.net" rel="nofollow">CEDET</a> to do this. This package provides global-semantic-tag-folding-mode, that allows to fold functions, classes/structures, comments, namespaces, etc. It works more properly than other packages, as it has all syntactic information about code. </p>
<p>There is <a href="http://xtalk.msk.su/~ott/en/writings/emacs-devenv/EmacsCedet.html" rel="nofollow">introduction article about CEDET</a>, that allows to quickly start work with it</p>
http://stackoverflow.com/questions/782770/beginners-guide-for-setting-up-emacs-with-gcc-gdb/783208#7832080Answer by Alex Ott for Beginners guide for setting up emacs with gcc/gdb?Alex Ott2009-04-23T19:32:31Z2009-04-23T19:32:31Z<p>If you're working with version control system, you can find useful information in another <a href="http://xtalk.msk.su/~ott/en/writings/emacs-vcs/index.html" rel="nofollow">my article</a> about work with version control systems from emacs</p>
http://stackoverflow.com/questions/749888/is-there-a-good-way-to-do-emacs-project/750435#7504352Answer by Alex Ott for is there a good way to do emacs project ?Alex Ott2009-04-15T05:37:40Z2009-04-15T05:37:40Z<p>I use EDE from CEDET package - it can maintain different types of projects. I use it to work with CMake, together with custom compile-command (you can find it <a href="http://github.com/alexott/emacs-configs/blob/2f703acf5d84c14146dfe9a3e6afc599ac671a04/rc/emacs-rc-cedet.el" rel="nofollow">here</a> - see for MyCompile function)</p>
http://stackoverflow.com/questions/1644490/emacs-completions-or-intellisense-the-same-as-on-visual-studio/1645196#1645196Comment by Alex Ott on emacs completions or IntelliSense the same as on Visual StudioAlex Ott2009-10-29T17:07:32Z2009-10-29T17:07:32Zthere are also some packages (company-mode, auto-complete), that use CEDET to obtain data for completion, but implement different (from CEDET) completion stylehttp://stackoverflow.com/questions/1598351/emacs-etags-and-using-emacs-as-an-ide/1598678#1598678Comment by Alex Ott on emacs, etags and using emacs as an IDEAlex Ott2009-10-21T06:42:32Z2009-10-21T06:42:32Z2samix:
may be you'll find useful my article about CEDET - <a href="http://xtalk.msk.su/~ott/en/writings/emacs-devenv/EmacsCedet.html" rel="nofollow">xtalk.msk.su/~ott/en/…</a>http://stackoverflow.com/questions/1598351/emacs-etags-and-using-emacs-as-an-ide/1598471#1598471Comment by Alex Ott on emacs, etags and using emacs as an IDEAlex Ott2009-10-21T06:41:27Z2009-10-21T06:41:27Zmuch faster search, gtags are also used in CEDET and allows to find calls to specific functions, etc..http://stackoverflow.com/questions/1481760/emacs-for-c-development-problem-with-cedet-code-completion-and-project/1483511#1483511Comment by Alex Ott on EMACS for C++ development - Problem with CEDET code completion and projectAlex Ott2009-09-27T18:05:48Z2009-09-27T18:05:48Zit's better to use version from CVS, that has many fixes. About EDE you can read only in official documentation - I plan to write more about other CEDET's components, but has no time right now...http://stackoverflow.com/questions/1149119/how-do-you-debug-clojure-in-netbeans-ide/1149230#1149230Comment by Alex Ott on How do you debug Clojure in NetBeans IDE?Alex Ott2009-08-28T09:45:18Z2009-08-28T09:45:18Zslime should have basic support for debugginghttp://stackoverflow.com/questions/1285971/emacs-code-completion-for-c-c/1302354#1302354Comment by Alex Ott on Emacs code completion for C/C++?Alex Ott2009-08-21T16:43:13Z2009-08-21T16:43:13Zfor C/C++ gnu global is betterhttp://stackoverflow.com/questions/1285971/emacs-code-completion-for-c-cComment by Alex Ott on Emacs code completion for C/C++?Alex Ott2009-08-17T11:48:16Z2009-08-17T11:48:16Zautocomplete package could also take information from Cedet/Semantic. For which language do you want to use auto completion?
Xrefactory, as i remember is non-freehttp://stackoverflow.com/questions/1048106/which-xml-parser-for-haskell/1275928#1275928Comment by Alex Ott on Which XML parser for Haskell?Alex Ott2009-08-14T06:57:33Z2009-08-14T06:57:33Zand where here is haskell?http://stackoverflow.com/questions/1219794/emacs-as-ide-handling-a-project-directory/1219846#1219846Comment by Alex Ott on emacs as IDE: Handling a project directory?Alex Ott2009-08-03T09:24:52Z2009-08-03T09:24:52Zfor c & c++ it's better to use gtags - CEDET has built-in support for themhttp://stackoverflow.com/questions/1208410/preferred-javascript-mode-for-emacs-is-it-js2-mode-from-yegge/1208880#1208880Comment by Alex Ott on Preferred JavaScript mode for emacs? Is it js2-mode from Yegge?Alex Ott2009-07-31T06:58:45Z2009-07-31T06:58:45Zjs2-mode already included into GNU Emacs tree, and will released as part of GNU Emacs 23.2http://stackoverflow.com/questions/978984/is-there-a-good-emacs-project-management-somewhere/979020#979020Comment by Alex Ott on Is there a good emacs project management somewhere?Alex Ott2009-06-11T07:45:20Z2009-06-11T07:45:20ZYes, EDE library can do this. Please look to my answer to previous question - <a href="http://stackoverflow.com/questions/749888/is-there-a-good-way-to-do-emacs-project" rel="nofollow" title="is there a good way to do emacs project">stackoverflow.com/questions/749888/…</a>http://stackoverflow.com/questions/932519/opening-a-file-on-unix-using-c/932528#932528Comment by Alex Ott on Opening a file on unix using c++Alex Ott2009-05-31T18:21:13Z2009-05-31T18:21:13Z2Magnus: I'm not sure about $HOME, if program will run via 'su', for examplehttp://stackoverflow.com/questions/782770/beginners-guide-for-setting-up-emacs-with-gcc-gdb/782927#782927Comment by Alex Ott on Beginners guide for setting up emacs with gcc/gdb?Alex Ott2009-04-23T19:34:13Z2009-04-23T19:34:13Zfor work with gdb, you can use also gdb-ui from standard distributionhttp://stackoverflow.com/questions/782770/beginners-guide-for-setting-up-emacs-with-gcc-gdb/782927#782927Comment by Alex Ott on Beginners guide for setting up emacs with gcc/gdb?Alex Ott2009-04-23T19:30:58Z2009-04-23T19:30:58ZI just opened question to post link to article about Cedet ;-)http://stackoverflow.com/questions/782357/emacs-function-to-message-the-python-function-im-in/782413#782413Comment by Alex Ott on Emacs function to message the python function I'm inAlex Ott2009-04-23T16:43:05Z2009-04-23T16:43:05ZYes, and this works not only for python