ソース管理にGitを使用している場合、これに対処する別の方法があります。ここでの回答に触発されて、私はgitattributesファイルで使用するための独自のフィルターを作成しました。
このフィルターをインストールするには、フィルターをのnoeol_filter
どこかに保存し、$PATH
実行可能にして、次のコマンドを実行します。
git config --global filter.noeol.clean noeol_filter
git config --global filter.noeol.smudge cat
自分だけにフィルタを使用するには、次の行をに入れます$GIT_DIR/info/attributes
。
*.php filter=noeol
これにより.php
、Vimが何をしても、ファイルのeofで改行をコミットしないようになります。
そして今、スクリプト自体:
#!/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)