-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from gazorby/0.7.0
0.7.0
- Loading branch information
Showing
20 changed files
with
422 additions
and
303 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
tests: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-latest, ubuntu-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: fish-actions/[email protected] | ||
|
||
- name: Install abbreviation-tips with Fisher | ||
uses: fish-shop/install-plugin@v1 | ||
with: | ||
plugin-manager: fisher | ||
plugins: gazorby/fish-abbreviation-tips | ||
|
||
- name: Run Fishtape tests | ||
uses: fish-shop/run-fishtape-tests@v1 | ||
with: | ||
pattern: tests/**.fish | ||
|
||
syntax-check: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: fish-actions/install-fish@v1 | ||
|
||
- uses: fish-actions/syntax-check@v1 | ||
|
||
# Check Fish format | ||
format-check: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: fish-actions/install-fish@v1 | ||
|
||
- uses: fish-actions/format-check@v1 | ||
|
||
# Check Markdown and Yaml format | ||
prettier: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actionsx/prettier@v2 | ||
with: | ||
args: --check . |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.3.0 | ||
hooks: | ||
- id: check-toml | ||
- id: mixed-line-ending | ||
- id: check-case-conflict | ||
- id: check-merge-conflict | ||
- id: check-docstring-first | ||
- id: check-added-large-files | ||
- id: check-executables-have-shebangs | ||
- id: debug-statements | ||
- id: end-of-file-fixer | ||
- id: fix-byte-order-marker | ||
- id: trailing-whitespace | ||
|
||
- repo: https://github.com/hugoh/pre-commit-fish.git | ||
rev: v1.2 | ||
hooks: | ||
- id: fish_syntax | ||
- id: fish_indent | ||
|
||
- repo: https://github.com/pre-commit/mirrors-prettier | ||
rev: "v2.7.1" | ||
hooks: | ||
- id: prettier | ||
types: [markdown] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,53 @@ | ||
## 0.5.1 (2020-05-12) | ||
- ♻️ ref: prefix with '__' for private scope | ||
|
||
- ♻️ ref: prefix with '\_\_' for private scope | ||
- 🐛 fix(regex): don't treat '-' as a word separator | ||
|
||
## 0.5.0 (2020-05-12) | ||
|
||
- ✨ feat: customize regexes | ||
- ♻️ ref: use verbose conditional operators | ||
|
||
## 0.4.0 (2020-04-20) | ||
|
||
- ⚡ perf: update abbreviations list incrementally | ||
|
||
# [0.3.1](https://github.com/Gazorby/abbr-tips/compare/v0.3.0...v0.3.1) (2020-04-17) | ||
|
||
### 🐛 Bug Fixes | ||
|
||
* fix: test variable existence instead of value ([f33cf23](https://github.com/Gazorby/abbr-tips/commit/f33cf23)) | ||
* fix: update function to erase on uninstall ([ba239d1](https://github.com/Gazorby/abbr-tips/commit/ba239d1)) | ||
- fix: test variable existence instead of value ([f33cf23](https://github.com/Gazorby/abbr-tips/commit/f33cf23)) | ||
- fix: update function to erase on uninstall ([ba239d1](https://github.com/Gazorby/abbr-tips/commit/ba239d1)) | ||
|
||
# [0.3.0](https://github.com/Gazorby/abbr-tips/compare/v0.2.0...v0.3.0) (2020-04-16) | ||
|
||
### ♻️ Refactor | ||
|
||
* refactor: remove flock dependency ([376072d](https://github.com/Gazorby/abbr-tips/commit/376072d)) | ||
- refactor: remove flock dependency ([376072d](https://github.com/Gazorby/abbr-tips/commit/376072d)) | ||
|
||
# [0.2.0](https://github.com/Gazorby/abbr-tips/compare/v0.1.0...v0.2.0) (2020-04-13) | ||
|
||
### 🐛 Bug Fixes | ||
|
||
* fix: don't use universal scope by default ([832691a](https://github.com/Gazorby/abbr-tips/commit/832691a)) | ||
* fix: erase functions on uninstall ([cd1a75a](https://github.com/Gazorby/abbr-tips/commit/cd1a75a)) | ||
* fix: fix uninstall function ([b58971f](https://github.com/Gazorby/abbr-tips/commit/b58971f)) | ||
* fix: still need univresal scope for abbr lists ([6a700a0](https://github.com/Gazorby/abbr-tips/commit/6a700a0)) | ||
- fix: don't use universal scope by default ([832691a](https://github.com/Gazorby/abbr-tips/commit/832691a)) | ||
- fix: erase functions on uninstall ([cd1a75a](https://github.com/Gazorby/abbr-tips/commit/cd1a75a)) | ||
- fix: fix uninstall function ([b58971f](https://github.com/Gazorby/abbr-tips/commit/b58971f)) | ||
- fix: still need univresal scope for abbr lists ([6a700a0](https://github.com/Gazorby/abbr-tips/commit/6a700a0)) | ||
|
||
# [0.1.0](https://github.com/Gazorby/abbr-tips/compare/f5ab8ed...v0.1.0) (2020-04-13) | ||
|
||
### ✨ Features | ||
|
||
* feat: customize tips prompt ([ae29fca](https://github.com/Gazorby/abbr-tips/commit/ae29fca)) | ||
* feat: customize tips update mode ([4681009](https://github.com/Gazorby/abbr-tips/commit/4681009)) | ||
* feat: don't show tips if an abbr was used ([5f2e6ac](https://github.com/Gazorby/abbr-tips/commit/5f2e6ac)) | ||
* feat: prettier tips ([f5ab8ed](https://github.com/Gazorby/abbr-tips/commit/f5ab8ed)) | ||
- feat: customize tips prompt ([ae29fca](https://github.com/Gazorby/abbr-tips/commit/ae29fca)) | ||
- feat: customize tips update mode ([4681009](https://github.com/Gazorby/abbr-tips/commit/4681009)) | ||
- feat: don't show tips if an abbr was used ([5f2e6ac](https://github.com/Gazorby/abbr-tips/commit/5f2e6ac)) | ||
- feat: prettier tips ([f5ab8ed](https://github.com/Gazorby/abbr-tips/commit/f5ab8ed)) | ||
|
||
### 🐛 Bug Fixes | ||
|
||
* fix: check for abbr status in on whitespace input ([421ede5](https://github.com/Gazorby/abbr-tips/commit/421ede5)) | ||
* fix: delete keybindings when uninstalling ([11ce0ae](https://github.com/Gazorby/abbr-tips/commit/11ce0ae)) | ||
* fix: don't show tips if abbr was used and options added ([a2b5214](https://github.com/Gazorby/abbr-tips/commit/a2b5214)) | ||
* fix: prompt variable not properly set ([1cc43e0](https://github.com/Gazorby/abbr-tips/commit/1cc43e0)) | ||
* fix: properly resetting abbr status ([59e90e2](https://github.com/Gazorby/abbr-tips/commit/59e90e2)) | ||
* fix: reset abbr status after displaying tip ([46c70c1](https://github.com/Gazorby/abbr-tips/commit/46c70c1)) | ||
- fix: check for abbr status in on whitespace input ([421ede5](https://github.com/Gazorby/abbr-tips/commit/421ede5)) | ||
- fix: delete keybindings when uninstalling ([11ce0ae](https://github.com/Gazorby/abbr-tips/commit/11ce0ae)) | ||
- fix: don't show tips if abbr was used and options added ([a2b5214](https://github.com/Gazorby/abbr-tips/commit/a2b5214)) | ||
- fix: prompt variable not properly set ([1cc43e0](https://github.com/Gazorby/abbr-tips/commit/1cc43e0)) | ||
- fix: properly resetting abbr status ([59e90e2](https://github.com/Gazorby/abbr-tips/commit/59e90e2)) | ||
- fix: reset abbr status after displaying tip ([46c70c1](https://github.com/Gazorby/abbr-tips/commit/46c70c1)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.