-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocfd.opam
More file actions
81 lines (71 loc) · 1.91 KB
/
Copy pathdocfd.opam
File metadata and controls
81 lines (71 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "TUI multiline fuzzy document finder"
description: """
Think interactive grep for text files, PDFs, DOCXs, etc,
but word/token based instead of regex and line based,
so you can search across lines easily.
Docfd aims to provide good UX via integration with common text editors
and PDF viewers,
so you can jump directly to a search result with a single key press.
Features:
- Multithreaded indexing and searching
- Multiline fuzzy search of multiple files
- Content view pane that shows the snippet surrounding the search result selected
- Text editor and PDF viewer integration
- Editable command history - rewrite/plan your actions in text editor
- Search scope narrowing - limit scope of next search based on current search results
- Clipboard integration
"""
maintainer: ["Darren Li"]
authors: ["Darren Li"]
license: "MIT"
tags: ["fuzzy" "document" "finder"]
homepage: "https://github.com/darrenldl/docfd"
doc: "https://github.com/darrenldl/docfd"
bug-reports: "https://github.com/darrenldl/docfd/issues"
depends: [
"ocaml" {>= "5.2"}
"dune" {>= "3.4"}
"fmt" {>= "0.9.0"}
"angstrom" {>= "0.15.0"}
"containers" {>= "3.12"}
"oseq"
"spelll"
"notty-community"
"nottui" {>= "0.4"}
"nottui-unix" {>= "0.4"}
"lwd" {>= "0.5"}
"cmdliner" {>= "2.0.0"}
"eio" {>= "0.14"}
"digestif"
"eio_main" {>= "1.3"}
"containers-data"
"timedesc" {>= "3.1.2"}
"re" {>= "1.11.0"}
"ppx_deriving" {>= "5.0"}
"decompress" {>= "1.4.0"}
"progress" {>= "0.5.0"}
"diet"
"sqlite3" {>= "5.0.0"}
"uuseg" {>= "15.1.0"}
"uucp"
"alcotest" {with-test}
"qcheck-alcotest" {with-test}
"qcheck" {with-test}
"odoc" {with-doc}
]
dev-repo: "git+https://github.com/darrenldl/docfd.git"
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@doc" {with-doc}
]
]