Skip to content

Commit

Permalink
update sloc
Browse files Browse the repository at this point in the history
  • Loading branch information
adsr committed Dec 9, 2024
1 parent 9a68fac commit 4fece7d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ test: mle $(mle_unit_tests)
./mle -v && export MLE=$$(pwd)/mle && $(MAKE) -C tests

sloc:
find . -name '*.c' -or -name '*.h' | \
grep -Pv '(termbox|test|ut|lua)' | \
xargs -rn1 cat | \
wc -l
find . -maxdepth 1 \
'(' -name '*.c' -or -name '*.h' ')' \
-not -name 'termbox2.h' \
-exec cat {} ';' | wc -l

install: mle
install -v -d $(DESTDIR)$(prefix)/bin
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Runs on Linux, Windows (Cygwin or WSL), FreeBSD, macOS, and more.

### Features

* Small codebase (~11k SLOC)
* Small codebase (~12k SLOC)
* Full UTF-8 support
* Syntax highlighting
* Stackable key maps (modes)
Expand Down

0 comments on commit 4fece7d

Please sign in to comment.