We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72877f1 commit 9a8efd7Copy full SHA for 9a8efd7
bin/devopen.in
@@ -7,14 +7,14 @@ from pathlib import Path
7
from subprocess import call, check_output
8
from sys import argv, stderr
9
10
+root_path = Path("@DEVDOCS_INSTALL_DATADIR@")
11
+html_path = root_path / "html"
12
+
13
fzf = [ "fzf", "--no-sort" ]
14
pgm = Path(argv[0]).name
15
sep = " • "
16
www = environ.get("DEVDOCS_BROWSER", "w3m")
17
-root_path = Path("@DEVDOCS_INSTALL_DATADIR@")
-html_path = root_path / "html"
-
18
local = sorted([ path.name for path in html_path.iterdir() if path.is_dir() ])
19
20
def get_item(items):
0 commit comments