https://github.com/aca/elvish-compl
https://github.com/aca/elvish-compl
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/aca/elvish-compl
- Owner: aca
- Created: 2024-03-12T15:19:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-09T13:38:16.000Z (about 2 years ago)
- Last Synced: 2024-06-09T14:46:16.512Z (about 2 years ago)
- Language: Elvish
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# elvish-compl
Set of elvish completions and utils.
## Install
```
use epm
epm:install github.com/aca/elvish-compl
```
## Modules
#### fish-completer
Converts completions from [fish](https://github.com/fish-shell/fish-shell/tree/master/share/completions). It requires fish but worth it.
```
use github.com/aca/elvish-compl/fish-completer
fish-completer:apply
```
```
λ docker run -it nixos/nix nix-shell -p elvish fish git --run elvish
/# use epm; epm:install github.com/aca/elvish-compl
/# use github.com/aca/elvish-compl/fish-completer
/# fish-completer:apply git
/# git
add | Add file contents to the index
am | Apply a series of patches from a mailbox
apply | Apply a patch on a git index file and a working tree
archive | Create an archive of files from a named tree
bisect | Find the change that introduced a bug by binary search
```
#### fish-completer-apply-all
For the lazy people, just convert all fish completions on source [completions](https://github.com/fish-shell/fish-shell/tree/master/share/completions)
```
use github.com/aca/elvish-compl/fish-completer-apply-all
```