-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
72 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Welcome to the **cord.nvim** wiki! | ||
|
||
- [Migrating from v1](https://github.com/vyfor/cord.nvim/wiki/Migration) | ||
- [Configuration](https://github.com/vyfor/cord.nvim/wiki/Configuration) | ||
- [Examples](https://github.com/vyfor/cord.nvim/wiki/Examples) | ||
- [Available Plugins](https://github.com/vyfor/cord.nvim/wiki/Plugins) | ||
- [Add or Change File Icons](https://github.com/vyfor/cord.nvim/wiki/File-Icons) | ||
- [Troubleshooting](https://github.com/vyfor/cord.nvim/wiki/Troubleshooting) | ||
- [Contributing](https://github.com/vyfor/cord.nvim/wiki/Contributing) | ||
- [Plugin System](https://github.com/vyfor/cord.nvim/wiki/Plugin-System) | ||
- [Migrating from v1](./Migration.md) | ||
- [Configuration](./Configuration.md) | ||
- [Examples](./Examples.md) | ||
- [Available Plugins](./Plugins.md) | ||
- [Add or Change File Icons](./File-Icons.md) | ||
- [Troubleshooting](./Troubleshooting.md) | ||
- [Contributing](./Contributing.md) | ||
- [Plugin System](./Plugin-System.md) | ||
|
||
<p>π¬ Questions? Post in <a href="https://github.com/vyfor/cord.nvim/discussions">Discussions</a> or reach me out on Discord: <a href="https://discord.com/users/446729269872427018"><strong>vyfor</strong></a></p> | ||
<div><a href="https://discord.gg/q9rC4bjCHv"><img src="https://discord.com/api/guilds/1322899307925602366/widget.png?style=banner3" alt="cord.nvim"/></a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,8 +32,9 @@ jobs: | |
- name: Apply changes | ||
if: github.event_name == 'push' | ||
run: | | ||
git config --global user.name "vyfor" | ||
git config --global user.email "[email protected]" | ||
git pull | ||
git config --global user.name "github-actions[bot]" | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git add -A | ||
git commit -m "style(stylua): format Lua code" || echo "No changes to commit" | ||
git commit -m "style(lua): reformat code" || echo "No changes to commit" | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Panvimdoc | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [master, client-server] | ||
paths: | ||
- README.md | ||
- .github/wiki/** | ||
- .github/workflows/panvimdoc.yml | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
docs: | ||
name: Generate Panvimdoc | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- run: | | ||
INCLUDES="\`\`\`{.include}\n.github/wiki/Configuration.md\n\`\`\`\n\n\`\`\`{.include}\n.github/wiki/File-Icons.md\n\`\`\`\n\n\`\`\`{.include}\n.github/wiki/Plugins.md\n\`\`\`\n\n\`\`\`{.include}\n.github/wiki/Examples.md\n\`\`\`\n\n" | ||
echo -e "$INCLUDES$(cat README.md)" > _README.md | ||
- uses: kdheepak/panvimdoc@main | ||
with: | ||
vimdoc: cord | ||
pandoc: _README.md | ||
demojify: true | ||
|
||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: "chore(docs): update vimdoc [skip ci]" | ||
branch: ${{ github.head_ref }} | ||
skip_dirty_check: true | ||
file_pattern: doc/cord.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters