User Alex Ott - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T17:15:01Z http://stackoverflow.com/feeds/user/18627 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1754740/cedet-compilation-using-emacs-failed/1754846#1754846 1 Answer by Alex Ott for cedet compilation using emacs failed Alex Ott 2009-11-18T09:55:26Z 2009-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#1737197 3 Answer by Alex Ott for Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for? Alex Ott 2009-11-15T10:31:07Z 2009-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#1734668 2 Answer by Alex Ott for emacs C and C++ Alex Ott 2009-11-14T16:05:38Z 2009-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 &amp; compile projects </p> http://stackoverflow.com/questions/1668928/invoking-makefile-in-the-project-root-directory-from-subdirectory-emacs-c/1669022#1669022 2 Answer by Alex Ott for Invoking makefile in the project root directory from subdirectory Emacs - C++ Alex Ott 2009-11-03T17:48:37Z 2009-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#1656925 2 Answer by Alex Ott for How to check if a file is in Git repository when visiting from emacs? Alex Ott 2009-11-01T11:22:57Z 2009-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#1645196 3 Answer by Alex Ott for emacs completions or IntelliSense the same as on Visual Studio Alex Ott 2009-10-29T17:06:28Z 2009-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#1624718 4 Answer by Alex Ott for How to navigate to erlang function in emacs by name? Alex Ott 2009-10-26T13:15:24Z 2009-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#1515999 1 Answer by Alex Ott for OCaml Emacs Tuareg: Evaluate phrase keyboard shortcut, and how to display actual greek symbols? Alex Ott 2009-10-04T09:13:31Z 2009-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#1483511 2 Answer by Alex Ott for EMACS for C++ development - Problem with CEDET code completion and project Alex Ott 2009-09-27T12:40:02Z 2009-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#1462388 0 Answer by Alex Ott for Emacs C-mode indent problem with Doxygen style comment Alex Ott 2009-09-22T20:26:26Z 2009-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#1422099 0 Answer by Alex Ott for Debugging Scheme in Emacs Alex Ott 2009-09-14T14:57:58Z 2009-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#1422086 0 Answer by Alex Ott for How to setup cscope with aquamacs on MacOS? Alex Ott 2009-09-14T14:56:25Z 2009-09-14T14:56:25Z <p>M-x shell then 'cd your_dir; cscope ...." ?</p> http://stackoverflow.com/questions/1048106/which-xml-parser-for-haskell 6 Which XML parser for Haskell? Alex Ott 2009-06-26T09:03:14Z 2009-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 &lt;- readFile file let (sxs, res) = saxParse file $ stripUnicodeBOM xml case res of Just str -&gt; putStrLn $ "Error: " ++ str; Nothing -&gt; 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#1253395 1 Answer by Alex Ott for How to create buffer similar to *compilation* in Emacs? Alex Ott 2009-08-10T06:36:00Z 2009-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#1206374 1 Answer by Alex Ott for How to show function prototype in Emacs? Alex Ott 2009-07-30T12:45:44Z 2009-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 -1 Answer by Alex Ott for How to Make Emacs Display Chinese Characters Alex Ott 2009-07-24T06:23:36Z 2009-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#1133405 1 Answer by Alex Ott for What is in your .emacs file? Alex Ott 2009-07-15T19:19:50Z 2009-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#1085583 1 Answer by Alex Ott for How to achieve code folding effects in emacs Alex Ott 2009-07-06T05:46:40Z 2009-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 &amp; 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#1009097 4 Answer by Alex Ott for synchronize emacs packages and settings Alex Ott 2009-06-17T19:34:41Z 2009-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#948948 0 Answer by Alex Ott for emacs: Does HideShow work with xml-mode (sgml-mode)? Alex Ott 2009-06-04T06:50:51Z 2009-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#948939 0 Answer by Alex Ott for Is there a multilanguage program that will generate emacs-compatible who-calls information? Alex Ott 2009-06-04T06:47:57Z 2009-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#945915 0 Answer by Alex Ott for How to change the working directory for build/debug in Emacs? Alex Ott 2009-06-03T17:11:01Z 2009-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#933950 0 Answer by Alex Ott for boost::regex segfaults when using capture Alex Ott 2009-06-01T08:17:21Z 2009-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#932585 3 Answer by Alex Ott for Opening a file on unix using c++ Alex Ott 2009-05-31T18:20:42Z 2009-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#931841 2 Answer by Alex Ott for std::string comparison Alex Ott 2009-05-31T10:54:49Z 2009-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#931491 4 Answer by Alex Ott for Using git with emacs Alex Ott 2009-05-31T06:46:00Z 2009-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#919344 4 Answer by Alex Ott for Schema-sensitive editing in emacs, based on W3C XML Schema? (not RNG) Alex Ott 2009-05-28T05:43:51Z 2009-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#792264 2 Answer by Alex Ott for How can I have folds for C++/Java in Emacs? Alex Ott 2009-04-27T04:44:38Z 2009-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#783208 0 Answer by Alex Ott for Beginners guide for setting up emacs with gcc/gdb? Alex Ott 2009-04-23T19:32:31Z 2009-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#750435 2 Answer by Alex Ott for is there a good way to do emacs project ? Alex Ott 2009-04-15T05:37:40Z 2009-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#1645196 Comment by Alex Ott on emacs completions or IntelliSense the same as on Visual Studio Alex Ott 2009-10-29T17:07:32Z 2009-10-29T17:07:32Z there are also some packages (company-mode, auto-complete), that use CEDET to obtain data for completion, but implement different (from CEDET) completion style http://stackoverflow.com/questions/1598351/emacs-etags-and-using-emacs-as-an-ide/1598678#1598678 Comment by Alex Ott on emacs, etags and using emacs as an IDE Alex Ott 2009-10-21T06:42:32Z 2009-10-21T06:42:32Z 2samix: 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/&hellip;</a> http://stackoverflow.com/questions/1598351/emacs-etags-and-using-emacs-as-an-ide/1598471#1598471 Comment by Alex Ott on emacs, etags and using emacs as an IDE Alex Ott 2009-10-21T06:41:27Z 2009-10-21T06:41:27Z much 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#1483511 Comment by Alex Ott on EMACS for C++ development - Problem with CEDET code completion and project Alex Ott 2009-09-27T18:05:48Z 2009-09-27T18:05:48Z it'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#1149230 Comment by Alex Ott on How do you debug Clojure in NetBeans IDE? Alex Ott 2009-08-28T09:45:18Z 2009-08-28T09:45:18Z slime should have basic support for debugging http://stackoverflow.com/questions/1285971/emacs-code-completion-for-c-c/1302354#1302354 Comment by Alex Ott on Emacs code completion for C/C++? Alex Ott 2009-08-21T16:43:13Z 2009-08-21T16:43:13Z for C/C++ gnu global is better http://stackoverflow.com/questions/1285971/emacs-code-completion-for-c-c Comment by Alex Ott on Emacs code completion for C/C++? Alex Ott 2009-08-17T11:48:16Z 2009-08-17T11:48:16Z autocomplete package could also take information from Cedet/Semantic. For which language do you want to use auto completion? Xrefactory, as i remember is non-free http://stackoverflow.com/questions/1048106/which-xml-parser-for-haskell/1275928#1275928 Comment by Alex Ott on Which XML parser for Haskell? Alex Ott 2009-08-14T06:57:33Z 2009-08-14T06:57:33Z and where here is haskell? http://stackoverflow.com/questions/1219794/emacs-as-ide-handling-a-project-directory/1219846#1219846 Comment by Alex Ott on emacs as IDE: Handling a project directory? Alex Ott 2009-08-03T09:24:52Z 2009-08-03T09:24:52Z for c &amp; c++ it's better to use gtags - CEDET has built-in support for them http://stackoverflow.com/questions/1208410/preferred-javascript-mode-for-emacs-is-it-js2-mode-from-yegge/1208880#1208880 Comment by Alex Ott on Preferred JavaScript mode for emacs? Is it js2-mode from Yegge? Alex Ott 2009-07-31T06:58:45Z 2009-07-31T06:58:45Z js2-mode already included into GNU Emacs tree, and will released as part of GNU Emacs 23.2 http://stackoverflow.com/questions/978984/is-there-a-good-emacs-project-management-somewhere/979020#979020 Comment by Alex Ott on Is there a good emacs project management somewhere? Alex Ott 2009-06-11T07:45:20Z 2009-06-11T07:45:20Z Yes, 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/&hellip;</a> http://stackoverflow.com/questions/932519/opening-a-file-on-unix-using-c/932528#932528 Comment by Alex Ott on Opening a file on unix using c++ Alex Ott 2009-05-31T18:21:13Z 2009-05-31T18:21:13Z 2Magnus: I'm not sure about $HOME, if program will run via 'su', for example http://stackoverflow.com/questions/782770/beginners-guide-for-setting-up-emacs-with-gcc-gdb/782927#782927 Comment by Alex Ott on Beginners guide for setting up emacs with gcc/gdb? Alex Ott 2009-04-23T19:34:13Z 2009-04-23T19:34:13Z for work with gdb, you can use also gdb-ui from standard distribution http://stackoverflow.com/questions/782770/beginners-guide-for-setting-up-emacs-with-gcc-gdb/782927#782927 Comment by Alex Ott on Beginners guide for setting up emacs with gcc/gdb? Alex Ott 2009-04-23T19:30:58Z 2009-04-23T19:30:58Z I 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#782413 Comment by Alex Ott on Emacs function to message the python function I'm in Alex Ott 2009-04-23T16:43:05Z 2009-04-23T16:43:05Z Yes, and this works not only for python