1
1
mirror of https://github.com/kahole/edamagit.git synced 2024-09-11 07:15:31 +03:00

Compare commits

...

2 Commits

Author SHA1 Message Date
kahole
e9462afbda changelog 2023-07-13 21:36:16 +02:00
kahole
5d8e5df78e fix helpView resolution of user keybindings (#266) 2023-07-13 21:35:55 +02:00
4 changed files with 7 additions and 4 deletions

View File

@ -1,5 +1,8 @@
# Changelog
## [0.6.45]
- Fix resolution of user keybindings for help-view (`?` view)
## [0.6.44]
- Improved performance of status view and fix commit ahead/behind list for very out-of-sync repos (@bjackman Brendan Jackman)
- add a switch for log --first-parent (@tzemanovic Tomas Zemanovic)

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "magit",
"version": "0.6.44",
"version": "0.6.45",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "magit",
"version": "0.6.44",
"version": "0.6.45",
"license": "MIT",
"dependencies": {
"@vscode/iconv-lite-umd": "^0.7.0",

View File

@ -7,7 +7,7 @@
"author": {
"name": "Kristian Andersen Hole"
},
"version": "0.6.44",
"version": "0.6.45",
"engines": {
"vscode": "^1.50.0"
},

View File

@ -15,7 +15,7 @@ export async function magitDispatch(repository: MagitRepository) {
}
async function openHelpView(repository: MagitRepository) {
let keybindingsPath = path.join(logPath, '..', '..', '..', '..', 'User', 'keybindings.json');
let keybindingsPath = path.join(logPath, '..', '..', '..', '..', '..', 'User', 'keybindings.json');
let userKeyBindings = [];
try {