Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion .github/workflows/panvimdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,29 @@ jobs:
name: pandoc to vimdoc
steps:
- uses: actions/checkout@v4

- name: panvimdoc
uses: kdheepak/panvimdoc@main
with:
vimdoc: "VectorCode" # Output vimdoc project name (required)
pandoc: "./docs/neovim.md" # Input pandoc file
pandoc: "./docs/neovim/README.md" # Input pandoc file
toc: true # Table of contents
description: "A code repository indexing tool to supercharge your LLM experience." # Project description used in title (if empty, uses neovim version and current date)
titledatepattern: "%Y %B %d" # Pattern for the date that used in the title
demojify: true # Strip emojis from the vimdoc
dedupsubheadings: true # Add heading to subheading anchor links to ensure that subheadings are unique
treesitter: true # Use treesitter for highlighting codeblocks
ignorerawblocks: true # Ignore raw html blocks in markdown when converting to vimdoc
docmapping: false # Use h4 headers as mapping docs
docmappingprojectname: true # Use project name in tag when writing mapping docs
shiftheadinglevelby: 0 # Shift heading levels by specified number
incrementheadinglevelby: 0 # Increment heading levels by specified number

- name: panvimdoc
uses: kdheepak/panvimdoc@main
with:
vimdoc: "VectorCode-API" # Output vimdoc project name (required)
pandoc: "./docs/neovim/api_references.md" # Input pandoc file
toc: true # Table of contents
description: "A code repository indexing tool to supercharge your LLM experience." # Project description used in title (if empty, uses neovim version and current date)
titledatepattern: "%Y %B %d" # Pattern for the date that used in the title
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ model output and reduce hallucination.

- For the setup and usage of the command-line tool, see [the CLI documentation](./docs/cli.md);
- For neovim users, after you've gone through the CLI documentation, please refer to
[the neovim plugin documentation](./docs/neovim.md) for further instructions.
[the neovim plugin documentation](./docs/neovim/README.md) (and optionally the [lua API reference](./docs/neovim/api_references.md))
for further instructions.
- Additional resources:
- the [wiki](https://github.com/Davidyz/VectorCode/wiki) for extra tricks and
tips that will help you get the most out of VectorCode, as well as
instructions to setup VectorCode to work with some other neovim plugins;
tips that will help you get the most out of VectorCode;
- the [discussions](https://github.com/Davidyz/VectorCode/discussions) where
you can ask general questions and share your cool usages about VectorCode.
- If you're feeling adanvturous, feel free to check out
Expand Down
Loading