Questions tagged [irony-mode]
16 questions
5
votes
1 answer
Add include paths to flycheck and to company-irony?
I am starting to develop a ROS (Robot Operating System) application for the first time using Emacs. Here is my ~/.emacs.d/init.el configuration for Flycheck and company packages:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flycheck
;;;;;;;; Description: code…

space_voyager
- 709
- 5
- 19
3
votes
2 answers
Why does flycheck open a new buffer for error messages?
So I am using flycheck for my C++ projects with this setup:
;; Require flycheck to be present
(require 'flycheck)
;; Force flycheck to always use c++11 support. We use
;; the clang language backend so this is set to clang
(add-hook 'c++-mode-hook
…

choeger
- 191
- 2
3
votes
1 answer
How to make irony-mode to change compilation database
I have irony-mode configured and I'm using it for a C++-project. The code is built using Make. I have a number of different make targets to build the code; test code, release code, unit test code etc. Each make target uses its own set of compilation…

Mikael Springer
- 513
- 3
- 13
3
votes
0 answers
Irony-mode is not working on Emacs
I'm on Debian Jessie 8.5,GNU Emacs 24.4.1 (x86_64-pc-linux-gnu, GTK+ Version 3.14.5), and I installed irony-mode as the author said here:
irony-mode author's repository
I mean, I typed M-x package-install RET irony RET. After that, I configured my…

Fabrizio Piva
- 76
- 5
2
votes
0 answers
Does irony support fuzzy completion?
I have set up company-irony backend for C/C++ auto-completion, everything works fine except that it doesn't support fuzzy match. I know ycmd has such feature, I am wondering whether irony can have similar support ?

thisEric
- 131
- 1
1
vote
0 answers
Configuring Doom Emacs to autocomplete code within a header file
I am pretty new to Doom emacs and am so far loving it. However, I am having trouble autocompleting code when from an external include file.
I have the following code
and am having trouble autocompleting anything after Eigen::
I would like to, on…

user3166083
- 111
- 1
1
vote
0 answers
How to get C++ function descriptions using Company?
Forgive me if this isn't a feature which is easily available through some emacs package. I'm using Emacs for C++ development with Company, RTags, and Irony. When choosing a company completion candidate, I would like a description of what the…

SillyPointer
- 21
- 3
1
vote
0 answers
Enable Irony-mode
I'm having some trouble trying to activate irony-mode.
So i followed the steps:
My version of gcc is 5.3.0 so I installed -> clang 3.7.1
I installed CMake
Then irony from MELPA
After that added this configuration to my init.el:
(add-hook…

Gabriel Răducan
- 23
- 4
0
votes
0 answers
Can not get irony-mode to show completions
I'm a new Emacs user, and want to get autocompletion in C using irony-mode.
I installed elpa-irony using apt, as well as irony-server using apt, as the CMake compilation fails.
I added these lines to the bottom to my .emacs file:
(add-hook…
0
votes
0 answers
Hit a wall setting up company-irony with weird project structure/build system
Overview
I working on an OS project. It only uses header-files provided by the project code-base. The CMake meta-build, and ninja build system seems to be unrecognized by compilation and code-completion system out-of-the box. I've solved the…

Ben Ph
- 1
- 1
0
votes
0 answers
irony server installation
Irony install server yeilds this error every time i try an installation. Clang requirements are all installed.
Can someone please help me out.
-*- mode: compilation; default-directory: "/tmp/build-irony-server-1.3.1/" -*-
Compilation started at Sat…

Aviik
- 41
- 9
0
votes
0 answers
Autocomplete signatures from new C Headers
I use Emacs(work environment is Linux. and at home i use Windows 7) for most of my Python coding and documentation. I'm mostly working for visual effects pipeline products. Off late I'm learning bits of OpenGL and using C++ for that. I'm using the…

Aviik
- 41
- 9
0
votes
1 answer
Help with auto-complete in Windows/MinGW64
I‘ve download the “LLVM source code (.sig)” and “Clang source code (.sig)” and build Clang on Windows/MinGW. After that, I’ve install emacs (25.1) and the following three packages from melpa:
irony
company
company-irony
My init.el file…

elston
- 1
- 1
0
votes
1 answer
Building targets using cmake-ide
I switched to emacs as my C++ ide. I am using irony mode, company, rtags, and since all of my projects are using cmake, cmake-ide.
I cant realy find something online on how the workflow works with cmake-ide?
How can I compile targets and run the…

Exagon
- 101
- 3
0
votes
1 answer
spacemacs, problem with irony package when getting irony* from github as alternative location
I'm using spacemacs devel.
I've added following private layer using M-x configuration-layer/create-layer
(setq irony-packages
'(
company-irony
company-irony-c-headers
irony
irony-eldoc
;; flycheck-irony…

vibrys
- 21
- 2