summaryrefslogtreecommitdiff
path: root/Command/Find.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Command/Find.hs')
-rw-r--r--Command/Find.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Command/Find.hs b/Command/Find.hs
index 9927b692d..7cb781ce8 100644
--- a/Command/Find.hs
+++ b/Command/Find.hs
@@ -13,6 +13,10 @@ import Control.Monad.State (liftIO)
import Command
import Core
+command :: [Command]
+command = [Command "find" (paramOptional $ paramRepeating paramPath) seek
+ "lists available files"]
+
seek :: [CommandSeek]
seek = [withDefault "." withFilesInGit start]