Skip to content

Commit

Permalink
feat(lua): add api and lua autocmds
Browse files Browse the repository at this point in the history
  • Loading branch information
tjdevries authored and bfredl committed Feb 27, 2022
1 parent 1b5767a commit 991e472
Show file tree
Hide file tree
Showing 38 changed files with 2,878 additions and 608 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ compile_commands.json
/.clangd/
/.cache/clangd/
/.ccls-cache/
/.clang-tidy

.DS_Store
*.mo
Expand Down
1 change: 1 addition & 0 deletions scripts/gen_vimdoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
'window.c',
'win_config.c',
'tabpage.c',
'autocmd.c',
'ui.c',
],
# List of files/directories for doxygen to read, separated by blanks
Expand Down
11 changes: 11 additions & 0 deletions scripts/uncrustify.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env bash

set -e

# Check that you have uncrustify
hash uncrustify

COMMITISH="${1:-master}"
for file in $(git diff --diff-filter=d --name-only $COMMITISH | grep '\.[ch]$'); do
uncrustify -c src/uncrustify.cfg -l C --replace --no-backup "$file"
done
Loading

0 comments on commit 991e472

Please sign in to comment.