-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [0.3.0](v0.2.1...v0.3.0) (2022-10-29) ### Features * Add customizable keybindings for all defined actions + pop directory ([daaab6e](daaab6e)) * Attempt to locate original dir when triggered from a `/commit~{sha}/...` file path ([864f98a](864f98a)) ### Bug Fixes * Avoid throwing if `resolveRelative()` is called with a slash-less path ([895e58d](895e58d)) * Don't use active file as starting point if it doesn't contain any slashes ([af43951](af43951)) * Prevent `popPath` from resulting in `.` input ([c72d77e](c72d77e)) * Trigger (item) action commands argument is supposed to be 1 indexed ([b435dee](b435dee))
- Loading branch information
1 parent
b435dee
commit 4741a6a
Showing
3 changed files
with
22 additions
and
4 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
"publisher": "mogelbrod", | ||
"author": "Victor Hallberg <[email protected]>", | ||
"license": "MIT", | ||
"version": "0.2.1", | ||
"version": "0.3.0", | ||
"engines": { | ||
"vscode": "^1.72.0" | ||
}, | ||
|
@@ -106,7 +106,9 @@ | |
{ | ||
"when": "inQuickOpener", | ||
"command": "quickOpener.triggerAction", | ||
"args": ["create"], | ||
"args": [ | ||
"create" | ||
], | ||
"key": "ctrl+n", | ||
"mac": "cmd+n" | ||
} | ||
|