Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adam12/referral.nvim
Neovim plugin to interact with the Referral Rubygem
https://github.com/adam12/referral.nvim
neovim-plugin ruby
Last synced: about 1 month ago
JSON representation
Neovim plugin to interact with the Referral Rubygem
- Host: GitHub
- URL: https://github.com/adam12/referral.nvim
- Owner: adam12
- License: mit
- Created: 2024-01-04T20:08:08.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-17T01:46:35.000Z (12 months ago)
- Last Synced: 2024-11-30T13:36:05.391Z (about 1 month ago)
- Topics: neovim-plugin, ruby
- Language: Lua
- Homepage:
- Size: 5.86 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Neovim plugin for the Referral Ruby gem
Add the convenient `:Referral` command to your Neovim configuration, which will
call the `referral` binary provided by [`referral`][1], and then load the results
into the quickfix window.## Installation
With Lazy.nvim, add the following to your configuration
```lua
{
'adam12/referral.nvim',
dependencies = {
'nvim-lua/plenary.nvim',
},
config = true,
cmd = 'Referral',
}
```## Usage
Inside a Ruby project, use the `:Referral` command to interact with `referral`.
The result will be loaded into the quickfix window, which you can open with `:copen`.### Example
`:Referral -n IPAddress` to look up a partial-name match of `IPAddress`.
[1]: https://rubygems.org/gems/referral