-
Notifications
You must be signed in to change notification settings - Fork 4
/
docfd.opam
78 lines (70 loc) · 1.89 KB
/
docfd.opam
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
# 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 or a single file
- Swap between multi-file view and single file view on the fly
- Content view pane that shows the snippet surrounding the search result selected
- Text editor and PDF viewer 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"
"nottui" {= "0.3"}
"lwd"
"cmdliner" {>= "1.1.0"}
"eio" {>= "0.14"}
"digestif"
"eio_main"
"containers-data"
"timedesc" {>= "2.0.0"}
"re" {>= "1.11.0"}
"ppx_deriving" {>= "5.0"}
"decompress"
"progress"
"cbor"
"diet"
"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}
]
]
pin-depends: [
[ "nottui.0.3" "git+https://github.com/let-def/lwd.git#a337a778001e6c1dbaed7e758c9e05f300abd388" ]
[ "notty.0.2.3" "git+https://github.com/ocaml-dune/notty.git#b6e1036c61521be3b1f4d585895ac598bdf4ab8d" ]
]