mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-04 01:03:36 +03:00
668 B
668 B
scratch/main> builtins.merge lib.builtin
foo = 1
lib.foo = 2
lib.bar = 3
cat.foo = 4
cat.lib.foo = 5
cat.lib.bar = 6
somewhere.bar = 7
scratch/main> add
scratch/main> find foo
scratch/main> view 1
scratch/main> find.all foo
scratch/main> view 1
scratch/main> find-in cat foo
scratch/main> view 1
scratch/main> find-in.all cat foo
scratch/main> view 1
Finding within a namespace
scratch/main> find bar
-- Shows UUIDs
-- scratch/main> find.global bar
scratch/main> find-in somewhere bar
scratch/main> find baz
scratch/main> find.global notHere