Skip to content

Commit dd7b4b5

Browse files
authored
Merge pull request #418 from easymotion/langtool
Introduce reviewdog/action-languagetool@v1
2 parents 9194ce9 + 4654218 commit dd7b4b5

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

.github/workflows/reviewdog.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,14 @@ jobs:
2323
github_token: ${{ secrets.github_token }}
2424
reporter: github-check
2525
level: warning
26+
27+
languagetool:
28+
name: runner / languagetool
29+
runs-on: ubuntu-latest
30+
steps:
31+
- uses: actions/checkout@v2
32+
- uses: reviewdog/action-languagetool@v1
33+
with:
34+
github_token: ${{ secrets.github_token }}
35+
reporter: github-check
36+
level: info

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,15 +193,15 @@ get to your destination.
193193

194194
### Bidirectional motions
195195

196-
All motions now come in a bidirectional variants (e.g. `<Plug>(easymotion-s)`,
196+
All motions now come in bidirectional variants (e.g. `<Plug>(easymotion-s)`,
197197
`<Plug>(easymotion-bd-w)` and so forth).
198198
By default, you can already jump forward or backward with `<Leader>s`. A useful
199199
trick is to map `nmap s <Plug>(easymotion-s)` to use `s` instead and save one
200200
keystroke!
201201

202202
### 2-character search motion
203203

204-
You can now also perform a 2-character search, similar to [vim-seek](https://github.com/goldfeld/vim-seek)/[vim-sneak](https://github.com/justinmk/vim-sneak) with `<Plug>(easymotion-s2)`. For example you can highlight all words that start with `fu`.
204+
You can now also perform a 2-character search, similar to [vim-seek](https://github.com/goldfeld/vim-seek)/[vim-sneak](https://github.com/justinmk/vim-sneak) with `<Plug>(easymotion-s2)`. For example, you can highlight all words that start with `fu`.
205205

206206
![2-key-find-motion](https://f.cloud.github.com/assets/3797062/2039612/7cafcec8-89a5-11e3-8f2c-5f26a6b83efd.gif)
207207

@@ -391,6 +391,6 @@ Now, all you need to remember is `s` and JK motions bindings, and it's good enou
391391

392392
**`<Leader>j`** & **`<Leader>k`** make it easy to move to the lines.
393393

394-
Of course you can use any key you want instead of `s` such as `<Space>`, `<Leader>s`, etc...
394+
Of course, you can use any key you want instead of `s` such as `<Space>`, `<Leader>s`, etc...
395395

396396
If you want to use more useful mappings, please see [:h easymotion.txt](https://github.com/easymotion/vim-easymotion/blob/master/doc/easymotion.txt) for more detail.

doc/easymotion.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,7 @@ With this option enabled, |Easymotion| will shows target labels with
891891
uppercase letters, but allow you to type it in lowercase and have Easymotion
892892
automatically convert it uppercase.
893893

894-
This feature improve targets' readability.
894+
This feature improves targets' readability.
895895

896896
Example: >
897897
@@ -1002,7 +1002,7 @@ EasyMotion_add_search_history *g:EasyMotion_add_search_history*
10021002
EasyMotion_off_screen_search *g:EasyMotion_off_screen_search*
10031003

10041004
If you set this option to 1, the 'n' key find motion will search patterns
1005-
even outside of the current screen range. If you want to disable this
1005+
even outside the current screen range. If you want to disable this
10061006
feature, set this value to 0.
10071007
>
10081008
let g:EasyMotion_off_screen_search = 0

0 commit comments

Comments
 (0)