From ac14ffb190ee570a9ba7dd6897e0712d75df4bb8 Mon Sep 17 00:00:00 2001 From: CAESIUS_TIM <60285058+CAESIUS-TIM@users.noreply.github.com> Date: Thu, 28 Dec 2023 16:05:48 +0800 Subject: [PATCH] Fix typos in focus editor group commands (#81) --- package.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 9e2c6c4..7c37b59 100644 --- a/package.json +++ b/package.json @@ -1036,27 +1036,27 @@ }, { "key": "h", - "name": "Move editor left", + "name": "Focus editor group left", "type": "command", - "command": "workbench.action.focusPreviousGroup" + "command": "workbench.action.focusLeftGroup" }, { "key": "j", - "name": "Move editor down", + "name": "Focus editor group down", "type": "command", "command": "workbench.action.focusBelowGroup" }, { "key": "k", - "name": "Move editor up", + "name": "Focus editor group up", "type": "command", "command": "workbench.action.focusAboveGroup" }, { "key": "l", - "name": "Move editor right", + "name": "Focus editor group right", "type": "command", - "command": "workbench.action.focusNextGroup" + "command": "workbench.action.focusRightGroup" }, { "key": "H",