From 73a67c1ee3b5a7ea7b42d85399bf093f428c8ee3 Mon Sep 17 00:00:00 2001 From: Gennaro Tedesco Date: Tue, 13 Sep 2022 01:47:35 +0200 Subject: [PATCH] added github actions for release workflow --- .github/workflows/release.yml | 14 ++++++++++++++ README.md | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..cb75db8 --- /dev/null +++ b/.github/workflows/release.yml @@ -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 diff --git a/README.md b/README.md index 4fb4085..7f85fa5 100644 --- a/README.md +++ b/README.md @@ -42,12 +42,12 @@ Default commands | key | description |:--------------- |:------------- -|"" | open peekup window +|`""` | open peekup window |`` | close peekup window |any character | select and copy text from the corresponding " register |``, `` | scroll the list up and 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`).