On 03/10/2014 10:58 PM, Eli Zaretskii wrote: > It would be nice to be able to turn the cache on and off dynamically, > depending on the actual line length of the buffer. I tried to > implement this, but my naive implementation didn't work well, because > sampling of the lines tends to be extremely un-representative. If > someone can come up with a smarter implementation, please show it. What if we just maintain the '\n' counter per each buffer text? With that, finding an average line length is straightforward, and the very basic implementation looks fairly simple; this should be helpful in maintaining newline_cache as well. Dmitry