vocab-browser: Display symbols separate from words
parent
305a9713b9
commit
19036845bd
|
@ -74,7 +74,15 @@ IN: vocab-browser
|
||||||
[ pprint-class ] each
|
[ pprint-class ] each
|
||||||
]
|
]
|
||||||
if
|
if
|
||||||
|
|
||||||
|
dup vocab words [ class? not ] filter [ symbol? ] filter natural-sort
|
||||||
|
dup empty?
|
||||||
|
[ drop ]
|
||||||
|
[
|
||||||
|
"Symbols" $heading nl
|
||||||
|
print-seq
|
||||||
|
]
|
||||||
|
if
|
||||||
|
|
||||||
dup vocab words [ generic? ] filter natural-sort
|
dup vocab words [ generic? ] filter natural-sort
|
||||||
dup empty?
|
dup empty?
|
||||||
|
@ -92,6 +100,7 @@ IN: vocab-browser
|
||||||
[ builtin-class? not ] filter
|
[ builtin-class? not ] filter
|
||||||
[ tuple-class? not ] filter
|
[ tuple-class? not ] filter
|
||||||
[ generic? not ] filter
|
[ generic? not ] filter
|
||||||
|
[ symbol? not ] filter
|
||||||
[ word? ] filter
|
[ word? ] filter
|
||||||
natural-sort
|
natural-sort
|
||||||
[ [ ] [ word-effect-as-string ] bi 2array ] map
|
[ [ ] [ word-effect-as-string ] bi 2array ] map
|
||||||
|
|
Loading…
Reference in New Issue