Disable view.global transcript for now

This commit is contained in:
Chris Penner 2024-07-05 16:55:07 -07:00
parent 4c89423ef1
commit d0002b45c9
2 changed files with 20 additions and 22 deletions

View File

@ -16,10 +16,16 @@ scratch/main> add
```ucm
-- Should suffix-search and find values in sub-namespaces
scratch/main> view thing
-- view.global should search globally and be absolutely qualified
scratch/other> view.global thing
-- Should support absolute paths
scratch/main> view .b.thing
```
TODO: swap this back to a 'ucm' block when view.global is re-implemented
```
-- view.global should search globally and be absolutely qualified
scratch/other> view.global thing
-- Should support branch relative paths
scratch/other> view /main:.a.thing
```

View File

@ -15,28 +15,20 @@ scratch/main> view thing
b.thing : Text
b.thing = "b"
-- Should support absolute paths
scratch/main> view .b.thing
.b.thing : Text
.b.thing = "b"
```
TODO: swap this back to a 'ucm' block when view.global is re-implemented
```
-- view.global should search globally and be absolutely qualified
scratch/other> view.global thing
⚠️
The following names were not found in the codebase. Check your spelling.
thing
-- Should support branch relative paths
scratch/other> view /main:.a.thing
```
```ucm
-- Should suffix-search and find values in sub-namespacesscratch/main> view thing-- view.global should search globally and be absolutely qualifiedscratch/other> view.global thing-- Should support absolute pathsscratch/main> view .b.thing-- Should support branch relative pathsscratch/other> view /main:.a.thing
```
🛑
The transcript failed due to an error in the stanza above. The error is:
⚠️
The following names were not found in the codebase. Check your spelling.
thing