[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: configuring irony
From: |
Sanjeev Sariya |
Subject: |
Re: configuring irony |
Date: |
Mon, 12 Oct 2015 05:17:04 -0700 (PDT) |
User-agent: |
G2/1.0 |
Hi Alexis,
Thanks for your attention and reply to my post.
Sorry for a superficial, and a broad post. I shall keep in my mind suggestions
provided by you. :)
My config file for emacs look like:
(require 'package)
(package-initialize)
(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/")
("marmalade" . "https://marmalade-repo.org/packages/")
("melpa" . "http://melpa.org/packages/")))
Sorry, I don't know configuring emacs archives. :(
All packages I've been installing are as:
- M-x package-list-packages
- search for your package, hit enter, press I and press x
Then I make changes in init.el file, for add, and load.
For the irony, or c mode: I open c or c++ file, upon typing keywords - struct
or int, and hitting tab, I won't get prompt to complete these.
Kindly guide me in order to proceed.
Thanks,
Sanjeev
---------------------------------------------------------
On Monday, 12 October 2015 00:07:35 UTC-4, Alexis wrote:
> Sanjeev Sariya <sanjeevsariya@gmail.com> writes:
>
> > Apologies if this a naive query. I'm new to emacs world, and
> > have been trying to learn how to set up config in .emacs/init.el
> > file for irony package. I've installed/downloaded irony,
> > company-irony, added their path to my .emacs file, yet they
> > don't work.
>
> Welcome to Emacs!
>
> One of the most important things to do when asking for help with
> issues like this is to not only say that something doesn't work,
> but to describe:
>
> * what you tried to do;
> * what you expected to happen;
> * what actually happened.
>
> That is: how, /specifically/, did something not work for you?
>
> So in this instance, you might write something like:
>
> ---
>
> Here's my Emacs config:
>
> [config]
>
> When I'm in a buffer in c-mode, and I type:
>
> stru
>
> I expect to see a list pop-up showing me possible completions,
> such as 'struct'. But nothing happens, even if I then press TAB.
>
> ---
>
> That might help to give people some ideas about where the problem
> might be.
>
> (Also, i highly recommend configuring package archives, such as
> MELPA, and then installing packages via Emacs' package system,
> rather than manually - doing so will mean you usually won't need
> to manually add package directories to your load-path.)
>
>
> Alexis.