unison/unison-src/transcripts/view.md
2022-08-17 12:16:40 -06:00

424 B

View commands

.> builtins.mergeio
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