We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc60452 commit ccb35eaCopy full SHA for ccb35ea
README.md
@@ -24,6 +24,20 @@ Exercise downloader for https://rustplatform.com/
24
```
25
You can find your API key on your [profile page](https://rustplatform.com/profile/).
26
27
+### Navigating exercises
28
+
29
+Once downloaded, use [fzf](https://github.com/junegunn/fzf) to quickly jump between exercise directories:
30
31
+```bash
32
+cdf() {
33
+ local dir
34
+ dir=$(find . -type d | fzf --reverse --prompt='cd to> ') || return
35
+ cd "$dir"
36
+}
37
+```
38
39
+Add this to your shell profile, then type `cdf` to fuzzy-search and `cd` into any exercise.
40
41
### Compile it manually
42
43
Maybe you want to have a look at the code and make some changes.
0 commit comments