You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
codefmt itself has very little insight into what the formatter is doing, and the amount of boilerplate is also a little annoying. Things can get weird if e.g. FormatRange is called multiple times to process multiple ranges, especially with formatters that try to populate errors into the quickfix list.
A different approach would be to pass a codefmt handle and implement formatter operations in terms of that handle, like
formattable.GetLines([start], [end])
formattable.SetLines({lines})
formattable.SetLines({start}, {end}, {lines})
formattable.SetCursor({row}, {col})
formattable.AddError({error}, [row], [col])
A simple formatter would look like
function someformatter.FormatRange(startline, endline, formattable) abortletl:input=join(a:formattable.GetLines(), "\n")
letl:result=maktaba#syscall#Create(…).WithStdin(l:input).Call()
calla:formattable.SetLines(l:result.stdout)
endfunction
Some advantages are that it can make some formatting operations more convenient and anti-patterns like overwriting files on disk less natural. If we run into wonkiness as we enable fancy features like format-changed-lines-on-save (multiple ranges), it could help solve issues like that, too.
The text was updated successfully, but these errors were encountered:
Formatters right now take a range and modify the buffer as a side-effect, e.g.
codefmt itself has very little insight into what the formatter is doing, and the amount of boilerplate is also a little annoying. Things can get weird if e.g. FormatRange is called multiple times to process multiple ranges, especially with formatters that try to populate errors into the quickfix list.
A different approach would be to pass a codefmt handle and implement formatter operations in terms of that handle, like
formattable.GetLines([start], [end])
formattable.SetLines({lines})
formattable.SetLines({start}, {end}, {lines})
formattable.SetCursor({row}, {col})
formattable.AddError({error}, [row], [col])
A simple formatter would look like
Some advantages are that it can make some formatting operations more convenient and anti-patterns like overwriting files on disk less natural. If we run into wonkiness as we enable fancy features like format-changed-lines-on-save (multiple ranges), it could help solve issues like that, too.
The text was updated successfully, but these errors were encountered: