From 6b34719f633afc86f324959d93695b0c1f87e171 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Mon, 22 Oct 2012 18:51:38 -0700 Subject: [PATCH] tools.completion: better paths-matching. --- basis/tools/completion/completion.factor | 29 +++++++++++++++++++----- 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/basis/tools/completion/completion.factor b/basis/tools/completion/completion.factor index 22fec129b0..ba8cbdf6d5 100644 --- a/basis/tools/completion/completion.factor +++ b/basis/tools/completion/completion.factor @@ -2,10 +2,10 @@ ! See http://factorcode.org/license.txt for BSD license. USING: accessors arrays assocs colors.constants combinators -combinators.short-circuit fry io io.directories kernel locals -make math math.order namespaces sequences sorting splitting -strings unicode.case unicode.categories unicode.data vectors -vocabs vocabs.hierarchy words ; +combinators.short-circuit fry io.directories io.files +io.files.info io.pathnames kernel locals make math math.order +sequences sorting splitting unicode.categories unicode.data +vectors vocabs vocabs.hierarchy ; IN: tools.completion @@ -107,8 +107,23 @@ PRIVATE> : colors-matching ( str -- seq ) named-colors dup zip completions ; -: paths-matching ( str path -- seq ) - directory-files dup zip completions ; + + +: paths-matching ( str -- seq ) + dup file-directory [ ?head drop ] keep + dup { [ exists? ] [ file-info directory? ] } 1&& + [ directory-paths dup zip completions ] [ 2drop { } ] if ; : complete-CHAR:? ( tokens -- ? ) "CHAR:" complete-token? ; : complete-COLOR:? ( tokens -- ? ) "COLOR:" complete-token? ; + +: complete-P"? ( tokens -- ? ) "P\"" complete-token? ;