Skip to content

Commit e56cd62

Browse files
committed
Add help tags to gitignore
We don't need to track them in VCS, because they are generated by most plugin managers automatically.
1 parent 87283a2 commit e56cd62

File tree

6 files changed

+2
-55
lines changed

6 files changed

+2
-55
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Code contributions are much welcomed and appreciated.
1010
Here are a few guidelines to help you get started:
1111

1212
### Code Guidelines
13-
- If you add a new option, document it in the vim help file. Documenting it in the [README](/README.md) is NOT sufficient (and not even needed for most options). Take a look at [the existing helpfile](/doc/tpipeline.txt) and document in a similar style. You can generate a help tag later with [scripts/gen-helptags.sh](/scripts/gen-helptags.sh)
13+
- If you add a new option, document it in the vim help file. Documenting it in the [README](/README.md) is NOT sufficient (and not even needed for most options). Take a look at [the existing helpfile](/doc/tpipeline.txt) and document in a similar style.
1414
- Never change basic vim options (for example `:h fillchars`) just because they make more sense for you. Plugins should never overwrite unrelated settings
1515
- Only add comments if they bring extra info to the table, don't just reiterate obvious code
1616
- Often good variable names are much more worth than comments

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ jobs:
77
- uses: actions/checkout@v3
88
- name: Build the Docker image
99
run: docker build -t vim-tpipeline -f tests/Dockerfile .
10-
- name: Check help tags
11-
run: docker run -w /tmp/vim-tpipeline -t vim-tpipeline scripts/check-helptags.sh
1210
- name: Run tests with vim
1311
run: docker run -t vim-tpipeline make tests_vim
1412
- name: Run tests with neovim

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*.swp
22
*.log
3+
/doc/tags

doc/tags

Lines changed: 0 additions & 35 deletions
This file was deleted.

scripts/check-helptags.sh

Lines changed: 0 additions & 13 deletions
This file was deleted.

scripts/gen-helptags.sh

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)