unison/unison-src/transcripts/empty-namespaces.output.md

32 lines
423 B
Markdown
Raw Normal View History

2021-12-06 23:44:40 +03:00
# Empty namespace behaviours
```unison
mynamespace.x = 1
```
2021-12-07 00:06:11 +03:00
The deleted namespace shouldn't appear in `ls` output.
2021-12-06 23:44:40 +03:00
```ucm
2021-12-07 00:06:11 +03:00
.> ls
nothing to show
2021-12-06 23:44:40 +03:00
2021-12-07 00:06:11 +03:00
```
```ucm
.> ls.verbose
😶
2021-12-06 23:44:40 +03:00
2021-12-07 00:06:11 +03:00
No results. Check your spelling, or try using tab completion
to supply command arguments.
2021-12-06 23:44:40 +03:00
```
```ucm
2021-12-07 00:06:11 +03:00
.> find mynamespace
2021-12-06 23:44:40 +03:00
2021-12-07 00:06:11 +03:00
😶
No results. Check your spelling, or try using tab completion
to supply command arguments.
2021-12-06 23:44:40 +03:00
```