From c92a5bd42a28efd73cda981bf64a66fbdb9f1c66 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sun, 22 Feb 2026 22:01:34 -0500 Subject: [PATCH] docs: rename repository from oil.nvim to canola.nvim MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- .github/ISSUE_TEMPLATE/bug_report.yaml | 4 ++-- .github/ISSUE_TEMPLATE/config.yaml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yaml | 2 +- README.md | 24 +++++++++---------- ...m-1.rockspec => canola.nvim-scm-1.rockspec | 6 ++--- 5 files changed, 18 insertions(+), 20 deletions(-) rename oil.nvim-scm-1.rockspec => canola.nvim-scm-1.rockspec (68%) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 6447534..8784517 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -9,7 +9,7 @@ body: options: - label: I have searched [existing - issues](https://github.com/barrettruth/oil.nvim/issues) + issues](https://github.com/barrettruth/canola.nvim/issues) required: true - label: I have updated to the latest version required: true @@ -69,7 +69,7 @@ body: require('lazy.nvim').setup({ spec = { { - 'barrettruth/oil.nvim', + 'barrettruth/canola.nvim', init = function() vim.g.oil = {} end, diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yaml index ce81bef..c1d9d46 100644 --- a/.github/ISSUE_TEMPLATE/config.yaml +++ b/.github/ISSUE_TEMPLATE/config.yaml @@ -1,5 +1,5 @@ blank_issues_enabled: false contact_links: - name: Questions - url: https://github.com/barrettruth/oil.nvim/discussions + url: https://github.com/barrettruth/canola.nvim/discussions about: Ask questions and discuss ideas diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index 6515953..2a0fad8 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -9,7 +9,7 @@ body: options: - label: I have searched [existing - issues](https://github.com/barrettruth/oil.nvim/issues) + issues](https://github.com/barrettruth/canola.nvim/issues) required: true - type: textarea diff --git a/README.md b/README.md index 5cdda64..acdd02e 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,8 @@ -# oil.nvim +# canola.nvim -**A file explorer that lets you edit your filesystem like a buffer** - -Browse directories as normal Neovim buffers, then create, rename, move, copy, -and delete files by editing the listing and saving. Cross-directory operations -work seamlessly across local, SSH, S3, and trash adapters. +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 +upstream. 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 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 @@ -61,11 +59,11 @@ Before (`stevearc/oil.nvim`): } ``` -After (`barrettruth/oil.nvim`): +After (`barrettruth/canola.nvim`): ```lua { - 'barrettruth/oil.nvim', + 'barrettruth/canola.nvim', init = function() vim.g.oil = { ... } end, @@ -100,6 +98,6 @@ Drew Neil: ## Acknowledgements -oil.nvim was created by -[Steven Arcangeli](https://github.com/stevearc/oil.nvim). This fork is -maintained by [Barrett Ruth](https://github.com/barrettruth). +canola.nvim is a fork of [oil.nvim](https://github.com/stevearc/oil.nvim), +created by [Steven Arcangeli](https://github.com/stevearc). Maintained by +[Barrett Ruth](https://github.com/barrettruth). diff --git a/oil.nvim-scm-1.rockspec b/canola.nvim-scm-1.rockspec similarity index 68% rename from oil.nvim-scm-1.rockspec rename to canola.nvim-scm-1.rockspec index 8e1bb80..988d6a2 100644 --- a/oil.nvim-scm-1.rockspec +++ b/canola.nvim-scm-1.rockspec @@ -1,14 +1,14 @@ rockspec_format = '3.0' -package = 'oil.nvim' +package = 'canola.nvim' version = 'scm-1' source = { - url = 'git+https://github.com/barrettruth/oil.nvim.git', + url = 'git+https://github.com/barrettruth/canola.nvim.git', } description = { 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', }