Is there a command to determine length of a longest line in vim? And to append that length at the beginning of the file?
feedback
|
|
Gnu's wc command has a -L --max-line-length option which prints out the max line length of the file. See the gnu man wc. The freebsd wc also has -L, but not --max-line-length, see freebsd man wc. How to use these from vim? The command:
Will filter the open file through wc -L and make the file's contents the maximum line length. To retain the file contents and put the maximum line length on the first line do:
Instead of using wc, Find length of longest line - awk bash describes how to use awk to find the length of the longest line. Ok, now for a pure Vim solution. I'm somewhat new to scripting, but here goes. What follows is based on the FilterLongestLineLength function from textfilter.
Put this code in a .vim file (or your .vimrc) and :source the file. Then use the new command:
Thanks, figuring this out was fun. | |||||||
feedback
|
|
If you work with tabulations expanded, a simple
is enough. Otherwise, I guess we will need the following (that you could find as the last example in
| ||||
|
feedback
|