Stew O'Connor
Stew O'Connor
Now when I open a .u file I get this message: ``` LSP :: The following servers support current file but do not have automatic installation: unisonlang You may find...
Yeah, I still get this error whenever it tries to start lsp-mode in a .u buffer. even if ucm is running. lsp-mode DOES work for other language servers, and LSP...
``` x : Text x = """a """ > x ``` 6 | > x ⧩ "a\n\739203" ```
``` x : Text x = """ """ > x ``` ``` 5 | > x ⧩ "\739203\585254" ``` Did that one actually omit the newline?
yes, it does seem to sometimes omit newlines: ``` x : Text x = """xyzzy """ > x ``` ``` 5 | > x ⧩ "xyzzy" ```
ok, I really didn't understand how our multi-line strings worked, I was VERY surprised that this is true: ``` > let a = """1 """ b = "1" c =...
no, its not as simple as just using left to right characters