atom-clang-expand

Expand functions, methods and macros in C and C++.

goldsborough

6,704

1

Bug Reports

0.1.3

MIT

GitHub

🐉 atom-clang-expand



An atom integration of clang-expand.

Enables:

This package will watch out for a .clang-expand file at the root of your project, in YAML format, with the following schema:

---
sources: Single glob pattern
  - Or list of glob patterns
  - to find source files,
  - absolute or relative to the project root, e.g.:
  - src/**/*.cpp
  - Note that the root is always searched.

extra:
  - List of flags
  - to pass to the compiler
  - to compile your source files, e.g.:
  - -I/path/to/headers
  - -std=c++14
...