├── .gitignore ├── README.md ├── VERSION.md ├── bin ├── dasht ├── dasht-docsets ├── dasht-docsets-extract ├── dasht-docsets-install ├── dasht-docsets-remove ├── dasht-docsets-update ├── dasht-query-exec ├── dasht-query-html ├── dasht-query-line ├── dasht-server └── dasht-server-http ├── etc └── zsh │ ├── completions.zsh │ └── completions │ ├── _dasht │ ├── _dasht_docsets │ ├── _dasht_pattern │ └── _dasht_query_exec └── man └── man1 ├── dasht-docsets-extract.1 ├── dasht-docsets-install.1 ├── dasht-docsets-remove.1 ├── dasht-docsets-update.1 ├── dasht-docsets.1 ├── dasht-query-exec.1 ├── dasht-query-html.1 ├── dasht-query-line.1 ├── dasht-server-http.1 ├── dasht-server.1 └── dasht.1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/VERSION.md -------------------------------------------------------------------------------- /bin/dasht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/bin/dasht -------------------------------------------------------------------------------- /bin/dasht-docsets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/bin/dasht-docsets -------------------------------------------------------------------------------- /bin/dasht-docsets-extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/bin/dasht-docsets-extract -------------------------------------------------------------------------------- /bin/dasht-docsets-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/bin/dasht-docsets-install -------------------------------------------------------------------------------- /bin/dasht-docsets-remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/bin/dasht-docsets-remove -------------------------------------------------------------------------------- /bin/dasht-docsets-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/bin/dasht-docsets-update -------------------------------------------------------------------------------- /bin/dasht-query-exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/bin/dasht-query-exec -------------------------------------------------------------------------------- /bin/dasht-query-html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/bin/dasht-query-html -------------------------------------------------------------------------------- /bin/dasht-query-line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/bin/dasht-query-line -------------------------------------------------------------------------------- /bin/dasht-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/bin/dasht-server -------------------------------------------------------------------------------- /bin/dasht-server-http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/bin/dasht-server-http -------------------------------------------------------------------------------- /etc/zsh/completions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/etc/zsh/completions.zsh -------------------------------------------------------------------------------- /etc/zsh/completions/_dasht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/etc/zsh/completions/_dasht -------------------------------------------------------------------------------- /etc/zsh/completions/_dasht_docsets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/etc/zsh/completions/_dasht_docsets -------------------------------------------------------------------------------- /etc/zsh/completions/_dasht_pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/etc/zsh/completions/_dasht_pattern -------------------------------------------------------------------------------- /etc/zsh/completions/_dasht_query_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/etc/zsh/completions/_dasht_query_exec -------------------------------------------------------------------------------- /man/man1/dasht-docsets-extract.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/man/man1/dasht-docsets-extract.1 -------------------------------------------------------------------------------- /man/man1/dasht-docsets-install.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/man/man1/dasht-docsets-install.1 -------------------------------------------------------------------------------- /man/man1/dasht-docsets-remove.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/man/man1/dasht-docsets-remove.1 -------------------------------------------------------------------------------- /man/man1/dasht-docsets-update.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/man/man1/dasht-docsets-update.1 -------------------------------------------------------------------------------- /man/man1/dasht-docsets.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/man/man1/dasht-docsets.1 -------------------------------------------------------------------------------- /man/man1/dasht-query-exec.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/man/man1/dasht-query-exec.1 -------------------------------------------------------------------------------- /man/man1/dasht-query-html.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/man/man1/dasht-query-html.1 -------------------------------------------------------------------------------- /man/man1/dasht-query-line.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/man/man1/dasht-query-line.1 -------------------------------------------------------------------------------- /man/man1/dasht-server-http.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/man/man1/dasht-server-http.1 -------------------------------------------------------------------------------- /man/man1/dasht-server.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/man/man1/dasht-server.1 -------------------------------------------------------------------------------- /man/man1/dasht.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/dasht/HEAD/man/man1/dasht.1 --------------------------------------------------------------------------------