Skip to content

Commit

Permalink
added github actions for release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Gennaro Tedesco committed Sep 12, 2022
1 parent bc54e78 commit 73a67c1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: release
on:
push:
tags:
- "v*.*.*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Release
uses: softprops/action-gh-release@v1
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ Default commands

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

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`).

Expand Down

0 comments on commit 73a67c1

Please sign in to comment.