tools.completion: add "paths-matching".

db4
John Benediktsson 2012-09-24 20:22:29 -07:00
parent 5e57a8258d
commit d5998a712f
1 changed files with 6 additions and 3 deletions

View File

@ -2,9 +2,9 @@
! See http://factorcode.org/license.txt for BSD license.
USING: accessors arrays assocs colors.constants combinators fry
io kernel locals make math math.order namespaces sequences
sorting strings unicode.case unicode.categories unicode.data
vectors vocabs vocabs.hierarchy words ;
io io.directories kernel locals make math math.order namespaces
sequences sorting strings unicode.case unicode.categories
unicode.data vectors vocabs vocabs.hierarchy words ;
IN: tools.completion
@ -97,3 +97,6 @@ PRIVATE>
: colors-matching ( str -- seq )
named-colors dup zip completions ;
: paths-matching ( str path -- seq )
directory-files dup zip completions ;