sublime-reason icon indicating copy to clipboard operation
sublime-reason copied to clipboard

you don't highlight tick-char specially

Open Alexey-T opened this issue 4 years ago • 1 comments

Example from Reason repo

          let result =
            switch (part) {
            | `Text(value) =>
              if (String.length(workingLine)
                  + String.length(lastDelim)
                  + String.length(value) <= cols) {
                (message, workingLine ++ lastDelim ++ value, "");
              } else {
                (message ++ "\n" ++ workingLine, value, "");
              }
            | `Delim(g) => (message, workingLine, Re.Group.get(g, 0))
            };

Alexey-T avatar Aug 23 '21 21:08 Alexey-T

`Text
`Delim 

Alexey-T avatar Aug 23 '21 21:08 Alexey-T