docs: rename repository from oil.nvim to canola.nvim
Problem: the fork shared the same name as upstream, making it difficult to distinguish and discover independently. Solution: rename the repository to canola.nvim — a type of oil, making the lineage obvious while establishing a distinct identity. Update all references in the README, rockspec, and issue templates.
This commit is contained in:
parent
d1f7c691b5
commit
c92a5bd42a
5 changed files with 18 additions and 20 deletions
4
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
4
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
|
|
@ -9,7 +9,7 @@ body:
|
||||||
options:
|
options:
|
||||||
- label:
|
- label:
|
||||||
I have searched [existing
|
I have searched [existing
|
||||||
issues](https://github.com/barrettruth/oil.nvim/issues)
|
issues](https://github.com/barrettruth/canola.nvim/issues)
|
||||||
required: true
|
required: true
|
||||||
- label: I have updated to the latest version
|
- label: I have updated to the latest version
|
||||||
required: true
|
required: true
|
||||||
|
|
@ -69,7 +69,7 @@ body:
|
||||||
require('lazy.nvim').setup({
|
require('lazy.nvim').setup({
|
||||||
spec = {
|
spec = {
|
||||||
{
|
{
|
||||||
'barrettruth/oil.nvim',
|
'barrettruth/canola.nvim',
|
||||||
init = function()
|
init = function()
|
||||||
vim.g.oil = {}
|
vim.g.oil = {}
|
||||||
end,
|
end,
|
||||||
|
|
|
||||||
2
.github/ISSUE_TEMPLATE/config.yaml
vendored
2
.github/ISSUE_TEMPLATE/config.yaml
vendored
|
|
@ -1,5 +1,5 @@
|
||||||
blank_issues_enabled: false
|
blank_issues_enabled: false
|
||||||
contact_links:
|
contact_links:
|
||||||
- name: Questions
|
- name: Questions
|
||||||
url: https://github.com/barrettruth/oil.nvim/discussions
|
url: https://github.com/barrettruth/canola.nvim/discussions
|
||||||
about: Ask questions and discuss ideas
|
about: Ask questions and discuss ideas
|
||||||
|
|
|
||||||
2
.github/ISSUE_TEMPLATE/feature_request.yaml
vendored
2
.github/ISSUE_TEMPLATE/feature_request.yaml
vendored
|
|
@ -9,7 +9,7 @@ body:
|
||||||
options:
|
options:
|
||||||
- label:
|
- label:
|
||||||
I have searched [existing
|
I have searched [existing
|
||||||
issues](https://github.com/barrettruth/oil.nvim/issues)
|
issues](https://github.com/barrettruth/canola.nvim/issues)
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
|
|
|
||||||
24
README.md
24
README.md
|
|
@ -1,10 +1,8 @@
|
||||||
# oil.nvim
|
# canola.nvim
|
||||||
|
|
||||||
**A file explorer that lets you edit your filesystem like a buffer**
|
A refined [oil.nvim](https://github.com/stevearc/oil.nvim) — edit your
|
||||||
|
filesystem like a buffer, with bug fixes and community PRs that haven't landed
|
||||||
Browse directories as normal Neovim buffers, then create, rename, move, copy,
|
upstream.
|
||||||
and delete files by editing the listing and saving. Cross-directory operations
|
|
||||||
work seamlessly across local, SSH, S3, and trash adapters.
|
|
||||||
|
|
||||||
https://user-images.githubusercontent.com/506791/209727111-6b4a11f4-634a-4efa-9461-80e9717cea94.mp4
|
https://user-images.githubusercontent.com/506791/209727111-6b4a11f4-634a-4efa-9461-80e9717cea94.mp4
|
||||||
|
|
||||||
|
|
@ -29,10 +27,10 @@ https://user-images.githubusercontent.com/506791/209727111-6b4a11f4-634a-4efa-94
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
Install with your package manager of choice or via
|
Install with your package manager of choice or via
|
||||||
[luarocks](https://luarocks.org/modules/barrettruth/oil.nvim):
|
[luarocks](https://luarocks.org/modules/barrettruth/canola.nvim):
|
||||||
|
|
||||||
```
|
```
|
||||||
luarocks install oil.nvim
|
luarocks install canola.nvim
|
||||||
```
|
```
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
@ -61,11 +59,11 @@ Before (`stevearc/oil.nvim`):
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
After (`barrettruth/oil.nvim`):
|
After (`barrettruth/canola.nvim`):
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
{
|
{
|
||||||
'barrettruth/oil.nvim',
|
'barrettruth/canola.nvim',
|
||||||
init = function()
|
init = function()
|
||||||
vim.g.oil = { ... }
|
vim.g.oil = { ... }
|
||||||
end,
|
end,
|
||||||
|
|
@ -100,6 +98,6 @@ Drew Neil:
|
||||||
|
|
||||||
## Acknowledgements
|
## Acknowledgements
|
||||||
|
|
||||||
oil.nvim was created by
|
canola.nvim is a fork of [oil.nvim](https://github.com/stevearc/oil.nvim),
|
||||||
[Steven Arcangeli](https://github.com/stevearc/oil.nvim). This fork is
|
created by [Steven Arcangeli](https://github.com/stevearc). Maintained by
|
||||||
maintained by [Barrett Ruth](https://github.com/barrettruth).
|
[Barrett Ruth](https://github.com/barrettruth).
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,14 @@
|
||||||
rockspec_format = '3.0'
|
rockspec_format = '3.0'
|
||||||
package = 'oil.nvim'
|
package = 'canola.nvim'
|
||||||
version = 'scm-1'
|
version = 'scm-1'
|
||||||
|
|
||||||
source = {
|
source = {
|
||||||
url = 'git+https://github.com/barrettruth/oil.nvim.git',
|
url = 'git+https://github.com/barrettruth/canola.nvim.git',
|
||||||
}
|
}
|
||||||
|
|
||||||
description = {
|
description = {
|
||||||
summary = 'Neovim file explorer: edit your filesystem like a buffer',
|
summary = 'Neovim file explorer: edit your filesystem like a buffer',
|
||||||
homepage = 'https://github.com/barrettruth/oil.nvim',
|
homepage = 'https://github.com/barrettruth/canola.nvim',
|
||||||
license = 'MIT',
|
license = 'MIT',
|
||||||
}
|
}
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue