On Thu, 14 Jul 2011, Aditya Mahajan wrote:
On Wed, 13 Jul 2011, Hans Hagen wrote:
- Typing gets frontstripped with the number of spaces in front of \stoptyping so that one can have nicely formatted input like:
Great. Recently I had added a similar functionality to t-vim using the key 'trimspaces=on|off'. I'll change that to 'frontstripped' to be consistent with the core.
There is no option frontstripped. buff-ver does have a 'strip' option, but looking at the corresponding lua code, I don't think that it can work: local function filter(lines,settings) local strip = settings.strip if strip == v_yes then lines = realign(lines,strip) end ... end This means that when realign is called, strip = v_yes. But, realign function is defined as local function realign(lines,forced_n) -- no, auto, <number> forced_n = (forced_n == v_auto and huge) or tonumber(forced_n) if forced_n then ... end return lines end Since, forced_n is always true when realign is called, the original lines are not changed. Hans, did you mean if not (strip == v_no) then in the filter function? Aditya