2 releases

0.1.1 Jul 27, 2024
0.1.0 Jul 1, 2024

#423 in Development tools

21 downloads per month

MIT license

44KB
856 lines

mascot

dook: Definition lookup in your code

Find code definitions using tree-sitter and ripgrep, and pretty-print them using bat.

Installation

Install ripgrep and bat. Build and install with:

cargo install --git https://github.com/pteromys/dook

Example usage

pteromys@delia ~/src/dook $ dook write
───────┬────────────────────────────────────────────────────────────────
       │ File: ./src/paging.rs
───────┼────────────────────────────────────────────────────────────────
  61impl std::io::Write for MaybePager {
 ...   │ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ 8< ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─
  69fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> {
  70match self.pipe() {
  71Some(pipe) => pipe.write(buf),
  72None => std::io::stdout().write(buf),
  73}
  74}
───────┴────────────────────────────────────────────────────────────────

Also attempts to find assignments, class definitions, etc—because why should you have to figure out the difference before you search? In old javascript codebases there isn't really a difference anyway!

Supported languages

  • c
  • c++
  • go
  • javascript
  • python
  • rust
  • typescript
  • tsx

Alternatives and prior art

Goals vs non-goals

  • Find definitions.
  • Show enough context to answer the usual questions that motivate looking up a definition.
  • Minimize user inputs:
    • Amount of thinking the user needs to do before typing the first invocation
    • Amount of output the user needs to read or scroll past to see what they wanted
    • Number of invocations
    • Amount of typing to make each invocation
  • Balance responsiveness and thoroughness: explicitly, return results before the user thinks of a follow-up query.
  • Sacrifice consistency and machine readability if necessary to improve chances of showing relevant context. (If you want machine-predictable output, use cq instead.)
  • Sacrifice disk and RAM footprint for accuracy and my own development time—tree-sitter parsers are maybe 2 megs each on disk, and the codebase you're searching is probably larger. But do try to keep RAM usage an order of magnitude or so smaller than the IDE you're probably procrastinating opening.

Possible future work

  • better language detection (e.g. llvm headers are C++ but most deviously end in lowercase .h)
  • more languages (and tests in more languages 😱)
  • show all calls to a function instead (git grep -W already gets mostly there so I care less)
  • end this project and make it instead a feature of ripgrep (may not be viable because the parsers for all the languages add up to a pretty large binary size; then again maybe rubicon offers some hope)
  • Upgrade tree-sitter version so I can make better patterns. The current C and C++ query patterns make me want to scream.

License

MIT

Dependencies

~73MB
~2M SLoC