Skip to content

Releases: tshino/vscode-vz-like-keymap

v0.19.17

27 Nov 15:40
cb9d40d
Compare
Choose a tag to compare

What's Changed

  • 新規
    • 差分エディタの左右間のフォーカス移動にALT+Wを割り当てました。 #268
  • 内部:
    • 使用するeslintのメジャーバージョンを8から9に移行。 #284
  • 他:
    • 本家VZ EditorがオープンソースになったのでREADME.mdからリンクを貼りました。
  • New:
    • Assigned Alt+W to switching focus between two panes of a compare editor. #268
  • Internal:
    • Migrated eslint from major version of 8 to 9. #284
  • Etc:
    • The original VZ Editor has now become open source, so I have added a link to it from README.md.

Full Changelog: v0.19.16...v0.19.17

v0.19.16

26 May 17:12
2c6e77f
Compare
Choose a tag to compare

[0.19.16] - 2024-05-27

  • 新規:
    • アイコン選択の操作に対応しました。 #258
      • CTRL+E, CTRL+X, CTRL+S, CTRL+D でフォーカスを移動、CTRL+M で決定。
      • これらは設定の 'Vz Keymap: Icon Picker Keys' で有効化できます。デフォルトで有効です。
  • 改善:
    • エディタ上の文字列検索や範囲選択をESCキーで解除するためのVz Keymap側のキー割り当てが、F2キーによる名前変更UIやSHIFT+F12キーによる参照の検索UIをESCキーで閉じるためのVS Codeが定義しているキー割り当てよりも優先してしまう問題を修正。 #262
  • New:
    • Added navigation keys support for Icon Picker. #258
      • Ctrl+E, Ctrl+X, Ctrl+S, Ctrl+D to move the focus.
      • Ctrl+M to accept the selected item.
      • These keys are enabled by turning on the 'Vz Keymap: Icon Picker Keys' in the Settings.
  • Improved:
    • Fixed: The keybindings defined by Vz Keymap for ESC key to cancel text selections or searches in an editor were taking precedence over the keybindings defined by VS Code for ESC key to close rename UI (F2) or reference search UI (Shift+F12). #262

Full Changelog: v0.19.15...v0.19.16

v0.19.15

10 May 02:15
Compare
Choose a tag to compare

What's Changed

  • 新規:
    • Searchビューで使えるVZ風キーを強化しました。 #254
      • 入力欄にフォーカスがあるときに CTRL+M で検索を(再)実行できるようにしました。
  • 改善:
    • エディタやリストビュー以外の場所で意図せず CTRL+X が「切り取り」になる問題を修正。 #249
    • エディタやリストビュー以外の場所で意図せず CTRL+M が「Tabフォーカス移動のトグル」になる問題を修正。 #253
  • New:
    • Added more vz-style keys support in Search viewlet. #254
      • Ctrl+M to execute the search or to refresh search results.
  • Improved:
    • Fixed: pressing Ctrl+X outside of editors or list/tree views causes unintended invocation of editor.action.clipboardCutAction command. #249
    • Fixed: pressing Ctrl+M outside of editors or list/tree views causes unintended invocation of editor.action.toggleTabFocusMode command. #253

Full Changelog: v0.19.14...v0.19.15

v0.19.14

14 Apr 06:05
b48e912
Compare
Choose a tag to compare

[0.19.14] - 2024-04-14

  • 新規:
    • リネーム入力時の操作に対応しました。 #243
      • CTRL+E, CTRL+X で候補リスト上のフォーカスを移動、CTRL+M で決定。
      • これらは設定の 'Vz Keymap: Rename Input Keys' で有効化できます。デフォルトで有効です。
    • エディタ上部のスティッキースクロール領域の操作に対応しました。 #245
      • CTRL+E, CTRL+X でフォーカスを移動、CTRL+M で決定。
      • これらは設定の 'Vz Keymap: Editor Sticky Scroll Keys' で有効化できます。デフォルトで有効です。
  • New:
    • Added navigation keys support for Rename Input popups. #243
      • Ctrl+E, Ctrl+X to move the focus in the candidates list.
      • Ctrl+M to accept the selected item.
      • These keys are enabled by turning on the 'Vz Keymap: Rename Input Keys' in the Settings.
    • Added navigation keys support for editor's Sticky Scroll area. #245
      • Ctrl+E, Ctrl+X to move the focus in the items.
      • Ctrl+M to jump to the selected item in the document.
      • These keys are enabled by turning on the 'Vz Keymap: Editor Sticky Scroll Keys' in the Settings.

Full Changelog: v0.19.13...v0.19.14

v0.19.13

25 Mar 16:39
aa1b842
Compare
Choose a tag to compare

What's Changed

[0.19.13] - 2024-03-26

  • 新規:
    • Quick Open系のポップアップする候補リスト上の操作に対応しました。 #239
      • 確認済みのものは「ファイルに移動(CTRL+P)」「ビューを開く(CTR+P CTR+Q)」「最近開いた項目(CTRL+P CTRL+R)」です。
      • CTRL+E, CTRL+X でフォーカスを移動、CTRL+M で決定。
      • これらは設定の 'Vz Keymap: Quick Open Keys' で有効化できます。デフォルトで有効です。
  • 改善:
    • エディタやリストビュー以外の場所で意図せず CTRL+Z が undo になる問題を修正。 #233
    • エディタやリストビュー以外の場所で意図せず CTRL+W が「エディタを閉じる」になる問題を修正。 #235
    • エディタやリストビュー以外の場所で意図せず CTRL+E が「ファイルに移動」になる問題を修正。 #237
  • New:
    • Added navigation keys support for Quick Open popup menus. #239
      • Supported menus are Go to File... (Ctrl+P), Open View... (Ctrl+P Ctrl+Q) and Open Recent... (Ctrl+P Ctrl+R).
      • Ctrl+E, Ctrl+X to move the focus in the candidates list.
      • Ctrl+M to accept the selected item.
      • These keys are enabled by turning on the 'Vz Keymap: Quick Open Keys' in the Settings.
  • Improved:
    • Fixed: pressing Ctrl+Z outside of editors or list/tree views causes unintended invocation of the undo command. #233
    • Fixed: pressing Ctrl+W outside of editors or list/tree views causes unintended invocation of workbench.action.closeActiveEditor command. #235
    • Fixed: pressing Ctrl+E outside of editors or list/tree views causes unintended invocation of workbench.action.quickOpen command. #237

Full Changelog: v0.19.12...v0.19.13

v0.19.12

06 Mar 16:36
4473f58
Compare
Choose a tag to compare

What's Changed

  • 改善:
    • リストビュー/ツリービューで使うキー定義を更新。 #226
    • リストビュー/ツリービューのスティッキースクロールに関するキー定義を追加。 #221
    • パンくずリストで使うキー定義を更新。 #230
    • ウィジェット間のフォーカス移動のキー定義を更新。 #232
  • Improved:
    • Updated key definitions for list/tree views. #226
    • Added sticky scroll related keys support for list/tree views. #221
    • Updated key definitions for Breadcrumbs. #230
    • Updated key definitions for widget navigation. #232

Full Changelog: v0.19.11...v0.19.12

v0.19.11

06 Nov 15:43
8ac7c12
Compare
Choose a tag to compare

What's Changed

  • 改善:
    • 履歴選択(入力欄の入力履歴をカーソル上下で選択する操作)のCTRL+E, CTRL+Xのwhen節をVS Code側の変更に合わせて変更しました。 #210
  • Improved:
    • Modified the When clause of history navigation keys (up and down arrow keys to recall the history of a text input box) Ctrl+E and Ctrl+X to match the VS Code default. #210

Full Changelog: v0.19.10...v0.19.11

v0.19.10

02 Sep 16:40
9eab1bb
Compare
Choose a tag to compare

What's Changed

  • 新規:
    • ウィジェット間のフォーカス移動操作に対応しました。 #190
      • これは widgetNavigation.focusPreviouswidgetNavigation.focusNext コマンドに対応し、一例としては Keyboard Shortcuts の画面で検索入力と検索結果の間でフォーカスを移動するときに使えます。
      • CTRL+W, CTRL+Z でフォーカスを移動。
      • これらは設定の 'Vz Keymap: Widget Navigation Keys' で有効化できます。デフォルトで有効です。
    • 通知リストの操作に対応しました。 #191
      • CTRL+E, CTRL+X などの上下のフォーカス移動操作はリストビューの操作(設定項目 List View Keys)として対応済み。
      • CTRL+S, CTRL+D, CTRL+M で通知項目の縮小、展開およびトグル。
      • これらは設定の 'Vz Keymap: Notification Keys' で有効化できます。デフォルトで有効です。
  • 改善:
    • エディタ外の操作のVZ風キー割り当てにおける定義順を見なおしました。 #192
  • New:
    • Added navigation keys support in navigable widget containers. #190
      • Ctrl+W, Ctrl+Z to move focus over widgets in widget containers.
      • These keys are enabled by turning on the 'Vz Keymap: Widget Navigation Keys' in the Settings.
    • Added navigation keys support on Notifications. #191
      • Vertical navigation keys such as Ctrl+E and Ctrl+X are already supported as List View Keys.
      • CtrL+S, Ctrl+D, Ctrl+M to collapse/expand/toggle a notification item.
      • These keys are enabled by turning on the 'Vz Keymap: Notification Keys' in the Settings.
  • Improved:
    • Refined the definition order of VZ-style keybindings for out-of-editor navigations. #192

Full Changelog: v0.19.9...v0.19.10

v0.19.9

09 Aug 16:07
5431d41
Compare
Choose a tag to compare

What's Changed

  • 新規:
    • Searchビューで使う操作に対応しました。 #181
      • CTRL+W, CTRL+Z で検索入力と検索結果の間でフォーカスを移動。
      • CTRL+M で検索結果にフォーカスがあるとき選択されたファイルを開く。
      • これらは設定の 'Vz Keymap: Search Viewlet Keys' で有効化できます。デフォルトで有効です。
    • Statusバー上でフォーカスを移動する操作に対応しました。 #182
      • CTRL+S, CTRL+D, CTRL+A, CTRL+F, CTRL+Q S, CTRL+Q D でフォーカスを移動。
      • これらは設定の 'Vz Keymap: Status Bar Keys' で有効化できます。デフォルトで有効です。
  • 改善:
    • UndoとRedoのキーバインド(ALT+BACKSPACEなど)をエディタ内以外でも使えるようにしました。 #183
    • リストビューで使うキー定義にスクロール操作を追加。 #187
      • CTRL+W, CTRL+Z でスクロール。
  • New:
    • Added navigation keys support in Search viewlet. #181
      • Ctrl+W, Ctrl+Z to move focus between the search input box and search result.
      • Ctrl+M to open the selected file in search result.
      • These keys are enabled by turning on the 'Vz Keymap: Search Viewlet Keys' in the Settings.
    • Added navigation keys to move focus on Status bar. #182
      • Ctrl+S, Ctrl+D, Ctrl+A, Ctrl+F, Ctrl+Q S, Ctrl+Q D to move focus on the Status bar.
      • These keys are enabled by turning on the 'Vz Keymap: Status Bar Keys' in the Settings.
  • Improved:
    • Made Undo and Redo keys (e.g. Alt+Backspace) available everywhere not only in editors. #183
    • Added scroll keys for list views. #187
      • Ctrl+W, Ctrl+Z to scroll the list view.

Full Changelog: v0.19.8...v0.19.9

v0.19.8

12 Jul 15:40
8039e0e
Compare
Choose a tag to compare

What's Changed

  • 新規:
    • パンくずリストの操作に対応しました。 #176
      • CTRL+E, CTRL+X, CTRL+S, CTRL+D でリスト操作。
      • CTRL+A, CTRL+F で列移動。
      • これらは設定の 'Vz Keymap: Breadcrumbs Keys' で有効化できます。デフォルトで有効です。
  • 修正:
    • リストビューで使うキー定義を更新。 #173
    • 補完候補リストの操作で使うキー定義を更新。 #175
    • 補完候補リストが非選択状態で表示されているときのCTRL+MとENTERの動作を修正。 #178
  • New:
    • Added navigation keys support on Breadcrumbds. #176
      • Ctrl+E, Ctrl+X, Ctrl+S, Ctrl+D to mvoe focus on the list view.
      • Ctrl+A, Ctrl+F to move across columns.
      • These keys are enabled by turning on the 'Vz Keymap: Breadcrumbs Keys' in the Settings.
  • Fixed:
    • Updated key definitions for list views. #173
    • Updated key definitions for suggestion widgets. #175
    • Fixed the behavior of Ctrl+M/Enter when the suggestion list is visible with no focused item. #178

Full Changelog: v0.19.7...v0.19.8