Gnu的wc命令有一个-L-max-line-length选项,打印文件的最大行长度.参见
gnu man wc. freebsd wc也有-L,但不是-max-line-length,参见
freebsd man wc.
原文链接:https://www.f2er.com/bash/386329.html如何使用这些从vim?命令:
:%!wc -L
将通过wc -L过滤打开的文件,并使文件的内容成为最大行长度.
:%yank :%!wc -L :put
而不是使用wc,Find length of longest line – awk bash描述了如何使用awk找到最长行的长度.
好的,现在是一个纯Vim解决方案.我有点新脚本,但是这里.以下是基于textfilter的FilterLongestLineLength函数.
function! PrependLongestLineLength ( ) let maxlength = 0 let linenumber = 1 while linenumber <= line("$") exe ":".linenumber let linelength = virtcol("$") if maxlength < linelength let maxlength = linelength endif let linenumber = linenumber+1 endwhile exe ':0' exe 'normal O' exe 'normal 0C'.maxlength endfunction command PrependLongestLineLength call PrependLongestLineLength()
将此代码放在.vim文件(或.vimrc)中,然后:将文件导出.然后使用新命令:
:PrependLongestLineLength
谢谢,认为这是很有趣.