Skip to content

Commit

Permalink
Fix typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
robole committed Dec 12, 2023
1 parent 978053f commit a98b8b0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/-0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.10.1] - 2023-12-12

## Fixed

- Fixed typo in README in commands section. Accidentally deleted `File Bunny: Open File` title from list! Doh!

## [1.10.0] - 2023-12-12

### Changed
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,8 @@ The following commands can be run from the Command Palette (`Ctrl+Shift+P`). The

### File actions

1.
: Choose a file to open from the current workspace.
1. `File Bunny: Open File to the Right`: Choose a file to open from the current workspace, and split it to the right of the active editor.
1.`File Bunny: Open File`: Choose a file to open from the current workspace.
1.`File Bunny: Open File to the Right`: Choose a file to open from the current workspace, and split it to the right of the active editor.
1. `File Bunny: Open File to the Left`: Choose a file to open from the current workspace, and split it to the left of the active editor.
1. `File Bunny: Open File Above`: Choose a file to open from the current workspace, and split it above the active editor.
1. `File Bunny: Open File Below`: Choose a file to open from the current workspace, and split it below the active editor.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"description": "Perform file actions quickly with keyboard-driven file selection. 🐰⌨️",
"icon": "img/logo.png",
"version": "1.10.0",
"version": "1.10.1",
"engines": {
"vscode": "^1.46.0",
"node": ">=12"
Expand Down
3 changes: 1 addition & 2 deletions todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

## Tasks

1. Add command name to title for `Open Folder`?
1. Have a git files (`git ls-files`) version of `File Bunny: Open File`. See branch *open-gitfiles*.
1. Add recent items to top of file list for `File Bunny: Open Folder`.
1. Add more tests (refactor).
Expand All @@ -22,7 +21,7 @@
1. Use brace expansion <https://www.npmjs.com/package/brace-expansion> ?
1. `File Bunny: Copy Active File as Base64`

## Performance
## Performance improvements

- Only async methods are used for IO operations. These are [2.3X faster than their sync counterparts](https://jinoantony.com/blog/async-vs-sync-nodejs-a-simple-benchmark). ✅
- Use caching for calls for Browser's reading of folder.
Expand Down

0 comments on commit a98b8b0

Please sign in to comment.