aboutsummaryrefslogtreecommitdiff
path: root/.config/vis/plugins/vis-lspc/tools/check-format
diff options
context:
space:
mode:
Diffstat (limited to '.config/vis/plugins/vis-lspc/tools/check-format')
-rwxr-xr-x.config/vis/plugins/vis-lspc/tools/check-format8
1 files changed, 8 insertions, 0 deletions
diff --git a/.config/vis/plugins/vis-lspc/tools/check-format b/.config/vis/plugins/vis-lspc/tools/check-format
new file mode 100755
index 0000000..392d023
--- /dev/null
+++ b/.config/vis/plugins/vis-lspc/tools/check-format
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+LUA_FILE=$1
+lua-format "${LUA_FILE}" > "${LUA_FILE}.fmt"
+diff "${LUA_FILE}" "${LUA_FILE}.fmt"
+RET=$?
+rm "${LUA_FILE}.fmt"
+exit ${RET}