Skip to content

Commit 7b32def

Browse files
authored
Merge pull request #3 from iquzart/develop
fix permission
2 parents d705659 + 47c8bba commit 7b32def

2 files changed

Lines changed: 6 additions & 9 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ jobs:
1818
run: |
1919
sudo apt update
2020
sudo apt install -y lua5.1 luarocks
21-
luarocks install busted
21+
luarocks install busted --local
22+
echo "$HOME/.luarocks/bin" >> $GITHUB_PATH
2223
2324
- name: Run busted tests
2425
run: |
25-
busted spec
26+
LUA_PATH="./lua/?.lua;./lua/?/init.lua;;" busted --verbose spec

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A minimal Neovim plugin to toggle boolean-like words under your cursor.
99
<p align="center">
1010
<img src="https://img.shields.io/badge/built%20with-neovim%20lua-blue.svg?style=flat-square" />
1111
<img src="https://img.shields.io/github/license/iquzart/toggleword.nvim?style=flat-square" />
12-
<!-- <img src="https://github.com/iquzart/toggleword.nvim/actions/workflows/test.yml/badge.svg" /> -->
12+
<img src="https://github.com/iquzart/toggleword.nvim/actions/workflows/test.yml/badge.svg" />
1313
</p>
1414

1515
## Features
@@ -45,19 +45,15 @@ use {
4545
}
4646
```
4747

48-
```
49-
5048
### Supported words
5149

5250
```
53-
5451
- true ⇄ false
5552
- on ⇄ off
5653
- enabled ⇄ disabled
5754
- yes ⇄ no
5855
- up ⇄ down
59-
60-
````
56+
```
6157

6258
### Custom Toggle Pairs
6359

@@ -72,7 +68,7 @@ require("toggleword").setup {
7268
["active"] = "inactive",
7369
}
7470
}
75-
````
71+
```
7672

7773
### Usage
7874

0 commit comments

Comments
 (0)