Skip to content

Commit

Permalink
ci: fix luarocks workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Sep 16, 2024
1 parent aa012f6 commit 85dc79b
Show file tree
Hide file tree
Showing 12 changed files with 1,049 additions and 527 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/luarocks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0 # Required to count the commits
- name: Install Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ""
- name: Get Version
run: echo "LUAROCKS_VERSION=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV
- name: Luarocks Upload
Expand Down
46 changes: 40 additions & 6 deletions doc/rocks-edit.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
==============================================================================
See useful diagnostics right from your rocks.toml *rocks-edit.nvim*

==============================================================================
Table of Contents *rocks-edit-contents*

See useful diagnostics right from your rocks.toml ············ |rocks-edit.nvim|
rocks-edit.nvim configuration ······························ |rocks-edit.config|
rocks-edit.nvim Lua API ······································· |rocks-edit.api|

==============================================================================
rocks-edit.nvim configuration *rocks-edit.config*

You can configure rocks-edit.nvim using a `[edit]` table in your rocks.toml.

Example:
>toml
[edit.builtin_sources]
unsynced = true
updated = true

[edit]
events = [ "TextChanged", "BufWritePost" ]
<


rocks-edit.Config *rocks-edit.Config*

Fields: ~
{builtin_sources} (table<builtin_source,boolean>)
A list of module paths to invoke that act as sources for `rocks-edit.nvim`.


builtin_source *builtin_source*


Variants: ~



==============================================================================
rocks-edit.nvim Lua API *rocks-edit.api*

Expand Down Expand Up @@ -39,10 +79,4 @@ rocks-edit.Source *rocks-edit.Source*
fun(toml:RocksToml,set:fun(diagnostic:rocks-edit.Diagnostic))


rocks-edit.Config *rocks-edit.Config*

Fields: ~
{builtin_sources} (table<string,boolean>) A list of module paths to invoke that act as sources for `rocks-edit.nvim`.


vim:tw=78:ts=8:noet:ft=help:norl:
Loading

0 comments on commit 85dc79b

Please sign in to comment.