view bin/dfi @ 634:ced2ee9efd9f

Update various syntaxes to the ones in vim repo
author nanaya <me@nanaya.pro>
date Tue, 17 Dec 2019 20:21:23 +0900
parents 006c273399fb
children
line wrap: on
line source

#!/usr/bin/env python

import os
import sys

rows = sys.stdin.readlines()

for row in rows:
  if row.find(' ', 1, 49) == -1:
    row = row[0:48] + ' ' + row[48:]
  data = row.split(None, 5)
  print '|'.join(data)