dontrolle / vscode-reflow-lines

Reflow paragraph extension for vscode
3 stars 5 forks source link

Lines don't get to `prefferedLineLength` #7

Open vgrigoriu opened 7 years ago

vgrigoriu commented 7 years ago

I noticed that with the default line length I only get lines that are maximum 79 characters long. It seems to be because of this line:

    if (curLine.length + 1 + word.length >= curMaxLineLength) {

I think >= should be >. Do you agree or is this intentional and I'm missing something?

I can send a pull request if it would help.