File tree Expand file tree Collapse file tree 4 files changed +17
-6
lines changed Expand file tree Collapse file tree 4 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 62
62
mkdir -p luals
63
63
curl -L "https://github.com/LuaLS/lua-language-server/releases/download/${LUALS_VERSION}/lua-language-server-${LUALS_VERSION}-linux-x64.tar.gz" | tar zx --directory luals
64
64
65
- - name : check
65
+ - name : language server
66
66
run : |
67
67
VIMRUNTIME=/home/runner/nvim-${NVIM_VERSION}/share/nvim/runtime PATH="luals/bin:${PATH}" make check
68
+
69
+ - name : help
70
+ run : |
71
+ make check-help
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ VIMRUNTIME="/my/path/to/runtime" make check
65
65
66
66
To add a new action, add a file in ` actions/name-of-the-action.lua ` . You should export a ` setup ` function if some configuration is needed.
67
67
68
- Once you did, you should run ` make update- help `
68
+ Once you did, you should run ` make help-update `
69
69
70
70
# Documentation
71
71
Original file line number Diff line number Diff line change @@ -22,8 +22,15 @@ style-fix:
22
22
#
23
23
# utility
24
24
#
25
- update- help :
26
- scripts/update- help.sh
25
+ help-update :
26
+ scripts/help-update .sh
27
27
28
- .PHONY : all style lint check style-fix update-help
28
+ #
29
+ # CI
30
+ #
31
+ help-check :
32
+ scripts/help-update.sh
33
+ git diff --exit-code doc/nvim-tree-lua.txt
34
+
35
+ .PHONY : all style lint check style-fix help-check help-update
29
36
Original file line number Diff line number Diff line change 2
2
3
3
# run after changing nvim-tree.lua DEFAULT_OPTS or keymap.lua M.default_on_attach
4
4
# scrapes and updates nvim-tree-lua.txt
5
- # run from repository root: scripts/update- help.sh
5
+ # run from repository root: scripts/help-update .sh OR make help-update
6
6
7
7
8
8
#
You can’t perform that action at this time.
0 commit comments