Skip to content

Latest commit

 

History

History
365 lines (297 loc) · 16 KB

README.org

File metadata and controls

365 lines (297 loc) · 16 KB

C/C++ layer

img/ccpp.jpg

Table of Contents

Description

This layer adds configuration for C/C++ language.

Features:

  • Support syntax checking via flycheck with Clang.
  • Support for disassembly of code with disaster.
  • Support code reformatting with clang-format.
  • Display function or variable definition at the bottom. (when semantic layer is included)
  • Display current function cursor is in at the top. See stickyfunc-demos for demos in some programming languages. (when semantic layer is included)
  • Support common refactoring with semantic-refactor. See srefactor-demos for demonstration of refactoring features. (when semantic layer is included)
  • Support code navigation via cscope (when cscope layer is included) and gtags.
  • Support auto-completion (when auto-completion layer is included) via company-clang (when c-c++-enable-clang-support is turned on), or company-ycmd (when ycmd layer is included).
  • Support for realgud debugger.
  • Support for rtags.
  • Support for cquery or ccls as an lsp backend.

Install

Layer

To use this configuration layer, add it to your ~/.spacemacs. You will need to add c-c++ to the existing dotspacemacs-configuration-layers list in this file.

Note: semantic-refactor is only available for Emacs 24.4+

Default mode for header files

By default header files are opened in c-mode, you can open them in c++-mode by setting the variable c-c++-default-mode-for-headers to c++-mode.

(setq-default dotspacemacs-configuration-layers
              '((c-c++ :variables c-c++-default-mode-for-headers 'c++-mode)))

Note: To set the variable for a given project, create a directory local variable at the root of your project. More info on directory local variables can be found in the dir-locals.

Backends

This layer supports the selection of one of 3 available backends for code navigation etc via the c-c++-backend configuration variable.

RTags

RTags is a well established clang-based source code indexing tool.

External dependencies

Install the RTags server via homebrew, the aur or from source according to the instructions here. N.B. RTags is not supported on Windows at the time of writing, although there is an open issue with some recent activity on github.

Configuration

To enable support for rtags, set the layer variable c-c++-backend:

(setq-default dotspacemacs-configuration-layers
              '((c-c++ :variables c-c++-backend 'rtags)))

This will also enable company-rtags to be used as a backend for auto-completion (when auto-completion layer is included). To prevent this, while retaining the rest of Rtags functionality, set the variable c-c++-rtags-completion to nil:

(setq-default dotspacemacs-configuration-layers
              '((c-c++ :variables
                       c-c++-backend 'rtags
                       c-c++-enable-rtags-completion nil)))

cquery / ccls (lsp backends)

cquery and ccls are alternative implementations of the language server protocol based on libclang. They claim to be more efficient than existing tools at indexing large code bases.

Features:

  • Cross references (definitions, references, base/derived classes/methods, type instances, …)
  • Diagnostics
  • Completion with company-lsp
  • Semantic highlighting
  • See more on https://github.com/cquery-project/cquery/wiki/Emacs
  • Cross-platform - functional on Windows, Linux and OSX.

External dependencies

Install one (or both) of the following:

cquery server

Install the cquery server. Instructions.

ccls server

Install the ccls server. Instructions.

Configuration

Basic

Select either cquery or ccls as the c-c++ layer backend by adding the following to your dotfile:

(setq-default dotspacemacs-configuration-layers
              '((c-c++ :variables c-c++-backend 'lsp-cquery))) ;or 'lsp-ccls

N.B. The LSP layer will be loaded automatically if either backend is selected.

Setting path to backend executable

The basic configuration above should work if the cquery/ccls executable folder is present in your path. If not, you can set the path explicitly.

(setq-default dotspacemacs-configuration-layers
              '((c-c++ :variables
                       c-c++-backend 'lsp-cquery
                       c-c++-lsp-executable "/path/to/bin/cquery/or/ccls")))

If you need to expand ~ in the path, you can use file-truename like

(setq-default dotspacemacs-configuration-layers
              '((c-c++ :variables
                       c-c++-backend 'lsp-cquery
                       c-c++-lsp-executable (file-truename "~/bin/cquery/or/ccls"))))
Semantic highlighting

Semantic highlighting is disabled by default. To enable, set the c-c++-lsp-sem-highlight-method variable to either 'font-lock or 'overlay. To enable the rainbow semantic highlighting colour theme, set c-c++-lsp-sem-highlight-rainbow to t.

Additional configuration options

Both lsp backends are configured to store their index cache in a subdirectory of .emacs.d/cache. This can be overridden by specifying an explicit c-c++-lsp-cache-dir. Setting this value to a relative path will cause the index cache to be placed in a subdirectory of your project root.

There are other initialization options such as the number of indexer threads, cache serialization format. They have good default values. See config.el of the layer and the backends’ respective homepages for more info.

Example dotspacemacs-configuration-layers entry
(setq-default dotspacemacs-configuration-layers
              '((c-c++ :variables
                       c-c++-adopt-subprojects t
                       c-c++-backend 'lsp-ccls
                       c-c++-lsp-executable (file-truename "~/dev/cpp/ccls/Release/ccls")
                       c-c++-lsp-sem-highlight-rainbow t)))

Completion

company-lsp provides completion functionality. Client-side cache and sorting have been disabled in favour of server, as recommended by cquery=/=ccls wikis.

Clang Configuration

To enable Clang support, set the layer variable c-c++-enable-clang-support to t in the dotfile:

(setq-default dotspacemacs-configuration-layers
              '((c-c++ :variables c-c++-enable-clang-support t)))

N.B. do not set this option if either the cquery or ccls backend

clang-format

clang-format allows reformatting either a selected region of code (clang-format-region) or a whole buffer (clang-format-buffer) according to a style defined in a .clang-format file. This file is either located in the same directory as the file being edited, or any of its parent directories. If no .clang-format is found, then a default style will be used.

To enable automatic buffer formatting on save, set the variable c-c++-enable-clang-format-on-save to t:

(setq-default dotspacemacs-configuration-layers
              '((c-c++ :variables c-c++-enable-clang-format-on-save t)))

Company-clang and flycheck

This layer adds some fancy improvements to company-clang. It includes a hook to load a projects .clang_complete file, which is just a text file with one clang flag per line, a format also used by other text editor clang plugins.

Not only does this allow proper autocomplete on projects with extra includes and flags, but there is also support for flycheck so that it doesn’t complain about missing header files.

Enable google-set-c-style

If you have clang enabled with clang-format as described earlier in this page you may not have a lot of neeed for google-set-c-style if you are already using a mode based on Google mode for most of your projects.

However, if you don’t have (or want) clang-format, or if you have to do a lot Tramp remote editing on systems that don’t have clang-format installed, you may want google-c-style enabled and added to your common hooks.

To get google-c-style actually install itself into your C/C++ common hooks, you need to have c-c++-enable-google-style defined to true when you load the C-C++ lang in Spacemacs. In your ~/.spacemacs file, a possible way that this would look is that in your list of dostpacemacs-configuration-layers you have an entry like

(c-c++ :variables c-c++-enable-google-style t)

Additionally, if you have c-c++-enable-google-newline variable set then `google-make-newline-indent will be set as a c-mode-common-hook. You would set that up like this:

(c-c++ :variables c-c++-enable-google-style t
                  c-c++-enable-google-newline t)

Newlines

You can enable the Auto-newline minor mode that automatically adds newlines after certain characters by setting the c-c++-enable-auto-newline variable.

(c-c++ :variables c-c++-enable-auto-newline t)

Projectile sub-project adoption

To prevent projectile from using subproject root when visiting files in a subproject, set c-c++-adopt-subprojects to t.

(c-c++ :variables c-c++-adopt-subprojects t)

This is based on a recommendation on the cquery and ccls wikis, but should be more generally applicable.

Key bindings

Key bindingDescription
SPC m g aopen matching file
(e.g. switch between .cpp and .h, requires a project to work)
SPC m g Aopen matching file in another window
(e.g. switch between .cpp and .h, requires a project to work)
SPC m Ddisaster: disassemble c/c++ code
SPC m r .srefactor: refactor thing at point.

Note: semantic-refactor is only available for Emacs 24.4+.

Formatting (clang-format)

Key bindingDescription
SPC m = =format current region or buffer
SPC m = fformat current function

RTags

Key bindingDescription
SPC m g .find symbol at point
SPC m g ,find references at point
SPC m g ;find file
SPC m g /find all references at point
SPC m g [location stack back
SPC m g ]location stack forward
SPC m g >c++ tags find symbol
SPC m g <c++ tags find references
SPC m g Bshow rtags buffer
SPC m g dprint dependencies
SPC m g Ddiagnostics
SPC m g ereparse file
SPC m g Epreprocess file
SPC m g Ffixit
SPC m g Gguess function at point
SPC m g hprint class hierarchy
SPC m g Ic++ tags imenu
SPC m g Lcopy and print current location
SPC m g Msymbol info
SPC m g Ogoto offset
SPC m g pset current project
SPC m g Rrename symbol
SPC m g sprint source arguments
SPC m g Sdisplay summary
SPC m g Ttaglist
SPC m g vfind virtuals at point
SPC m g Vprint enum value at point
SPC m g Xfix fixit at point
SPC m g Ycycle overlays on screen

cquery / ccls

The key bindings listed below are in addition to the default key bindings defined by the LSP layer. A [ccls] or [cquery] suffix indicates that the binding is for the indicated backend only.

backend (language server)

Key bindingDescription
SPC m b frefresh index (e.g. after branch change)
SPC m b ppreprocess file

goto

Key bindingDescription
SPC m g &find references (address)
SPC m g Rfind references (read)
SPC m g Wfind references (write)
SPC m g cfind callers
SPC m g Cfind callees
SPC m g vvars
SPC m g ffind file at point (ffap)
SPC m g Fffap other window

goto/hierarchy

Key bindingDescription
SPC m g h bbase class(es)
SPC m g h dderived class(es) [ccls]
SPC m g h ccall hierarchy
SPC m g h Ccall hierarchy (inv)
SPC m g h iinheritance hierarchy
SPC m g h Iinheritance hierarchy (inv)

goto/member

Key bindingDescription
SPC m g m hmember hierarchy
SPC m g m tmember types [ccls]
SPC m g m fmember functions [ccls]
SPC m g m vmember variables [ccls]