2011-11-30 38 views

回答

0

一種粗暴的方式是手動截斷長行,也許有一個鍵盤宏:

C-x (    ; Start recording macro 
C-u 20    ; Prefix command for move-to-column 
M-x move-to-column ; Move cursor to 20th column 
C-space   ; Set mark 
C-e    ; Move to end of line 
C-w    ; ..and remove everything (truncating line) 
C-a    ; Move to start of line 
C-n    ; ..and to next line, read to repeat 
C-x)    ; End macro 
C-x e    ; Apply macro to next line