Fccf Versions Save

fccf: A command-line tool that quickly searches through C/C++ source code in a directory based on a search string and prints relevant code snippets that match the query.

v0.6.0

2 years ago
  • Added --no-color option to prevent colored output #6, b015ccd
  • Removed unnecessary clang libraries from cmake target_link_libraries #5, 0c8504 - Fixes build in Arch Linux

v0.5.0

2 years ago
  • Queries can be empty - In this case, fccf will try and match all --flag options, e.g., all enum declarations.
  • Added support for searching variable declarations
  • Added support for searching parameter declarations (function or method parameter)
  • Updated README to show notes on include_directories
  • Added support for searching class destructors
  • Added support for searching cast expressions - static, dynamic, reinterpret, and const_cast expressions
  • Added support for searching inside throw expressions and typedef expressions
  • Added support for searching inside for statements (including C++ ranged for)

v0.4.0

2 years ago
  • Added support for piping to another application for coloring the output.

Here's an example of fccf output getting piped to bat

image

v0.3.0

2 years ago
  • Added support for using declarations, using directives, and type alias declarations.
image
  • Added support for namespace alias declarations
image

v0.2.0

2 years ago

Example 1: Usage of function

image

Example 2: Usage of variable

image

v0.1.0

2 years ago

Initial Release