unison/unison-src/transcripts/view.md
2024-01-12 10:19:02 -08:00

422 B

View commands

.> builtins.merge
a.thing = "a"
b.thing = "b"
.> add
-- Should suffix-search and find values in sub-namespaces
.> view thing
-- Should be local to namespace
.a> view thing
-- view.global should search globally and be absolutely qualified
.a> view.global thing
-- Should support absolute paths outside of current namespace
.a> view .b.thing