File tree Expand file tree Collapse file tree 4 files changed +8
-9
lines changed
Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 2525 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2626
2727 # When the previous steps fails, the workflow would stop. By adding this
28- # condition you can continue the execution with the populated error message.
28+ # condition we can continue the execution with the populated error message.
2929 - uses : marocchino/sticky-pull-request-comment@v2
3030 if : always() && (steps.lint_pr_title.outputs.error_message != null)
3131 with :
Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ jobs:
1313 matrix :
1414 include :
1515 - os : ubuntu-latest
16- neovim : 0.8.0
17- url : https://github.com/neovim/neovim/releases/download/v0.8.0 /nvim-linux64.tar.gz
16+ neovim : stable
17+ url : https://github.com/neovim/neovim/releases/download/stable /nvim-linux64.tar.gz
1818 - os : ubuntu-latest
1919 neovim : nightly
2020 url : https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz
2121 - os : macos-latest
22- neovim : 0.8.0
23- url : https://github.com/neovim/neovim/releases/download/v0.8.0 /nvim-macos.tar.gz
22+ neovim : stable
23+ url : https://github.com/neovim/neovim/releases/download/stable /nvim-macos.tar.gz
2424 - os : macos-latest
2525 neovim : nightly
2626 url : https://github.com/neovim/neovim/releases/download/nightly/nvim-macos.tar.gz
4343 git clone --depth 1 https://github.com/nvim-lua/plenary.nvim ~/.local/share/nvim/site/pack/vendor/start/plenary.nvim
4444 ln -s $PWD ~/.local/share/nvim/site/pack/vendor/start
4545 - name : Run tests
46- timeout-minutes : 4
4746 run : |
4847 export PATH="$PWD/_neovim/bin:$PATH"
4948 nvim --version
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ use "cpea2506/one_monokai.nvim"
3030
3131### Requirement
3232
33- - Neovim >= 0.8.0
33+ - Neovim >= 0.9.1
3434- [ nvim-treesitter] ( https://github.com/nvim-treesitter/nvim-treesitter ) for better syntax highlighting (optional) 😇
3535
3636## :gear : Setup
Original file line number Diff line number Diff line change @@ -37,9 +37,9 @@ describe("Override config", function()
3737 end )
3838
3939 it (" should change default themes" , function ()
40- local hl = vim .api .nvim_get_hl_by_name ( " Normal" , true )
40+ local hl = vim .api .nvim_get_hl ( 0 , { name = " Normal" } )
4141
42- assert .equal (expected .colors .lmao , (" #%06x" ):format (hl .foreground ))
42+ assert .equal (expected .colors .lmao , (" #%06x" ):format (hl .fg ))
4343 assert .equal (true , hl .italic )
4444 end )
4545
You can’t perform that action at this time.
0 commit comments