aboutsummaryrefslogtreecommitdiff
path: root/scripts/mpd-indent.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/mpd-indent.sh')
-rwxr-xr-xscripts/mpd-indent.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/mpd-indent.sh b/scripts/mpd-indent.sh
index 992cf9dc..0bf54189 100755
--- a/scripts/mpd-indent.sh
+++ b/scripts/mpd-indent.sh
@@ -1 +1,6 @@
-indent -npro -kr -i8 -ts8 -sob -l80 -ss -ncs -cdw -cd0 -c0 -cp0 $@
+#!/bin/sh
+indent -npro -kr -i8 -ts8 -sob -l80 -ss -ncs -cdw -cd0 -c0 -cp0 "$@"
+
+# there doesn't seem to be an indent switch for this, but this
+# forces goto labels to the left-most column, without indentation
+perl -i -p -e 's/^\s+(\w+):/$1:/g unless /^\s+default:/' "$@"