diff options
Diffstat (limited to '.gemini/skills/vim-bundle-maintenance/SKILL.md')
| -rw-r--r-- | .gemini/skills/vim-bundle-maintenance/SKILL.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.gemini/skills/vim-bundle-maintenance/SKILL.md b/.gemini/skills/vim-bundle-maintenance/SKILL.md index 69ec63d..6b4838e 100644 --- a/.gemini/skills/vim-bundle-maintenance/SKILL.md +++ b/.gemini/skills/vim-bundle-maintenance/SKILL.md @@ -21,7 +21,6 @@ This skill provides a standardized workflow for maintaining Vim plugins managed ```bash git submodule update --init --recursive --remote ``` -- **Modernize Update Script**: Ensure `bundle-update.sh` (if it exists) uses the `git submodule update --remote` approach rather than manual `git pull` within directories to avoid branch-matching issues. ### 3. Clean and Recompile Some plugins require manual compilation after an update. @@ -30,7 +29,7 @@ Some plugins require manual compilation after an update. 2. Run installer: `python3 pack/bundle/start/YouCompleteMe/install.py --clang-completer` (add other flags like `--ts-completer` as needed). ### 4. Finalize -- Stage the changes: `git add .gitmodules bundle-update.sh pack/bundle/start/` +- Stage the changes: `git add .gitmodules pack/bundle/start/` - Commit with a descriptive message including the update date. ## Common Flags for YCM install.py |
