unison icon indicating copy to clipboard operation
unison copied to clipboard

A friendly programming language from the future

Results 727 unison issues
Sort by recently updated
recently updated
newest added

When running a main function in `ucm` a numeric argument is replaced by the potential last result of a find command: ``` main _ = printLine ("Hello " ++ Optional.getOrElse...

bug
workflow
triaged

**Describe and demonstrate the bug** From a new install of Unison: ``` scratch/main> project.create optics 🎉 I've created the project optics. I'll now fetch the latest version of the base...

bug
crash
triaged

**Describe and demonstrate the bug** The following `Doc` fails to typecheck with `ucm` `0.5.26`: ```unison testDoc : Doc testDoc = {{ key: '{{ s "value" }}'. }} ``` The error...

bug
triaged

**Is your feature request related to a problem? Please describe.** I want to quickly create a branch from a point in `history`. I tried `@ceedubs/exists/main> branch #oou75lskn1 testing`. It didn't...

feature request
triaged

**Describe and demonstrate the bug** Code in the scratch file references `Cloud.run.withConfig`. UCM thinks it's ambiguous, but the suggested names it offers are even more ambiguous. `withConfig` isn't defined in...

bug
triaged

**Is your feature request related to a problem? Please describe.** helpful for caching codebases If we're doing tests in CI that require downloading some stuff from share, we want to...

feature request
triaged

**Describe and demonstrate the bug** @hojberg and I have noticed a change in how terms which include the `|>` operator are displayed since 0.5.26. Old display as of 0.5.25: ![Screenshot...

bug
triaged

If you have an unclosed backtick in a doc literal, the parser will continue searching for its match until the end of the file. As far as I know, using...

error-message
triaged

I discovered a ucm behavior that surprised me. I can reproduce in the following manner: 1. Create new project. 2. Open a scratch file. 3. Create a watch expression >...

bug
triaged

I'd like to be able to evaluate a Unison expression from the command line of the unison tool. I'm imagining something like: ``` master> > 2 + 2 ``` So,...

workflow