vocabs-matching now considers all vocabs, not just loaded vocabs

db4
Slava Pestov 2009-01-16 00:56:32 -06:00
parent d82a68a14c
commit 4f540c288c
1 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,8 @@
! See http://factorcode.org/license.txt for BSD license.
USING: accessors kernel arrays sequences math namespaces
strings io fry vectors words assocs combinators sorting
unicode.case unicode.categories math.order vocabs ;
unicode.case unicode.categories math.order vocabs
tools.vocabs ;
IN: tools.completion
: (fuzzy) ( accum ch i full -- accum i ? )
@ -75,4 +76,4 @@ IN: tools.completion
all-words name-completions ;
: vocabs-matching ( str -- seq )
dictionary get values name-completions ;
all-vocabs-seq name-completions ;