Global Young

Results 8 comments of Global Young

-> Solution https://github.com/zed-industries/zed/discussions/6661 When I press jk, there is something I have to type with a delay of 1,000ms(1sec). When I type, I press faster than that time, so I...

It works fine, thank you. ```json { "context": "Editor && vim_mode == insert && !menu", "bindings": { // put key-bindings here if you want them to work in insert mode...

```json [ { "context": "Editor && VimControl && !VimWaiting && !menu", "bindings": { // put key-bindings here if you want them to work in normal & visual mode } },...

thank you. ```json [ { "context": "Editor && VimControl && !VimWaiting && !menu", "bindings": { // put key-bindings here if you want them to work in normal & visual mode...

- https://github.com/YoungHaKim7/rust_vim_setting/tree/main/11_Zed_Editor - [keymap.json](https://github.com/YoungHaKim7/rust_vim_setting/blob/main/11_Zed_Editor/zed/keymap.json) ```json { "context": "Editor && showing_completions", "bindings": { "ctrl-y": "editor::ConfirmCompletion" } }, ``` It works very well when you apply json in the key map like...

Tab and c-y work well. The TAB is the default key, so you don't have to set it up separately. https://github.com/zed-industries/zed/assets/67513038/ad8f6233-1343-43d3-b5ca-27cd772056a2

my vim key setting(helix) config.toml - https://github.com/YoungHaKim7/rust_vim_setting/tree/main/04_helix_settings ```toml theme = "fleet_dark" [editor] line-number = "relative" mouse = false color-modes = true cursorline = true auto-pairs = true true-color = true...