Skip to content

Commit 8b47871

Browse files
committed
feat: add utf8 functions (WIP)
1 parent f0379f5 commit 8b47871

File tree

5 files changed

+820
-66
lines changed

5 files changed

+820
-66
lines changed

.clang-format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
AllowShortFunctionsOnASingleLine: false
22
AllowShortIfStatementsOnASingleLine: false
33
AllowShortLoopsOnASingleLine: false
4+
AllowShortCaseLabelsOnASingleLine: true
45
IndentCaseLabels: false
56
SortIncludes: false
67
ColumnLimit: 80

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ debug:
3737
$(CC) -Og -ggdb3 $(CFLAGS) $(COVERAGE) -shared src/fzf.c -o build/$(TARGET)
3838

3939
test: build/test
40-
@LD_LIBRARY_PATH=${PWD}/build:${LD_LIBRARY_PATH} ./build/test
40+
LD_LIBRARY_PATH=${PWD}/build:${LD_LIBRARY_PATH} ./build/test
4141

4242
benchmark: build/benchmark
43-
@LD_LIBRARY_PATH=${PWD}/build:${LD_LIBRARY_PATH} ./build/benchmark
43+
LD_LIBRARY_PATH=${PWD}/build:${LD_LIBRARY_PATH} ./build/benchmark
4444

4545
ntest:
4646
nvim --headless --noplugin -u test/minrc.vim -c "PlenaryBustedDirectory test/ { minimal_init = './test/minrc.vim' }"

0 commit comments

Comments
 (0)