https://github.com/jimhester/completeme
WIP
https://github.com/jimhester/completeme
Last synced: 26 days ago
JSON representation
WIP
- Host: GitHub
- URL: https://github.com/jimhester/completeme
- Owner: jimhester
- License: other
- Created: 2017-08-22T21:52:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-29T18:10:02.000Z (almost 6 years ago)
- Last Synced: 2024-08-13T07:11:08.209Z (8 months ago)
- Language: R
- Size: 30.3 KB
- Stars: 40
- Watchers: 12
- Forks: 7
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - jimhester/completeme - WIP (R)
README
# completeme
[](https://travis-ci.org/jimhester/completeme)
[](https://codecov.io/github/jimhester/completeme?branch=master)The goal of completeme is to help me, help you. It allows package authors and
users to register a set of completion functions to define custom completions.## Package Authors
Package authors can define custom completions for their package and register
them with **completeme** in `.onLoad()`.```r
.onLoad <- function(pkg, lib) {
completeme::register_completion(mypackagename = completion_function)
}
```---
Name inspired by [YouCompleteMe](https://github.com/Valloric/YouCompleteMe) and [Maverick](https://media.giphy.com/media/tChHURpFSqaQg/giphy.gif).