-
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: release v2, it's finally here :)
* dev: (159 commits) cleanup: remove nvim-treesitter HTTP parser branch modifications code docs: update README.md chore: update queries chore: autoformat with stylua chore: regenerate documentation ref(parser)!: do not read environment files during the parsing process docs: update project features chore: regenerate documentation feat: re-implement pre and post request hooks, load env variables from environment file before running the requests feat(env_vars): add a `quiet` parameter to `read_file` to decide whether to fail silently if an environment file is not found, some cleanups feat(config): add `decode_url` configuration option to the `result.behavior` table chore: regenerate documentation feat(utils): expose a `escape` function to encode strings, meant to be used by extensions to encode URLs in case their clients does not provide an encode utility feat(curl): encode URL query parameters using cURL flags docs(README): add links for Matrix and Discord, small adjustments ref(winbar): use more common highlighting groups, fixes #290 docs: added doc for telescope ext (#296) fix: ignore error log and adding syntax highlights for result when can not get the res_type feat: add `build.lua` to be able to install `rest.nvim` by using lazy fix(doc): fix indentation in `:h rest-nvim` callbacks section ...
- Loading branch information
Showing
58 changed files
with
4,985 additions
and
2,443 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: format | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths-ignore: | ||
- ".github/**" | ||
- "**.md" | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: read | ||
|
||
jobs: | ||
docgen: | ||
runs-on: ubuntu-latest | ||
name: Generate documentation | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up lemmy-help | ||
uses: supplypike/setup-bin@v3 | ||
with: | ||
uri: "https://github.com/numToStr/lemmy-help/releases/download/v0.11.0/lemmy-help-x86_64-unknown-linux-gnu.tar.gz" | ||
name: lemmy-help | ||
version: "0.11.0" | ||
- name: Generate docs | ||
run: "make docgen" | ||
- name: Commit changes | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: "chore: regenerate documentation" | ||
branch: ${{ github.ref }} | ||
- name: Push formatted files | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: ${{ github.ref }} |
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 |
---|---|---|
|
@@ -10,8 +10,8 @@ jobs: | |
luacheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: nebularg/[email protected].0 | ||
- uses: actions/checkout@v4 | ||
- uses: nebularg/[email protected].2 | ||
with: | ||
files: 'lua/' | ||
config: 'https://raw.githubusercontent.com/NTBBloodbath/rest.nvim/main/.luacheckrc' | ||
|
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 was deleted.
Oops, something went wrong.
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
Oops, something went wrong.