Modules for Elvish Shell

Updating README

Changed files
+21 -1
+21 -1
README.md
··· 36 36 ``` 37 37 38 38 # Usage 39 - ## TODO 40 39 41 40 ```elvish 42 41 use github.com/ejrichards/mellon/<module> 43 42 ``` 43 + 44 + ## `fzf.elv` 45 + 46 + Add bindings for `Ctrl-r` and `Up` to use fzf for searching history. 47 + ```elvish 48 + if (has-external fzf) { 49 + use github.com/ejrichards/mellon/fzf 50 + set edit:insert:binding[Ctrl-r] = { fzf:history } 51 + set edit:insert:binding[Up] = { fzf:history } 52 + } 53 + ``` 54 + 55 + ## `yazi.elv` 56 + 57 + Add an alias `y` that will `cd` on quit. 58 + ```elvish 59 + if (has-external yazi) { 60 + use github.com/ejrichards/mellon/yazi 61 + edit:add-var y~ $yazi:y~ 62 + } 63 + ```