Hay otra forma de abordar esto si está utilizando Git para el control de fuente. Inspirado por una respuesta aquí , escribí mi propio filtro para usar en un archivo de atributos .
Para instalar este filtro, guárdelo como noeol_filter
en algún lugar de su $PATH
, hágalo ejecutable y ejecute los siguientes comandos:
git config --global filter.noeol.clean noeol_filter
git config --global filter.noeol.smudge cat
Para comenzar a usar el filtro solo para usted, ponga la siguiente línea en su $GIT_DIR/info/attributes
:
*.php filter=noeol
Esto asegurará que no confirmes ninguna nueva línea en eof en un .php
archivo, sin importar lo que haga Vim.
Y ahora, el script en sí:
#!/usr/bin/python
# a filter that strips newline from last line of its stdin
# if the last line is empty, leave it as-is, to make the operation idempotent
# inspired by: /programming/1654021/how-can-i-delete-a-newline-if-it-is-the-last-character-in-a-file/1663283#1663283
import sys
if __name__ == '__main__':
try:
pline = sys.stdin.next()
except StopIteration:
# no input, nothing to do
sys.exit(0)
# spit out all but the last line
for line in sys.stdin:
sys.stdout.write(pline)
pline = line
# strip newline from last line before spitting it out
if len(pline) > 2 and pline.endswith("\r\n"):
sys.stdout.write(pline[:-2])
elif len(pline) > 1 and pline.endswith("\n"):
sys.stdout.write(pline[:-1])
else:
sys.stdout.write(pline)