2002-02-21 17:18:46 +03:00
|
|
|
#! /bin/sh
|
2002-08-24 21:39:07 +04:00
|
|
|
# *** External Formatter (Indenter) for GNU Midnight Commander.
|
|
|
|
# arguments:
|
|
|
|
# $1 - Name of the file being edited
|
|
|
|
# $2 - Name of the file to be processed
|
2001-08-23 21:45:33 +04:00
|
|
|
|
|
|
|
exec >/dev/null
|
|
|
|
|
|
|
|
case `echo $1 |sed 's/^.*\.//'` in
|
|
|
|
c|h)
|
|
|
|
# ftp://ftp.gnu.org/pub/gnu/indent/
|
|
|
|
indent -kr -pcs "$2"
|
2000-05-24 03:25:37 +04:00
|
|
|
;;
|
2001-08-23 21:45:33 +04:00
|
|
|
C|cc|CC|cxx|CXX|cpp|CPP)
|
|
|
|
# http://astyle.sourceforge.net/
|
|
|
|
astyle "$2"
|
|
|
|
;;
|
|
|
|
java|JAVA)
|
|
|
|
# http://astyle.sourceforge.net/
|
|
|
|
astyle --style=java --mode=java "$2"
|
2000-05-24 03:25:37 +04:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
#ftp://alpha.gnu.org/gnu/fetish/textutils-2.0.tar.gz
|
2001-08-23 21:45:33 +04:00
|
|
|
fmt "$2" >"$2.tmp" && rm -f "$2" && mv -f "$2.tmp" "$2"
|
|
|
|
;;
|
2000-05-24 03:25:37 +04:00
|
|
|
esac
|