Vim FAQ
Err: A line cannot be longer than 2048 characters.
這是因為 VI 的每一行字數不可超過 2048 字元,遇到時可以將超過字數的行刪除,另存一個檔。
cut -c1-2047 before.log > after.log
開啟 3X MB 檔案時出現錯誤
ex: 0602-101 Out of memory saving lines for undo.
vi -y 99999999 your-file
這是因為 VI 的每一行字數不可超過 2048 字元,遇到時可以將超過字數的行刪除,另存一個檔。
cut -c1-2047 before.log > after.log
ex: 0602-101 Out of memory saving lines for undo.
vi -y 99999999 your-file