Skip to content

Commit

Permalink
docs(release): Updated description of changes
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadanpeterson committed Jun 16, 2024
1 parent 462bc2e commit 505a88d
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
name: Create Release

on:
push:
tags:
- "v*.*.*" # This will trigger on version tags like v0.0.1, v0.1.0, v1.0.0, etc.

permissions:
contents: write

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -26,11 +21,14 @@ jobs:
release_name: Release ${{ github.ref }}
body: |
## Changes
- Initial release of Typewriter.nvim.
- Features:
- Keeps the cursor centered on the screen while typing or navigating.
- Simple commands to enable, disable, and toggle the typewriter mode.
- Integrates with ZenMode and True Zen for a seamless distraction-free environment.
- Added new `:TWCenter` command to center the view around the current code block or function using Tree-sitter.
- Introduced Tree-sitter as a dependency for intelligent code block detection.
- Updated installation instructions to include Tree-sitter setup.
- Enhanced README with information about the `:TWCenter` command and Tree-sitter dependency.
## Previous Features
- Keeps the cursor centered on the screen while typing or navigating.
- Simple commands to enable, disable, and toggle the typewriter mode.
- Integrates with ZenMode and True Zen for a seamless distraction-free environment.
draft: false
prerelease: false

0 comments on commit 505a88d

Please sign in to comment.