GithubHelp home page GithubHelp logo

pierre-rouleau / c-eldoc-1 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mooz/c-eldoc

0.0 1.0 0.0 168 KB

Helpful description of the arguments to C/C++ functions and macros

Emacs Lisp 100.00%

c-eldoc-1's Introduction

c-eldoc.el

Display description of the function under the cursor.

screenshot of c-eldoc

Original version: http://www.emacswiki.org/emacs/c-eldoc.el

This forked version uses deferred.el to support asynchronous processing.

Installation

First, download and compile c-eldoc.el

wget http://github.com/mooz/c-eldoc/raw/master/c-eldoc.el

If you havn't installed deferred.el,

wget http://github.com/kiwanami/emacs-deferred/raw/master/deferred.el

Then, place c-eldoc.el (and deferred.el) into your site-lisp directory.

Finally, add following lines to your emacs config file (e.g. .emacs).

(add-hook 'c-mode-hook 'c-turn-on-eldoc-mode)
(add-hook 'c++-mode-hook 'c-turn-on-eldoc-mode)

Customization

Cache

c-eldoc.el uses cache to reduce the times of compilation. This cache has expiration time (default 120 seconds) and you can customize this value.

(setq c-eldoc-buffer-regenerate-time 60)

You can explicitly force update the cache and get latest result by calling c-eldoc-force-cache-update.

The following settings this update command to the Ctrl-c + d key.

(defun c-eldoc-define-keybindings (map)
  (define-key map (kbd "C-c d") 'c-eldoc-force-cache-update))

(add-hook 'c-mode-hook
          (lambda ()
            (c-eldoc-define-keybindings c-mode-map)))

(add-hook 'c++-mode-hook
          (lambda ()
            (c-eldoc-define-keybindings c++-mode-map)))

Compile options

You can customize the compiler and the compile options.

Here are the default values.

(defvar c-eldoc-cpp-command "/lib/cpp ") ;; compiler
(defvar c-eldoc-cpp-macro-arguments "-dD -w -P")
(defvar c-eldoc-cpp-normal-arguments "-w -P")
(defvar c-eldoc-includes "`pkg-config gtk+-2.0 --cflags` -I./ -I../ ") ;; include flags

To customize them, use setq.

(setq c-eldoc-cpp-command "/usr/local/bin/clang")

Styles

You can customize style of current argument.

Press M-x and type customize-face and specify c-eldoc-current-argument-face.

c-eldoc-1's People

Contributors

agumonkey avatar mooz avatar pierre-rouleau avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.