Skip to content

Commit 73a67c1

Browse files
author
Gennaro Tedesco
committed
added github actions for release workflow
1 parent bc54e78 commit 73a67c1

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.github/workflows/release.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: release
2+
on:
3+
push:
4+
tags:
5+
- "v*.*.*"
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v2
13+
- name: Release
14+
uses: softprops/action-gh-release@v1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ Default commands
4242

4343
| key | description
4444
|:--------------- |:-------------
45-
|"" | open peekup window
45+
|`""` | open peekup window
4646
|`<Esc>` | close peekup window
4747
|any character | select and copy text from the corresponding " register
4848
|`<C-j>`, `<C-k>` | scroll the list up and down
4949
|`<Up>`, `<Down>` | move to next registers type
50-
|"x | empty all registers (outside the peekup window)
50+
|`"x` | empty all registers (outside the peekup window)
5151

5252
Notice that since characters keystrokes copy the text from the corresponding register, the peekup window does not obey the standard vim motion commands. Arrow keys move among registers sections (they can also use the corresponding marks `'n, 'l, 's`).
5353

0 commit comments

Comments
 (0)