mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-04 01:03:36 +03:00
0031542faf
This is for consistency with the `cmark` style. Now the blocks we still pretty-print ourselves will match the bulk of them that `cmark` produces.
636 B
636 B
alias.term
makes a new name for a term.
project/main> alias.term lib.builtins.bug foo
Done.
project/main> ls
1. foo (a -> b)
2. lib/ (643 terms, 92 types)
It won't create a conflicted name, though.
project/main> alias.term lib.builtins.todo foo
⚠️
A term by that name already exists.
project/main> ls
1. foo (a -> b)
2. lib/ (643 terms, 92 types)
You can use debug.alias.term.force
for that.
project/main> debug.alias.term.force lib.builtins.todo foo
Done.
project/main> ls
1. foo (a -> b)
2. foo (a -> b)
3. lib/ (643 terms, 92 types)