- Introduced `HighlighterRegistry` with support for multiple language highlighters (e.g., JSON, Markdown, Python). - Added `JsonHighlighter` implementation for basic JSON syntax highlighting.
10 lines
141 B
Bash
Executable File
10 lines
141 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
fmt_arg=""
|
|
if [ "${V}" = "1" ]
|
|
then
|
|
fmt_args="-fmt 3"
|
|
fi
|
|
|
|
ls -1 *.cc *.h | grep -v '^Font.h$' | xargs cloc ${fmt_args}
|