gitextract_8cygam37/ ├── .github/ │ ├── CODEOWNERS │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── config.yml │ └── workflows/ │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── docs/ │ ├── README.md │ ├── cheatsheet/ │ │ ├── README.md │ │ ├── getting-started/ │ │ │ └── README.md │ │ ├── repositories/ │ │ │ └── README.md │ │ └── syntax/ │ │ └── README.md │ ├── configuration/ │ │ └── README.md │ ├── contributions/ │ │ ├── README.md │ │ ├── bugs/ │ │ │ └── README.md │ │ ├── code/ │ │ │ └── README.md │ │ └── documentation/ │ │ └── README.md │ ├── deprecated/ │ │ └── Alfred/ │ │ └── README.md │ ├── examples/ │ │ ├── cheatsheet/ │ │ │ ├── example.cheat │ │ │ └── navi.cheat │ │ └── configuration/ │ │ └── config-example.yaml │ ├── installation/ │ │ └── README.md │ ├── usage/ │ │ ├── README.md │ │ ├── commands/ │ │ │ ├── info/ │ │ │ │ └── README.md │ │ │ └── repo/ │ │ │ └── README.md │ │ ├── fzf-overrides/ │ │ │ └── README.md │ │ └── shell-scripting/ │ │ └── README.md │ └── widgets/ │ ├── README.md │ └── howto/ │ ├── TMUX.md │ └── VIM.md ├── rust-toolchain.toml ├── rustfmt.toml ├── scripts/ │ ├── docker │ ├── dot │ ├── install │ ├── make │ ├── release │ └── test ├── shell/ │ ├── navi.plugin.bash │ ├── navi.plugin.elv │ ├── navi.plugin.fish │ ├── navi.plugin.nu │ ├── navi.plugin.ps1 │ └── navi.plugin.zsh ├── src/ │ ├── bin/ │ │ └── main.rs │ ├── clients/ │ │ ├── cheatsh.rs │ │ ├── mod.rs │ │ └── tldr.rs │ ├── commands/ │ │ ├── core/ │ │ │ ├── actor.rs │ │ │ └── mod.rs │ │ ├── func/ │ │ │ ├── map.rs │ │ │ ├── mod.rs │ │ │ └── widget.rs │ │ ├── info.rs │ │ ├── mod.rs │ │ ├── preview/ │ │ │ ├── mod.rs │ │ │ ├── var.rs │ │ │ └── var_stdin.rs │ │ ├── repo/ │ │ │ ├── add.rs │ │ │ ├── browse.rs │ │ │ └── mod.rs │ │ ├── shell.rs │ │ └── temp.rs │ ├── common/ │ │ ├── clipboard.rs │ │ ├── deps.rs │ │ ├── fs.rs │ │ ├── git.rs │ │ ├── hash.rs │ │ ├── mod.rs │ │ ├── shell.rs │ │ ├── terminal.rs │ │ └── url.rs │ ├── config/ │ │ ├── cli.rs │ │ ├── env.rs │ │ ├── mod.rs │ │ └── yaml.rs │ ├── deser/ │ │ ├── mod.rs │ │ ├── raycast.rs │ │ └── terminal.rs │ ├── env_var.rs │ ├── filesystem.rs │ ├── finder/ │ │ ├── mod.rs │ │ ├── post.rs │ │ └── structures.rs │ ├── lib.rs │ ├── libs/ │ │ └── dns_common/ │ │ ├── component.rs │ │ ├── mod.rs │ │ └── tracing.rs │ ├── parser.rs │ ├── prelude.rs │ ├── structures/ │ │ ├── cheat.rs │ │ ├── fetcher.rs │ │ ├── item.rs │ │ └── mod.rs │ └── welcome.rs └── tests/ ├── cheats/ │ ├── more_cases.cheat │ └── ssh.cheat ├── config.yaml ├── core.bash ├── helpers.sh ├── no_prompt_cheats/ │ ├── cases.cheat │ └── one.cheat ├── run └── tests.rs