Questions tagged [ide]
The ide tag has no summary.
45 questions
0 votes
1 answer
69 views
fix project root for elpy
I have following in the settings file: (setq elpy-project-root "~/Development") But it doesn't work. I have to explicitly from within emacs have to call elpy-set-project-root which works. ...
1 vote
1 answer
3k views
Understanding company-mode, corfu, and lsp-mode
I'm trying to switch to Emacs for all my text-related tasks. I've set up org-mode for note-taking, but configuring it as a programming tool is overwhelming. I am aware of many questions here that ask ...
2 votes
1 answer
120 views
Setting gud-gdb-command-name in .dir-locals.el
For my current project I have been trying to configure it so I don't need to explicitly type compile and debug commands each time I start a new emacs session. In my .dir-locals.el file I have: ((nil . ...
0 votes
1 answer
884 views
Install elpy on emacs
I checked the elpy site but came across an error where the package cannot be found? I am new to emacs and need a little help reading the error message. The specific code in the init file I tried to ...
1 vote
1 answer
219 views
How to proper install and configure js2-mode via use-package declaration?
I am trying to install this package called js2-mode. This is part of my effort to follow this tutorial. Package documentation and tutorial are using classic installation via package-install as follows:...
0 votes
2 answers
373 views
overview of functions, methods within a file
I would like to have an overview of all functions/methods/classes/namespaces defined within the currently open file (.cpp or .h). Just like this is the case in VSCode and in Intellij (called "...
0 votes
1 answer
76 views
M-x cider-jack-in keeps starting server forever, but not really starting. How to integrate Emacs development to this Clojure project?
I am new to Clojure and I am using one of Eirc Normad's course to learn. After following the instructions, I do a git clone of: git clone https://github.com/lispcast/introduction-to-clojure.git ...
0 votes
1 answer
282 views
How can I develop in Go with IDE capabilities for large projects
I am trying to migrate from GoLand to Emacs as my primary IDE for working with Go. I've gone through the standard advice online: company-go, go-mode, lsp, all that stuff. It was hell, it took forever, ...