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

## Overview Upgrades to GHC 9.2.3 We'll want to upgrade Enlil at the same time: https://github.com/unisoncomputing/enlil/pull/74 Built on, and closes https://github.com/unisonweb/unison/pull/3117 ## Implementation notes * MOST changes were just adding...

## Overview Continuation of work on #3253 - - - This change is [](https://reviewable.io/reviews/unisonweb/unison/3281)

Closes #3145 Running `reflog` in `ucm` now displays a tip below the list of history entries: ``` ... 4. #sg60bvjo91 : ... Tip: Use `diff.namespace 1 7` to compare namespaces...

See https://github.com/unisonweb/unison/pull/3284#pullrequestreview-1057844307

needs-tests

On bigger namespace trees in particular.

dx
performance

``` structural type Row c = Row check : Row {Boolean} -> () check row = () value : Row {Text, Boolean} value = Row > check value ``` ```...

bug

I am running release/M4 of `ucm.exe` on Windows 11. The prompt is `[0m[32m.[0m> [0m` which seems to indicate a wrong interpretation of ANSI escape sequences by my terminal application (both...

# Names & PPEs Unison's unique design choices also present unique challenges. The AST doesn't store names for external definitions (since these names can change any time), so when parsing...

tech debt

``` unique ability Foo where foo : Nat Foo.map : (a ->{g} b) -> '{Foo,g} a -> '{Foo,g} b Foo.map f foo = do f !foo x = [Foo.map id...

typechecker
abilities

Sometimes `names.global` can't find types (and probably also terms?) that definitely exist. I'm having trouble creating a minimal example of this, but I see it with the following setup: -...

bug
codebase-manager