https://github.com/nvim-flutter/pubspec-assist.nvim
https://github.com/nvim-flutter/pubspec-assist.nvim
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nvim-flutter/pubspec-assist.nvim
- Owner: nvim-flutter
- License: agpl-3.0
- Created: 2021-11-11T12:26:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-15T10:41:57.000Z (over 1 year ago)
- Last Synced: 2024-09-12T05:35:41.111Z (9 months ago)
- Language: Lua
- Size: 50.8 KB
- Stars: 26
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pubspec-assist.nvim
A neovim clone of [pubspec-assist](https://github.com/jeroen-meijer/pubspec-assist) a plugin for adding and updating dart dependencies in pubspec.yaml files.
## Features
Version picker (using `vim.ui.select`)
Package search (using `vim.ui.input`)
## Status:
This plugin is in _alpha_ but should be stable enough for daily usage.
## Requirements:
- `nvim 0.7+`
- `plenary.nvim`## Installation
```lua
use {
'akinsho/pubspec-assist.nvim',
requires = 'plenary.nvim',
config = function()
require('pubspec-assist').setup()
end,
}
```## Contributing
If you decide to use this plugin but want to see X feature implemented, then rather than making feature requests consider
contributing PRs instead. I won't be taking a endless feature requests and the best way to see a feature want implemented
is to contibute it yourself.