nvim: Rename directory 'vim-plugin' to 'nvim-plugin'

This commit is contained in:
Moritz Neeb
2025-07-18 15:42:01 +02:00
parent 9039b50a92
commit 20749d77e8
14 changed files with 13 additions and 13 deletions

View File

@@ -9,7 +9,7 @@ on:
branches:
- 'main'
paths:
- 'vim-plugin/**'
- 'nvim-plugin/**'
- '.github/workflows/deploy-vim-plugin.yml'
jobs:
@@ -22,7 +22,7 @@ jobs:
env:
REPO: git@github.com:ethersync/ethersync-vim
BRANCH: main
FOLDER: vim-plugin
FOLDER: nvim-plugin
SSH_PRIVATE_KEY: ${{ secrets.VIM_PLUGIN_DEPLOY_PRIVATE_KEY }}
SKIP_EMPTY_COMMITS: true
MESSAGE: "Automatic mirror of commit {sha} in main Ethersync repository"

View File

@@ -10,12 +10,12 @@ on:
- 'main'
paths:
- 'daemon/**'
- 'vim-plugin/**'
- 'nvim-plugin/**'
- '.github/workflows/general.yml'
pull_request:
paths:
- 'daemon/**'
- 'vim-plugin/**'
- 'nvim-plugin/**'
- '.github/workflows/general.yml'
env:
@@ -59,7 +59,7 @@ jobs:
- name: Install Neovim plugin
run: |
mkdir -p $HOME/.local/share/nvim/site/pack/plugins/start
ln -s $PWD/../vim-plugin $HOME/.local/share/nvim/site/pack/plugins/start/ethersync
ln -s $PWD/../nvim-plugin $HOME/.local/share/nvim/site/pack/plugins/start/ethersync
- name: Compile unit tests
run: cargo test --no-default-features --no-run --locked
- name: Run unit tests

View File

@@ -12,14 +12,14 @@ on:
- 'flake.*'
- 'contrib/nix/**'
- 'daemon/**'
- 'vim-plugin/**'
- 'nvim-plugin/**'
- '.github/workflows/nix.yml'
pull_request:
paths:
- 'flake.*'
- 'contrib/nix/**'
- 'daemon/**'
- 'vim-plugin/**'
- 'nvim-plugin/**'
- '.github/workflows/nix.yml'
jobs:

View File

@@ -9,11 +9,11 @@ on:
branches:
- 'main'
paths:
- 'vim-plugin/**'
- 'nvim-plugin/**'
- '.github/workflows/vim-plugin.yml'
pull_request:
paths:
- 'vim-plugin/**'
- 'nvim-plugin/**'
- '.github/workflows/vim-plugin.yml'
jobs:
@@ -26,8 +26,8 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: 0.20.0
args: --config-path vim-plugin/.stylua.toml --check vim-plugin
args: --config-path nvim-plugin/.stylua.toml --check nvim-plugin
- name: Luacheck Linting
uses: lunarmodules/luacheck@v1
with:
args: --config vim-plugin/.luacheckrc vim-plugin
args: --config nvim-plugin/.luacheckrc nvim-plugin

View File

@@ -23,7 +23,7 @@ repos:
rev: v2.1.0
hooks:
- id: stylua
args: ['--config-path', 'vim-plugin/.stylua.toml', '--check', 'vim-plugin']
args: ['--config-path', 'nvim-plugin/.stylua.toml', '--check', 'nvim-plugin']
- repo: https://github.com/fsfe/reuse-tool
rev: v5.0.2
hooks:

View File

@@ -5,5 +5,5 @@
{vimUtils, ...}:
vimUtils.buildVimPlugin {
name = "ethersync";
src = ../../vim-plugin;
src = ../../nvim-plugin;
}