zed-industries / zed

Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
https://zed.dev
Other
47.75k stars 2.79k forks source link

Windows 11 MSYS2 install, backspace not working? #18489

Open ChristopherDrum opened 1 day ago

ChristopherDrum commented 1 day ago

Check for existing issues

Describe the bug / provide steps to reproduce it

I have zed installed on Windows via MSYS2. Everything was working fine until updating zed via pacman -Syu This installed 0.154.2-1 ([0.154.3-1](https://github.com/msys2/MINGW-packages/tree/master/mingw-w64-zed) in git) according to the MSYS2 package search info. I could type, but couldn't backspace in any text field: terminal, code editor, assistant, etc.

I grabbed 0.153.7-1 tarball and reinstalled zed via that pacman -U <tarball_file_path> Backspace works again. I'm not entirely certain which zed was installed before the 0.154.2-1 update today, but I know it was 0.153-ish (.6 or .7, I don't know)

Environment

Zed: v0.153.7 (Zed) <-- Now; after downgrade OS: Windows 10.0.22631 Memory: 31.7 GiB Architecture: x86_64 GPU: NVIDIA GeForce RTX 4070 Laptop GPU || NVIDIA || 561.09 MSYS2: 20240727

If applicable, add mockups / screenshots to help explain present your vision of the feature

No response

If applicable, attach your Zed.log file to this issue.

Zed.log


JunkuiZhang commented 1 day ago

On the current main branch, built with MSVC toolchain, backspace works as expected for me. And, you should use the binary built using MSVC toolchain if possible, since the binary built using other toolchain is pretty problematic.

ognevny commented 17 hours ago

I use Zed sometimes on my machine with MSYS2. and I confirm that issue is here. but it's only for UCRT64 environment. I use Zed from CLANG64 environment, which doesn't have such bug. also I found that everything is broken, I can't even use arrows or ctrl+z...

edit: as solution use zed from CLANG64 environment

ognevny commented 17 hours ago
some logs ``` 2024-09-30T09:50:52.8416341+03:00 [INFO] ========== starting zed ========== 2024-09-30T09:50:53.0389778+03:00 [INFO] Use Segoe UI as UI font. 2024-09-30T09:50:53.0406423+03:00 [INFO] Opening main db 2024-09-30T09:50:53.0493714+03:00 [INFO] Opening main db 2024-09-30T09:50:53.0588396+03:00 [INFO] Using git binary path: None 2024-09-30T09:50:53.0600942+03:00 [ERROR] SHELL environment variable is not assigned so we can't source login environment variables Caused by: environment variable not found 2024-09-30T09:50:53.0603666+03:00 [ERROR] Error { kind: Generic("Input watch path is neither a file nor a directory."), paths: [] } 2024-09-30T09:50:53.0613419+03:00 [ERROR] invalid binding value for keystroke alt-enter, context None Caused by: no action type registered for picker::ConfirmInput 2024-09-30T09:50:53.0701411+03:00 [ERROR] invalid binding value for keystroke ctrl-+, context None Caused by: no action type registered for zed::IncreaseBufferFontSize 2024-09-30T09:50:53.0703139+03:00 [ERROR] invalid binding value for keystroke ctrl-,, context None Caused by: no action type registered for zed::OpenSettings 2024-09-30T09:50:53.0704797+03:00 [ERROR] invalid binding value for keystroke ctrl--, context None Caused by: no action type registered for zed::DecreaseBufferFontSize 2024-09-30T09:50:53.0706458+03:00 [ERROR] invalid binding value for keystroke ctrl-0, context None Caused by: no action type registered for zed::ResetBufferFontSize 2024-09-30T09:50:53.0707762+03:00 [ERROR] invalid binding value for keystroke ctrl-=, context None Caused by: no action type registered for zed::IncreaseBufferFontSize 2024-09-30T09:50:53.0708447+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-enter, context None Caused by: no action type registered for picker::ConfirmInput 2024-09-30T09:50:53.0709125+03:00 [ERROR] invalid binding value for keystroke ctrl-c, context None Caused by: no action type registered for menu::Cancel 2024-09-30T09:50:53.0709817+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context None Caused by: no action type registered for menu::SecondaryConfirm 2024-09-30T09:50:53.0710502+03:00 [ERROR] invalid binding value for keystroke ctrl-escape, context None Caused by: no action type registered for menu::Cancel 2024-09-30T09:50:53.0711186+03:00 [ERROR] invalid binding value for keystroke ctrl-n, context None Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.0711865+03:00 [ERROR] invalid binding value for keystroke ctrl-o, context None Caused by: no action type registered for workspace::Open 2024-09-30T09:50:53.0712542+03:00 [ERROR] invalid binding value for keystroke ctrl-p, context None Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.0713219+03:00 [ERROR] invalid binding value for keystroke ctrl-q, context None Caused by: no action type registered for zed::Quit 2024-09-30T09:50:53.0713899+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-w, context None Caused by: no action type registered for workspace::CloseWindow 2024-09-30T09:50:53.0714579+03:00 [ERROR] invalid binding value for keystroke end, context None Caused by: no action type registered for menu::SelectLast 2024-09-30T09:50:53.0715257+03:00 [ERROR] invalid binding value for keystroke enter, context None Caused by: no action type registered for menu::Confirm 2024-09-30T09:50:53.0715932+03:00 [ERROR] invalid binding value for keystroke escape, context None Caused by: no action type registered for menu::Cancel 2024-09-30T09:50:53.0716557+03:00 [ERROR] invalid binding value for keystroke f11, context None Caused by: no action type registered for zed::ToggleFullScreen 2024-09-30T09:50:53.0717109+03:00 [ERROR] invalid binding value for keystroke home, context None Caused by: no action type registered for menu::SelectFirst 2024-09-30T09:50:53.0717661+03:00 [ERROR] invalid binding value for keystroke pagedown, context None Caused by: no action type registered for menu::SelectLast 2024-09-30T09:50:53.071845+03:00 [ERROR] invalid binding value for keystroke pageup, context None Caused by: no action type registered for menu::SelectFirst 2024-09-30T09:50:53.071901+03:00 [ERROR] invalid binding value for keystroke shift-escape, context None Caused by: no action type registered for workspace::ToggleZoom 2024-09-30T09:50:53.0719562+03:00 [ERROR] invalid binding value for keystroke shift-pagedown, context None Caused by: no action type registered for menu::SelectFirst 2024-09-30T09:50:53.0720113+03:00 [ERROR] invalid binding value for keystroke shift-pageup, context None Caused by: no action type registered for menu::SelectFirst 2024-09-30T09:50:53.0720663+03:00 [ERROR] invalid binding value for keystroke shift-tab, context None Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.0721216+03:00 [ERROR] invalid binding value for keystroke tab, context None Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.0721845+03:00 [ERROR] invalid binding value for keystroke down, context Some("Picker || menu") Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.0722407+03:00 [ERROR] invalid binding value for keystroke up, context Some("Picker || menu") Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.072296+03:00 [ERROR] invalid binding value for keystroke left, context Some("Prompt") Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.0723513+03:00 [ERROR] invalid binding value for keystroke right, context Some("Prompt") Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.0724072+03:00 [ERROR] invalid binding value for keystroke alt-g b, context Some("Editor") Caused by: no action type registered for editor::ToggleGitBlame 2024-09-30T09:50:53.0724627+03:00 [ERROR] invalid binding value for keystroke alt-pagedown, context Some("Editor") Caused by: no action type registered for editor::PageDown 2024-09-30T09:50:53.0725185+03:00 [ERROR] invalid binding value for keystroke alt-pageup, context Some("Editor") Caused by: no action type registered for editor::PageUp 2024-09-30T09:50:53.0725737+03:00 [ERROR] invalid binding value for keystroke alt-q, context Some("Editor") Caused by: no action type registered for editor::Rewrap 2024-09-30T09:50:53.0726289+03:00 [ERROR] invalid binding value for keystroke backspace, context Some("Editor") Caused by: no action type registered for editor::Backspace 2024-09-30T09:50:53.0726841+03:00 [ERROR] invalid binding value for keystroke ctrl-", context Some("Editor") Caused by: no action type registered for editor::ExpandAllHunkDiffs 2024-09-30T09:50:53.0727392+03:00 [ERROR] invalid binding value for keystroke ctrl-', context Some("Editor") Caused by: no action type registered for editor::ToggleHunkDiff 2024-09-30T09:50:53.0727944+03:00 [ERROR] invalid binding value for keystroke ctrl-;, context Some("Editor") Caused by: no action type registered for editor::ToggleLineNumbers 2024-09-30T09:50:53.0728495+03:00 [ERROR] invalid binding value for keystroke ctrl-a, context Some("Editor") Caused by: no action type registered for editor::SelectAll 2024-09-30T09:50:53.0729048+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-space, context Some("Editor") Caused by: no action type registered for editor::ShowCharacterPalette 2024-09-30T09:50:53.0729604+03:00 [ERROR] invalid binding value for keystroke ctrl-backspace, context Some("Editor") Caused by: no action type registered for editor::DeleteToPreviousWordStart 2024-09-30T09:50:53.0730158+03:00 [ERROR] invalid binding value for keystroke ctrl-delete, context Some("Editor") Caused by: no action type registered for editor::DeleteToNextWordEnd 2024-09-30T09:50:53.0730708+03:00 [ERROR] invalid binding value for keystroke ctrl-down, context Some("Editor") Caused by: no action type registered for editor::LineDown 2024-09-30T09:50:53.073126+03:00 [ERROR] invalid binding value for keystroke ctrl-end, context Some("Editor") Caused by: no action type registered for editor::MoveToEnd 2024-09-30T09:50:53.0731964+03:00 [ERROR] invalid binding value for keystroke ctrl-home, context Some("Editor") Caused by: no action type registered for editor::MoveToBeginning 2024-09-30T09:50:53.073252+03:00 [ERROR] invalid binding value for keystroke ctrl-i, context Some("Editor") Caused by: no action type registered for editor::ShowSignatureHelp 2024-09-30T09:50:53.0733073+03:00 [ERROR] invalid binding value for keystroke ctrl-insert, context Some("Editor") Caused by: no action type registered for editor::Copy 2024-09-30T09:50:53.0733623+03:00 [ERROR] invalid binding value for keystroke ctrl-k, context Some("Editor") Caused by: no action type registered for editor::CutToEndOfLine 2024-09-30T09:50:53.0734174+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-r, context Some("Editor") Caused by: no action type registered for editor::RevertSelectedHunks 2024-09-30T09:50:53.0734727+03:00 [ERROR] invalid binding value for keystroke ctrl-l, context Some("Editor") Caused by: no action type registered for editor::SelectLine 2024-09-30T09:50:53.0735559+03:00 [ERROR] invalid binding value for keystroke ctrl-left, context Some("Editor") Caused by: no action type registered for editor::MoveToPreviousWordStart 2024-09-30T09:50:53.0736117+03:00 [ERROR] invalid binding value for keystroke ctrl-right, context Some("Editor") Caused by: no action type registered for editor::MoveToNextWordEnd 2024-09-30T09:50:53.0736671+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-end, context Some("Editor") Caused by: no action type registered for editor::SelectToEnd 2024-09-30T09:50:53.0737359+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-home, context Some("Editor") Caused by: no action type registered for editor::SelectToBeginning 2024-09-30T09:50:53.0738051+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-i, context Some("Editor") Caused by: no action type registered for editor::Format 2024-09-30T09:50:53.0738608+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-left, context Some("Editor") Caused by: no action type registered for editor::SelectToPreviousWordStart 2024-09-30T09:50:53.0739172+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-right, context Some("Editor") Caused by: no action type registered for editor::SelectToNextWordEnd 2024-09-30T09:50:53.0739756+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-z, context Some("Editor") Caused by: no action type registered for editor::Redo 2024-09-30T09:50:53.0740308+03:00 [ERROR] invalid binding value for keystroke ctrl-up, context Some("Editor") Caused by: no action type registered for editor::LineUp 2024-09-30T09:50:53.0740863+03:00 [ERROR] invalid binding value for keystroke ctrl-y, context Some("Editor") Caused by: no action type registered for editor::Redo 2024-09-30T09:50:53.0741416+03:00 [ERROR] invalid binding value for keystroke ctrl-z, context Some("Editor") Caused by: no action type registered for editor::Undo 2024-09-30T09:50:53.0741966+03:00 [ERROR] invalid binding value for keystroke delete, context Some("Editor") Caused by: no action type registered for editor::Delete 2024-09-30T09:50:53.0742524+03:00 [ERROR] invalid binding value for keystroke down, context Some("Editor") Caused by: no action type registered for editor::MoveDown 2024-09-30T09:50:53.0743077+03:00 [ERROR] invalid binding value for keystroke end, context Some("Editor") Caused by: no action type registered for editor::MoveToEndOfLine 2024-09-30T09:50:53.0743634+03:00 [ERROR] invalid binding value for keystroke escape, context Some("Editor") Caused by: no action type registered for editor::Cancel 2024-09-30T09:50:53.0744187+03:00 [ERROR] invalid binding value for keystroke home, context Some("Editor") Caused by: no action type registered for editor::MoveToBeginningOfLine 2024-09-30T09:50:53.0744736+03:00 [ERROR] invalid binding value for keystroke left, context Some("Editor") Caused by: no action type registered for editor::MoveLeft 2024-09-30T09:50:53.0745371+03:00 [ERROR] invalid binding value for keystroke pagedown, context Some("Editor") Caused by: no action type registered for editor::MovePageDown 2024-09-30T09:50:53.0745924+03:00 [ERROR] invalid binding value for keystroke pageup, context Some("Editor") Caused by: no action type registered for editor::MovePageUp 2024-09-30T09:50:53.0746473+03:00 [ERROR] invalid binding value for keystroke right, context Some("Editor") Caused by: no action type registered for editor::MoveRight 2024-09-30T09:50:53.0747023+03:00 [ERROR] invalid binding value for keystroke shift-backspace, context Some("Editor") Caused by: no action type registered for editor::Backspace 2024-09-30T09:50:53.0747576+03:00 [ERROR] invalid binding value for keystroke shift-delete, context Some("Editor") Caused by: no action type registered for editor::Cut 2024-09-30T09:50:53.074813+03:00 [ERROR] invalid binding value for keystroke shift-down, context Some("Editor") Caused by: no action type registered for editor::SelectDown 2024-09-30T09:50:53.074869+03:00 [ERROR] invalid binding value for keystroke shift-end, context Some("Editor") Caused by: no action type registered for editor::SelectToEndOfLine 2024-09-30T09:50:53.0749248+03:00 [ERROR] invalid binding value for keystroke shift-home, context Some("Editor") Caused by: no action type registered for editor::SelectToBeginningOfLine 2024-09-30T09:50:53.0749803+03:00 [ERROR] invalid binding value for keystroke shift-insert, context Some("Editor") Caused by: no action type registered for editor::Paste 2024-09-30T09:50:53.0750361+03:00 [ERROR] invalid binding value for keystroke shift-left, context Some("Editor") Caused by: no action type registered for editor::SelectLeft 2024-09-30T09:50:53.0750917+03:00 [ERROR] invalid binding value for keystroke shift-pagedown, context Some("Editor") Caused by: no action type registered for editor::SelectPageDown 2024-09-30T09:50:53.075147+03:00 [ERROR] invalid binding value for keystroke shift-pageup, context Some("Editor") Caused by: no action type registered for editor::SelectPageUp 2024-09-30T09:50:53.0752022+03:00 [ERROR] invalid binding value for keystroke shift-right, context Some("Editor") Caused by: no action type registered for editor::SelectRight 2024-09-30T09:50:53.0752576+03:00 [ERROR] invalid binding value for keystroke shift-tab, context Some("Editor") Caused by: no action type registered for editor::TabPrev 2024-09-30T09:50:53.075313+03:00 [ERROR] invalid binding value for keystroke shift-up, context Some("Editor") Caused by: no action type registered for editor::SelectUp 2024-09-30T09:50:53.0753684+03:00 [ERROR] invalid binding value for keystroke tab, context Some("Editor") Caused by: no action type registered for editor::Tab 2024-09-30T09:50:53.0754238+03:00 [ERROR] invalid binding value for keystroke up, context Some("Editor") Caused by: no action type registered for editor::MoveUp 2024-09-30T09:50:53.0754796+03:00 [ERROR] invalid binding value for keystroke ctrl-c, context Some("Editor") Caused by: no action type registered for editor::Copy 2024-09-30T09:50:53.075535+03:00 [ERROR] invalid binding value for keystroke ctrl-v, context Some("Editor") Caused by: no action type registered for editor::Paste 2024-09-30T09:50:53.0755903+03:00 [ERROR] invalid binding value for keystroke ctrl-x, context Some("Editor") Caused by: no action type registered for editor::Cut 2024-09-30T09:50:53.0756462+03:00 [ERROR] invalid binding value for keystroke alt-z, context Some("Editor && mode == full") Caused by: no action type registered for editor::ToggleSoftWrap 2024-09-30T09:50:53.0757017+03:00 [ERROR] invalid binding value for keystroke ctrl-<, context Some("Editor && mode == full") Caused by: no action type registered for assistant::InsertIntoEditor 2024-09-30T09:50:53.0757571+03:00 [ERROR] invalid binding value for keystroke ctrl->, context Some("Editor && mode == full") Caused by: no action type registered for assistant::QuoteSelection 2024-09-30T09:50:53.075847+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-e, context Some("Editor && mode == full") Caused by: no action type registered for editor::SelectEnclosingSymbol 2024-09-30T09:50:53.0759035+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::NewlineAbove 2024-09-30T09:50:53.075959+03:00 [ERROR] invalid binding value for keystroke ctrl-f, context Some("Editor && mode == full") Caused by: no action type registered for buffer_search::Deploy 2024-09-30T09:50:53.0760158+03:00 [ERROR] invalid binding value for keystroke ctrl-h, context Some("Editor && mode == full") Caused by: no action type registered for buffer_search::Deploy 2024-09-30T09:50:53.0760712+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::NewlineBelow 2024-09-30T09:50:53.0761269+03:00 [ERROR] invalid binding value for keystroke enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::Newline 2024-09-30T09:50:53.0761825+03:00 [ERROR] invalid binding value for keystroke shift-enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::Newline 2024-09-30T09:50:53.0762395+03:00 [ERROR] invalid binding value for keystroke alt-[, context Some("Editor && mode == full && inline_completion") Caused by: no action type registered for editor::PreviousInlineCompletion 2024-09-30T09:50:53.0762955+03:00 [ERROR] invalid binding value for keystroke alt-], context Some("Editor && mode == full && inline_completion") Caused by: no action type registered for editor::NextInlineCompletion 2024-09-30T09:50:53.0763514+03:00 [ERROR] invalid binding value for keystroke ctrl-right, context Some("Editor && mode == full && inline_completion") Caused by: no action type registered for editor::AcceptPartialInlineCompletion 2024-09-30T09:50:53.0764069+03:00 [ERROR] invalid binding value for keystroke alt-\, context Some("Editor && !inline_completion") Caused by: no action type registered for editor::ShowInlineCompletion 2024-09-30T09:50:53.0764633+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("Editor && mode == auto_height") Caused by: no action type registered for editor::Newline 2024-09-30T09:50:53.07652+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-enter, context Some("Editor && mode == auto_height") Caused by: no action type registered for editor::NewlineBelow 2024-09-30T09:50:53.0765759+03:00 [ERROR] invalid binding value for keystroke shift-enter, context Some("Editor && mode == auto_height") Caused by: no action type registered for editor::Newline 2024-09-30T09:50:53.0766333+03:00 [ERROR] invalid binding value for keystroke ctrl-c, context Some("Markdown") Caused by: no action type registered for markdown::Copy 2024-09-30T09:50:53.0766893+03:00 [ERROR] invalid binding value for keystroke alt-m, context Some("AssistantPanel") Caused by: no action type registered for assistant::ToggleModelSelector 2024-09-30T09:50:53.0767452+03:00 [ERROR] invalid binding value for keystroke ctrl-g, context Some("AssistantPanel") Caused by: no action type registered for search::SelectNextMatch 2024-09-30T09:50:53.0768011+03:00 [ERROR] invalid binding value for keystroke ctrl-k c, context Some("AssistantPanel") Caused by: no action type registered for assistant::CopyCode 2024-09-30T09:50:53.0768567+03:00 [ERROR] invalid binding value for keystroke ctrl-k h, context Some("AssistantPanel") Caused by: no action type registered for assistant::DeployHistory 2024-09-30T09:50:53.0769124+03:00 [ERROR] invalid binding value for keystroke ctrl-k l, context Some("AssistantPanel") Caused by: no action type registered for assistant::DeployPromptLibrary 2024-09-30T09:50:53.0769695+03:00 [ERROR] invalid binding value for keystroke ctrl-n, context Some("AssistantPanel") Caused by: no action type registered for assistant::NewContext 2024-09-30T09:50:53.0770254+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-g, context Some("AssistantPanel") Caused by: no action type registered for search::SelectPrevMatch 2024-09-30T09:50:53.0770814+03:00 [ERROR] invalid binding value for keystroke ctrl-n, context Some("PromptLibrary") Caused by: no action type registered for prompt_library::NewPrompt 2024-09-30T09:50:53.0771371+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-s, context Some("PromptLibrary") Caused by: no action type registered for prompt_library::ToggleDefaultPrompt 2024-09-30T09:50:53.077193+03:00 [ERROR] invalid binding value for keystroke alt-enter, context Some("BufferSearchBar") Caused by: no action type registered for search::SelectAllMatches 2024-09-30T09:50:53.0772484+03:00 [ERROR] invalid binding value for keystroke ctrl-f, context Some("BufferSearchBar") Caused by: no action type registered for search::FocusSearch 2024-09-30T09:50:53.0773041+03:00 [ERROR] invalid binding value for keystroke ctrl-h, context Some("BufferSearchBar") Caused by: no action type registered for search::ToggleReplace 2024-09-30T09:50:53.0773596+03:00 [ERROR] invalid binding value for keystroke ctrl-l, context Some("BufferSearchBar") Caused by: no action type registered for search::ToggleSelection 2024-09-30T09:50:53.077415+03:00 [ERROR] invalid binding value for keystroke enter, context Some("BufferSearchBar") Caused by: no action type registered for search::SelectNextMatch 2024-09-30T09:50:53.0774706+03:00 [ERROR] invalid binding value for keystroke escape, context Some("BufferSearchBar") Caused by: no action type registered for buffer_search::Dismiss 2024-09-30T09:50:53.0775259+03:00 [ERROR] invalid binding value for keystroke shift-enter, context Some("BufferSearchBar") Caused by: no action type registered for search::SelectPrevMatch 2024-09-30T09:50:53.0775818+03:00 [ERROR] invalid binding value for keystroke tab, context Some("BufferSearchBar") Caused by: no action type registered for buffer_search::FocusEditor 2024-09-30T09:50:53.0776375+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("BufferSearchBar && in_replace") Caused by: no action type registered for search::ReplaceAll 2024-09-30T09:50:53.0776934+03:00 [ERROR] invalid binding value for keystroke enter, context Some("BufferSearchBar && in_replace") Caused by: no action type registered for search::ReplaceNext 2024-09-30T09:50:53.0777507+03:00 [ERROR] invalid binding value for keystroke down, context Some("BufferSearchBar && !in_replace > Editor") Caused by: no action type registered for search::NextHistoryQuery 2024-09-30T09:50:53.0778067+03:00 [ERROR] invalid binding value for keystroke up, context Some("BufferSearchBar && !in_replace > Editor") Caused by: no action type registered for search::PreviousHistoryQuery 2024-09-30T09:50:53.0778631+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-g, context Some("ProjectSearchBar") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.0779189+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-x, context Some("ProjectSearchBar") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.0779749+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f, context Some("ProjectSearchBar") Caused by: no action type registered for search::FocusSearch 2024-09-30T09:50:53.0780307+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-h, context Some("ProjectSearchBar") Caused by: no action type registered for search::ToggleReplace 2024-09-30T09:50:53.0780865+03:00 [ERROR] invalid binding value for keystroke escape, context Some("ProjectSearchBar") Caused by: no action type registered for project_search::ToggleFocus 2024-09-30T09:50:53.0781427+03:00 [ERROR] invalid binding value for keystroke down, context Some("ProjectSearchBar > Editor") Caused by: no action type registered for search::NextHistoryQuery 2024-09-30T09:50:53.0782005+03:00 [ERROR] invalid binding value for keystroke up, context Some("ProjectSearchBar > Editor") Caused by: no action type registered for search::PreviousHistoryQuery 2024-09-30T09:50:53.0782572+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-enter, context Some("ProjectSearchBar && in_replace > Editor") Caused by: no action type registered for search::ReplaceAll 2024-09-30T09:50:53.0783134+03:00 [ERROR] invalid binding value for keystroke enter, context Some("ProjectSearchBar && in_replace > Editor") Caused by: no action type registered for search::ReplaceNext 2024-09-30T09:50:53.0784069+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-g, context Some("ProjectSearchView") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.0784626+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-x, context Some("ProjectSearchView") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.0785188+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-h, context Some("ProjectSearchView") Caused by: no action type registered for search::ToggleReplace 2024-09-30T09:50:53.0785745+03:00 [ERROR] invalid binding value for keystroke escape, context Some("ProjectSearchView") Caused by: no action type registered for project_search::ToggleFocus 2024-09-30T09:50:53.0786306+03:00 [ERROR] invalid binding value for keystroke alt-c, context Some("Pane") Caused by: no action type registered for search::ToggleCaseSensitive 2024-09-30T09:50:53.0786866+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-f, context Some("Pane") Caused by: no action type registered for project_search::ToggleFilters 2024-09-30T09:50:53.0787425+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-shift-w, context Some("Pane") Caused by: no action type registered for workspace::CloseInactiveTabsAndPanes 2024-09-30T09:50:53.0787981+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-t, context Some("Pane") Caused by: no action type registered for pane::CloseInactiveItems 2024-09-30T09:50:53.0788544+03:00 [ERROR] invalid binding value for keystroke alt-enter, context Some("Pane") Caused by: no action type registered for search::SelectAllMatches 2024-09-30T09:50:53.0789101+03:00 [ERROR] invalid binding value for keystroke alt-r, context Some("Pane") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.0789659+03:00 [ERROR] invalid binding value for keystroke alt-w, context Some("Pane") Caused by: no action type registered for search::ToggleWholeWord 2024-09-30T09:50:53.0790223+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-g, context Some("Pane") Caused by: no action type registered for search::SelectNextMatch 2024-09-30T09:50:53.0790792+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-g, context Some("Pane") Caused by: no action type registered for search::SelectPrevMatch 2024-09-30T09:50:53.0791353+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-h, context Some("Pane") Caused by: no action type registered for search::ToggleReplace 2024-09-30T09:50:53.0791911+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-l, context Some("Pane") Caused by: no action type registered for search::ToggleSelection 2024-09-30T09:50:53.0792469+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-r, context Some("Pane") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.0793027+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-x, context Some("Pane") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.0793585+03:00 [ERROR] invalid binding value for keystroke ctrl-f4, context Some("Pane") Caused by: no action type registered for pane::CloseActiveItem 2024-09-30T09:50:53.0794154+03:00 [ERROR] invalid binding value for keystroke ctrl-k shift-enter, context Some("Pane") Caused by: no action type registered for pane::TogglePinTab 2024-09-30T09:50:53.0794718+03:00 [ERROR] invalid binding value for keystroke ctrl-k u, context Some("Pane") Caused by: no action type registered for pane::CloseCleanItems 2024-09-30T09:50:53.0795279+03:00 [ERROR] invalid binding value for keystroke ctrl-k w, context Some("Pane") Caused by: no action type registered for pane::CloseAllItems 2024-09-30T09:50:53.0795836+03:00 [ERROR] invalid binding value for keystroke ctrl-pagedown, context Some("Pane") Caused by: no action type registered for pane::ActivateNextItem 2024-09-30T09:50:53.0796392+03:00 [ERROR] invalid binding value for keystroke ctrl-pageup, context Some("Pane") Caused by: no action type registered for pane::ActivatePrevItem 2024-09-30T09:50:53.0796946+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f, context Some("Pane") Caused by: no action type registered for project_search::ToggleFocus 2024-09-30T09:50:53.0797501+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-pagedown, context Some("Pane") Caused by: no action type registered for pane::SwapItemRight 2024-09-30T09:50:53.0798057+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-pageup, context Some("Pane") Caused by: no action type registered for pane::SwapItemLeft 2024-09-30T09:50:53.079863+03:00 [ERROR] invalid binding value for keystroke ctrl-w, context Some("Pane") Caused by: no action type registered for pane::CloseActiveItem 2024-09-30T09:50:53.0799195+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-f12, context Some("Editor") Caused by: no action type registered for editor::GoToTypeDefinitionSplit 2024-09-30T09:50:53.0799765+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-r, context Some("Editor") Caused by: no action type registered for editor::RevealInFileManager 2024-09-30T09:50:53.0800324+03:00 [ERROR] invalid binding value for keystroke alt-down, context Some("Editor") Caused by: no action type registered for editor::MoveLineDown 2024-09-30T09:50:53.0800883+03:00 [ERROR] invalid binding value for keystroke alt-f12, context Some("Editor") Caused by: no action type registered for editor::GoToDefinitionSplit 2024-09-30T09:50:53.0801443+03:00 [ERROR] invalid binding value for keystroke alt-shift-f12, context Some("Editor") Caused by: no action type registered for editor::FindAllReferences 2024-09-30T09:50:53.0802+03:00 [ERROR] invalid binding value for keystroke alt-shift-left, context Some("Editor") Caused by: no action type registered for editor::SelectSmallerSyntaxNode 2024-09-30T09:50:53.0802559+03:00 [ERROR] invalid binding value for keystroke alt-shift-right, context Some("Editor") Caused by: no action type registered for editor::SelectLargerSyntaxNode 2024-09-30T09:50:53.0803116+03:00 [ERROR] invalid binding value for keystroke alt-up, context Some("Editor") Caused by: no action type registered for editor::MoveLineUp 2024-09-30T09:50:53.0803672+03:00 [ERROR] invalid binding value for keystroke ctrl-., context Some("Editor") Caused by: no action type registered for editor::ToggleCodeActions 2024-09-30T09:50:53.0804235+03:00 [ERROR] invalid binding value for keystroke ctrl-/, context Some("Editor") Caused by: no action type registered for editor::ToggleComments 2024-09-30T09:50:53.0804791+03:00 [ERROR] invalid binding value for keystroke ctrl-[, context Some("Editor") Caused by: no action type registered for editor::Outdent 2024-09-30T09:50:53.080535+03:00 [ERROR] invalid binding value for keystroke ctrl-\, context Some("Editor") Caused by: no action type registered for pane::SplitRight 2024-09-30T09:50:53.0805909+03:00 [ERROR] invalid binding value for keystroke ctrl-], context Some("Editor") Caused by: no action type registered for editor::Indent 2024-09-30T09:50:53.0806472+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-c, context Some("Editor") Caused by: no action type registered for editor::DisplayCursorNames 2024-09-30T09:50:53.0807271+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-down, context Some("Editor") Caused by: no action type registered for editor::DuplicateLineDown 2024-09-30T09:50:53.0807834+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-up, context Some("Editor") Caused by: no action type registered for editor::DuplicateLineUp 2024-09-30T09:50:53.0808397+03:00 [ERROR] invalid binding value for keystroke ctrl-d, context Some("Editor") Caused by: no action type registered for editor::SelectNext 2024-09-30T09:50:53.080896+03:00 [ERROR] invalid binding value for keystroke ctrl-f12, context Some("Editor") Caused by: no action type registered for editor::GoToTypeDefinition 2024-09-30T09:50:53.0809517+03:00 [ERROR] invalid binding value for keystroke ctrl-f2, context Some("Editor") Caused by: no action type registered for editor::SelectAllMatches 2024-09-30T09:50:53.081008+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-d, context Some("Editor") Caused by: no action type registered for editor::SelectNext 2024-09-30T09:50:53.0810642+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-i, context Some("Editor") Caused by: no action type registered for editor::Hover 2024-09-30T09:50:53.0811214+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-shift-d, context Some("Editor") Caused by: no action type registered for editor::SelectPrevious 2024-09-30T09:50:53.081178+03:00 [ERROR] invalid binding value for keystroke ctrl-k p, context Some("Editor") Caused by: no action type registered for editor::CopyPath 2024-09-30T09:50:53.0812345+03:00 [ERROR] invalid binding value for keystroke ctrl-k r, context Some("Editor") Caused by: no action type registered for editor::RevealInFileManager 2024-09-30T09:50:53.0812909+03:00 [ERROR] invalid binding value for keystroke ctrl-k v, context Some("Editor") Caused by: no action type registered for markdown::OpenPreviewToTheSide 2024-09-30T09:50:53.0813473+03:00 [ERROR] invalid binding value for keystroke ctrl-m, context Some("Editor") Caused by: no action type registered for editor::MoveToEnclosingBracket 2024-09-30T09:50:53.0814034+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-[, context Some("Editor") Caused by: no action type registered for editor::Fold 2024-09-30T09:50:53.0814594+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-\, context Some("Editor") Caused by: no action type registered for editor::MoveToEnclosingBracket 2024-09-30T09:50:53.0815152+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-], context Some("Editor") Caused by: no action type registered for editor::UnfoldLines 2024-09-30T09:50:53.0815724+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-down, context Some("Editor") Caused by: no action type registered for editor::SelectNext 2024-09-30T09:50:53.081629+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f10, context Some("Editor") Caused by: no action type registered for editor::GoToDefinitionSplit 2024-09-30T09:50:53.0816851+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-k, context Some("Editor") Caused by: no action type registered for editor::DeleteLine 2024-09-30T09:50:53.0817411+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-l, context Some("Editor") Caused by: no action type registered for editor::SelectAllMatches 2024-09-30T09:50:53.081797+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-u, context Some("Editor") Caused by: no action type registered for editor::RedoSelection 2024-09-30T09:50:53.0818534+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-up, context Some("Editor") Caused by: no action type registered for editor::SelectPrevious 2024-09-30T09:50:53.0819093+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-v, context Some("Editor") Caused by: no action type registered for markdown::OpenPreview 2024-09-30T09:50:53.0819767+03:00 [ERROR] invalid binding value for keystroke ctrl-space, context Some("Editor") Caused by: no action type registered for editor::ShowCompletions 2024-09-30T09:50:53.082033+03:00 [ERROR] invalid binding value for keystroke ctrl-u, context Some("Editor") Caused by: no action type registered for editor::UndoSelection 2024-09-30T09:50:53.0820891+03:00 [ERROR] invalid binding value for keystroke f12, context Some("Editor") Caused by: no action type registered for editor::GoToDefinition 2024-09-30T09:50:53.0821451+03:00 [ERROR] invalid binding value for keystroke f2, context Some("Editor") Caused by: no action type registered for editor::Rename 2024-09-30T09:50:53.0822011+03:00 [ERROR] invalid binding value for keystroke f8, context Some("Editor") Caused by: no action type registered for editor::GoToDiagnostic 2024-09-30T09:50:53.0822574+03:00 [ERROR] invalid binding value for keystroke shift-alt-down, context Some("Editor") Caused by: no action type registered for editor::AddSelectionBelow 2024-09-30T09:50:53.0823137+03:00 [ERROR] invalid binding value for keystroke shift-alt-up, context Some("Editor") Caused by: no action type registered for editor::AddSelectionAbove 2024-09-30T09:50:53.0823699+03:00 [ERROR] invalid binding value for keystroke shift-f12, context Some("Editor") Caused by: no action type registered for editor::GoToImplementation 2024-09-30T09:50:53.0824258+03:00 [ERROR] invalid binding value for keystroke shift-f8, context Some("Editor") Caused by: no action type registered for editor::GoToPrevDiagnostic 2024-09-30T09:50:53.082483+03:00 [ERROR] invalid binding value for keystroke ctrl-g, context Some("Editor && mode == full") Caused by: no action type registered for go_to_line::Toggle 2024-09-30T09:50:53.0825391+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-o, context Some("Editor && mode == full") Caused by: no action type registered for outline::Toggle 2024-09-30T09:50:53.0825962+03:00 [ERROR] invalid binding value for keystroke alt-0, context Some("Pane") Caused by: no action type registered for pane::ActivateLastItem 2024-09-30T09:50:53.0826528+03:00 [ERROR] invalid binding value for keystroke alt-1, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.0827091+03:00 [ERROR] invalid binding value for keystroke alt-2, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.082765+03:00 [ERROR] invalid binding value for keystroke alt-3, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.0828209+03:00 [ERROR] invalid binding value for keystroke alt-4, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.082877+03:00 [ERROR] invalid binding value for keystroke alt-5, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.0829338+03:00 [ERROR] invalid binding value for keystroke alt-6, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.0829902+03:00 [ERROR] invalid binding value for keystroke alt-7, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.0830466+03:00 [ERROR] invalid binding value for keystroke alt-8, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.0831031+03:00 [ERROR] invalid binding value for keystroke alt-9, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.0831591+03:00 [ERROR] invalid binding value for keystroke ctrl-alt--, context Some("Pane") Caused by: no action type registered for pane::GoBack 2024-09-30T09:50:53.0832149+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-_, context Some("Pane") Caused by: no action type registered for pane::GoForward 2024-09-30T09:50:53.0832899+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f, context Some("Pane") Caused by: no action type registered for project_search::ToggleFocus 2024-09-30T09:50:53.0833457+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-t, context Some("Pane") Caused by: no action type registered for pane::ReopenClosedItem 2024-09-30T09:50:53.0834021+03:00 [ERROR] invalid binding value for keystroke f3, context Some("Pane") Caused by: no action type registered for search::SelectNextMatch 2024-09-30T09:50:53.083458+03:00 [ERROR] invalid binding value for keystroke shift-f3, context Some("Pane") Caused by: no action type registered for search::SelectPrevMatch 2024-09-30T09:50:53.0835142+03:00 [ERROR] invalid binding value for keystroke alt-1, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.0835696+03:00 [ERROR] invalid binding value for keystroke alt-2, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.0836243+03:00 [ERROR] invalid binding value for keystroke alt-3, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.083679+03:00 [ERROR] invalid binding value for keystroke alt-4, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.0837334+03:00 [ERROR] invalid binding value for keystroke alt-5, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.0837874+03:00 [ERROR] invalid binding value for keystroke alt-6, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.083842+03:00 [ERROR] invalid binding value for keystroke alt-7, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.0838967+03:00 [ERROR] invalid binding value for keystroke alt-8, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.083951+03:00 [ERROR] invalid binding value for keystroke alt-9, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.0840051+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-o, context Some("Workspace") Caused by: no action type registered for projects::OpenRecent 2024-09-30T09:50:53.0840593+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-shift-b, context Some("Workspace") Caused by: no action type registered for branches::OpenRecent 2024-09-30T09:50:53.0841146+03:00 [ERROR] invalid binding value for keystroke alt-shift-t, context Some("Workspace") Caused by: no action type registered for task::Spawn 2024-09-30T09:50:53.0841693+03:00 [ERROR] invalid binding value for keystroke alt-t, context Some("Workspace") Caused by: no action type registered for task::Rerun 2024-09-30T09:50:53.0842234+03:00 [ERROR] invalid binding value for keystroke ctrl-?, context Some("Workspace") Caused by: no action type registered for assistant::ToggleFocus 2024-09-30T09:50:53.0842776+03:00 [ERROR] invalid binding value for keystroke ctrl-`, context Some("Workspace") Caused by: no action type registered for terminal_panel::ToggleFocus 2024-09-30T09:50:53.084332+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-b, context Some("Workspace") Caused by: no action type registered for workspace::ToggleRightDock 2024-09-30T09:50:53.0843862+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-s, context Some("Workspace") Caused by: no action type registered for workspace::SaveAll 2024-09-30T09:50:53.0844403+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-y, context Some("Workspace") Caused by: no action type registered for workspace::CloseAllDocks 2024-09-30T09:50:53.0844947+03:00 [ERROR] invalid binding value for keystroke ctrl-b, context Some("Workspace") Caused by: no action type registered for workspace::ToggleLeftDock 2024-09-30T09:50:53.0845509+03:00 [ERROR] invalid binding value for keystroke ctrl-e, context Some("Workspace") Caused by: no action type registered for file_finder::Toggle 2024-09-30T09:50:53.0846057+03:00 [ERROR] invalid binding value for keystroke ctrl-j, context Some("Workspace") Caused by: no action type registered for workspace::ToggleBottomDock 2024-09-30T09:50:53.0846602+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-down, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePaneInDirection 2024-09-30T09:50:53.0847148+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-left, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePaneInDirection 2024-09-30T09:50:53.0847701+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-right, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePaneInDirection 2024-09-30T09:50:53.0848247+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-s, context Some("Workspace") Caused by: no action type registered for zed::OpenKeymap 2024-09-30T09:50:53.0848791+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-t, context Some("Workspace") Caused by: no action type registered for theme_selector::Toggle 2024-09-30T09:50:53.0849334+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-up, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePaneInDirection 2024-09-30T09:50:53.0849879+03:00 [ERROR] invalid binding value for keystroke ctrl-k m, context Some("Workspace") Caused by: no action type registered for language_selector::Toggle 2024-09-30T09:50:53.085042+03:00 [ERROR] invalid binding value for keystroke ctrl-k s, context Some("Workspace") Caused by: no action type registered for workspace::SaveWithoutFormat 2024-09-30T09:50:53.0850964+03:00 [ERROR] invalid binding value for keystroke ctrl-k shift-down, context Some("Workspace") Caused by: no action type registered for workspace::SwapPaneInDirection 2024-09-30T09:50:53.0851526+03:00 [ERROR] invalid binding value for keystroke ctrl-k shift-left, context Some("Workspace") Caused by: no action type registered for workspace::SwapPaneInDirection 2024-09-30T09:50:53.0852085+03:00 [ERROR] invalid binding value for keystroke ctrl-k shift-right, context Some("Workspace") Caused by: no action type registered for workspace::SwapPaneInDirection 2024-09-30T09:50:53.0852642+03:00 [ERROR] invalid binding value for keystroke ctrl-k shift-up, context Some("Workspace") Caused by: no action type registered for workspace::SwapPaneInDirection 2024-09-30T09:50:53.0853199+03:00 [ERROR] invalid binding value for keystroke ctrl-n, context Some("Workspace") Caused by: no action type registered for workspace::NewFile 2024-09-30T09:50:53.0853752+03:00 [ERROR] invalid binding value for keystroke ctrl-p, context Some("Workspace") Caused by: no action type registered for file_finder::Toggle 2024-09-30T09:50:53.0854308+03:00 [ERROR] invalid binding value for keystroke ctrl-s, context Some("Workspace") Caused by: no action type registered for workspace::Save 2024-09-30T09:50:53.0854866+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-b, context Some("Workspace") Caused by: no action type registered for outline_panel::ToggleFocus 2024-09-30T09:50:53.0855423+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-e, context Some("Workspace") Caused by: no action type registered for project_panel::ToggleFocus 2024-09-30T09:50:53.0855981+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f, context Some("Workspace") Caused by: no action type registered for pane::DeploySearch 2024-09-30T09:50:53.0856539+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-h, context Some("Workspace") Caused by: no action type registered for pane::DeploySearch 2024-09-30T09:50:53.0857097+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-m, context Some("Workspace") Caused by: no action type registered for diagnostics::Deploy 2024-09-30T09:50:53.0857683+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-n, context Some("Workspace") Caused by: no action type registered for workspace::NewWindow 2024-09-30T09:50:53.0858238+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-p, context Some("Workspace") Caused by: no action type registered for command_palette::Toggle 2024-09-30T09:50:53.0858796+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-s, context Some("Workspace") Caused by: no action type registered for workspace::SaveAs 2024-09-30T09:50:53.0859363+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-tab, context Some("Workspace") Caused by: no action type registered for tab_switcher::Toggle 2024-09-30T09:50:53.0859922+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-x, context Some("Workspace") Caused by: no action type registered for zed::Extensions 2024-09-30T09:50:53.0860478+03:00 [ERROR] invalid binding value for keystroke ctrl-t, context Some("Workspace") Caused by: no action type registered for project_symbols::Toggle 2024-09-30T09:50:53.0861033+03:00 [ERROR] invalid binding value for keystroke ctrl-tab, context Some("Workspace") Caused by: no action type registered for tab_switcher::Toggle 2024-09-30T09:50:53.0861591+03:00 [ERROR] invalid binding value for keystroke ctrl-~, context Some("Workspace") Caused by: no action type registered for workspace::NewTerminal 2024-09-30T09:50:53.0862147+03:00 [ERROR] invalid binding value for keystroke escape, context Some("Workspace") Caused by: no action type registered for workspace::Unfollow 2024-09-30T09:50:53.0862703+03:00 [ERROR] invalid binding value for keystroke f1, context Some("Workspace") Caused by: no action type registered for command_palette::Toggle 2024-09-30T09:50:53.0863279+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-backspace, context Some("Editor") Caused by: no action type registered for editor::DeleteToPreviousSubwordStart 2024-09-30T09:50:53.0863837+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-d, context Some("Editor") Caused by: no action type registered for editor::DeleteToNextSubwordEnd 2024-09-30T09:50:53.0864394+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-delete, context Some("Editor") Caused by: no action type registered for editor::DeleteToNextSubwordEnd 2024-09-30T09:50:53.0864948+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-f, context Some("Editor") Caused by: no action type registered for editor::MoveToNextSubwordEnd 2024-09-30T09:50:53.0865505+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-h, context Some("Editor") Caused by: no action type registered for editor::DeleteToPreviousSubwordStart 2024-09-30T09:50:53.0866054+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-left, context Some("Editor") Caused by: no action type registered for editor::MoveToPreviousSubwordStart 2024-09-30T09:50:53.0866597+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-right, context Some("Editor") Caused by: no action type registered for editor::MoveToNextSubwordEnd 2024-09-30T09:50:53.086715+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-b, context Some("Editor") Caused by: no action type registered for editor::SelectToPreviousSubwordStart 2024-09-30T09:50:53.0867693+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-f, context Some("Editor") Caused by: no action type registered for editor::SelectToNextSubwordEnd 2024-09-30T09:50:53.0868238+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-left, context Some("Editor") Caused by: no action type registered for editor::SelectToPreviousSubwordStart 2024-09-30T09:50:53.0868783+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-right, context Some("Editor") Caused by: no action type registered for editor::SelectToNextSubwordEnd 2024-09-30T09:50:53.0869338+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-d, context Some("Editor") Caused by: no action type registered for editor::DuplicateLineDown 2024-09-30T09:50:53.0869879+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-j, context Some("Editor") Caused by: no action type registered for editor::JoinLines 2024-09-30T09:50:53.0870421+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-k, context Some("Editor") Caused by: no action type registered for editor::DeleteLine 2024-09-30T09:50:53.0870983+03:00 [ERROR] invalid binding value for keystroke ctrl-k down, context Some("Pane") Caused by: no action type registered for pane::SplitDown 2024-09-30T09:50:53.0871526+03:00 [ERROR] invalid binding value for keystroke ctrl-k left, context Some("Pane") Caused by: no action type registered for pane::SplitLeft 2024-09-30T09:50:53.0872067+03:00 [ERROR] invalid binding value for keystroke ctrl-k right, context Some("Pane") Caused by: no action type registered for pane::SplitRight 2024-09-30T09:50:53.0872608+03:00 [ERROR] invalid binding value for keystroke ctrl-k up, context Some("Pane") Caused by: no action type registered for pane::SplitUp 2024-09-30T09:50:53.0873151+03:00 [ERROR] invalid binding value for keystroke enter, context Some("Editor && renaming") Caused by: no action type registered for editor::ConfirmRename 2024-09-30T09:50:53.0873696+03:00 [ERROR] invalid binding value for keystroke enter, context Some("Editor && showing_completions") Caused by: no action type registered for editor::ConfirmCompletion 2024-09-30T09:50:53.0874238+03:00 [ERROR] invalid binding value for keystroke tab, context Some("Editor && showing_completions") Caused by: no action type registered for editor::ComposeCompletion 2024-09-30T09:50:53.087479+03:00 [ERROR] invalid binding value for keystroke tab, context Some("Editor && inline_completion && !showing_completions") Caused by: no action type registered for editor::AcceptInlineCompletion 2024-09-30T09:50:53.0875336+03:00 [ERROR] invalid binding value for keystroke enter, context Some("Editor && showing_code_actions") Caused by: no action type registered for editor::ConfirmCodeAction 2024-09-30T09:50:53.0875886+03:00 [ERROR] invalid binding value for keystroke ctrl-n, context Some("Editor && (showing_code_actions || showing_completions)") Caused by: no action type registered for editor::ContextMenuNext 2024-09-30T09:50:53.0876433+03:00 [ERROR] invalid binding value for keystroke ctrl-p, context Some("Editor && (showing_code_actions || showing_completions)") Caused by: no action type registered for editor::ContextMenuPrev 2024-09-30T09:50:53.087698+03:00 [ERROR] invalid binding value for keystroke down, context Some("Editor && (showing_code_actions || showing_completions)") Caused by: no action type registered for editor::ContextMenuNext 2024-09-30T09:50:53.0877525+03:00 [ERROR] invalid binding value for keystroke pagedown, context Some("Editor && (showing_code_actions || showing_completions)") Caused by: no action type registered for editor::ContextMenuLast 2024-09-30T09:50:53.087807+03:00 [ERROR] invalid binding value for keystroke pageup, context Some("Editor && (showing_code_actions || showing_completions)") Caused by: no action type registered for editor::ContextMenuFirst 2024-09-30T09:50:53.0878619+03:00 [ERROR] invalid binding value for keystroke up, context Some("Editor && (showing_code_actions || showing_completions)") Caused by: no action type registered for editor::ContextMenuPrev 2024-09-30T09:50:53.0879166+03:00 [ERROR] invalid binding value for keystroke ctrl-:, context None Caused by: no action type registered for editor::ToggleInlayHints 2024-09-30T09:50:53.0879712+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-i, context None Caused by: no action type registered for zed::DebugElements 2024-09-30T09:50:53.0880257+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-f, context None Caused by: no action type registered for workspace::FollowNextCollaborator 2024-09-30T09:50:53.0880817+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-c, context Some("!Terminal") Caused by: no action type registered for collab_panel::ToggleFocus 2024-09-30T09:50:53.0881364+03:00 [ERROR] invalid binding value for keystroke alt-enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::OpenExcerpts 2024-09-30T09:50:53.0881919+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("Editor && mode == full") Caused by: no action type registered for assistant::InlineAssist 2024-09-30T09:50:53.0882463+03:00 [ERROR] invalid binding value for keystroke ctrl-f8, context Some("Editor && mode == full") Caused by: no action type registered for editor::GoToHunk 2024-09-30T09:50:53.088301+03:00 [ERROR] invalid binding value for keystroke ctrl-k enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::OpenExcerptsSplit 2024-09-30T09:50:53.0883556+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f8, context Some("Editor && mode == full") Caused by: no action type registered for editor::GoToPrevHunk 2024-09-30T09:50:53.0884098+03:00 [ERROR] invalid binding value for keystroke shift-enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::ExpandExcerpts 2024-09-30T09:50:53.0884654+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-enter, context Some("Editor && jupyter && !ContextEditor") Caused by: no action type registered for repl::RunInPlace 2024-09-30T09:50:53.0885206+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-enter, context Some("Editor && jupyter && !ContextEditor") Caused by: no action type registered for repl::Run 2024-09-30T09:50:53.0885761+03:00 [ERROR] invalid binding value for keystroke alt-enter, context Some("ContextEditor > Editor") Caused by: no action type registered for editor::Newline 2024-09-30T09:50:53.0886305+03:00 [ERROR] invalid binding value for keystroke ctrl-<, context Some("ContextEditor > Editor") Caused by: no action type registered for assistant::InsertIntoEditor 2024-09-30T09:50:53.0886848+03:00 [ERROR] invalid binding value for keystroke ctrl->, context Some("ContextEditor > Editor") Caused by: no action type registered for assistant::QuoteSelection 2024-09-30T09:50:53.0887393+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("ContextEditor > Editor") Caused by: no action type registered for assistant::Assist 2024-09-30T09:50:53.0887935+03:00 [ERROR] invalid binding value for keystroke ctrl-r, context Some("ContextEditor > Editor") Caused by: no action type registered for assistant::CycleMessageRole 2024-09-30T09:50:53.0888476+03:00 [ERROR] invalid binding value for keystroke ctrl-s, context Some("ContextEditor > Editor") Caused by: no action type registered for workspace::Save 2024-09-30T09:50:53.0889097+03:00 [ERROR] invalid binding value for keystroke enter, context Some("ContextEditor > Editor") Caused by: no action type registered for assistant::ConfirmCommand 2024-09-30T09:50:53.0889944+03:00 [ERROR] invalid binding value for keystroke shift-enter, context Some("ContextEditor > Editor") Caused by: no action type registered for assistant::Split 2024-09-30T09:50:53.089066+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("ProjectSearchBar && !in_replace") Caused by: no action type registered for project_search::SearchInNew 2024-09-30T09:50:53.0891213+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-r, context Some("OutlinePanel && not_editing") Caused by: no action type registered for outline_panel::RevealInFileManager 2024-09-30T09:50:53.0891771+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-shift-c, context Some("OutlinePanel && not_editing") Caused by: no action type registered for outline_panel::CopyRelativePath 2024-09-30T09:50:53.0892342+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-c, context Some("OutlinePanel && not_editing") Caused by: no action type registered for outline_panel::CopyPath 2024-09-30T09:50:53.0892924+03:00 [ERROR] invalid binding value for keystroke escape, context Some("OutlinePanel && not_editing") Caused by: no action type registered for menu::Cancel 2024-09-30T09:50:53.0893489+03:00 [ERROR] invalid binding value for keystroke left, context Some("OutlinePanel && not_editing") Caused by: no action type registered for outline_panel::CollapseSelectedEntry 2024-09-30T09:50:53.0894051+03:00 [ERROR] invalid binding value for keystroke right, context Some("OutlinePanel && not_editing") Caused by: no action type registered for outline_panel::ExpandSelectedEntry 2024-09-30T09:50:53.0894612+03:00 [ERROR] invalid binding value for keystroke shift-down, context Some("OutlinePanel && not_editing") Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.089518+03:00 [ERROR] invalid binding value for keystroke shift-up, context Some("OutlinePanel && not_editing") Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.0895745+03:00 [ERROR] invalid binding value for keystroke space, context Some("OutlinePanel && not_editing") Caused by: no action type registered for outline_panel::Open 2024-09-30T09:50:53.0896324+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-n, context Some("ProjectPanel") Caused by: no action type registered for project_panel::NewDirectory 2024-09-30T09:50:53.0896887+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-r, context Some("ProjectPanel") Caused by: no action type registered for project_panel::RevealInFileManager 2024-09-30T09:50:53.0897449+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-shift-c, context Some("ProjectPanel") Caused by: no action type registered for project_panel::CopyRelativePath 2024-09-30T09:50:53.0898007+03:00 [ERROR] invalid binding value for keystroke alt-shift-f, context Some("ProjectPanel") Caused by: no action type registered for project_panel::NewSearchInDirectory 2024-09-30T09:50:53.0898568+03:00 [ERROR] invalid binding value for keystroke backspace, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Trash 2024-09-30T09:50:53.0899128+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-c, context Some("ProjectPanel") Caused by: no action type registered for project_panel::CopyPath 2024-09-30T09:50:53.08997+03:00 [ERROR] invalid binding value for keystroke ctrl-backspace, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Delete 2024-09-30T09:50:53.0900263+03:00 [ERROR] invalid binding value for keystroke ctrl-delete, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Delete 2024-09-30T09:50:53.090082+03:00 [ERROR] invalid binding value for keystroke ctrl-insert, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Copy 2024-09-30T09:50:53.0901376+03:00 [ERROR] invalid binding value for keystroke ctrl-n, context Some("ProjectPanel") Caused by: no action type registered for project_panel::NewFile 2024-09-30T09:50:53.0901937+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-enter, context Some("ProjectPanel") Caused by: no action type registered for project_panel::OpenWithSystem 2024-09-30T09:50:53.0902493+03:00 [ERROR] invalid binding value for keystroke enter, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Rename 2024-09-30T09:50:53.0903052+03:00 [ERROR] invalid binding value for keystroke escape, context Some("ProjectPanel") Caused by: no action type registered for menu::Cancel 2024-09-30T09:50:53.0903608+03:00 [ERROR] invalid binding value for keystroke left, context Some("ProjectPanel") Caused by: no action type registered for project_panel::CollapseSelectedEntry 2024-09-30T09:50:53.0904167+03:00 [ERROR] invalid binding value for keystroke right, context Some("ProjectPanel") Caused by: no action type registered for project_panel::ExpandSelectedEntry 2024-09-30T09:50:53.0904742+03:00 [ERROR] invalid binding value for keystroke shift-delete, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Delete 2024-09-30T09:50:53.0905297+03:00 [ERROR] invalid binding value for keystroke shift-down, context Some("ProjectPanel") Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.0905857+03:00 [ERROR] invalid binding value for keystroke shift-insert, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Paste 2024-09-30T09:50:53.0906411+03:00 [ERROR] invalid binding value for keystroke shift-up, context Some("ProjectPanel") Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.0906974+03:00 [ERROR] invalid binding value for keystroke ctrl-c, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Copy 2024-09-30T09:50:53.0907533+03:00 [ERROR] invalid binding value for keystroke ctrl-v, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Paste 2024-09-30T09:50:53.090809+03:00 [ERROR] invalid binding value for keystroke ctrl-x, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Cut 2024-09-30T09:50:53.0908658+03:00 [ERROR] invalid binding value for keystroke delete, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Trash 2024-09-30T09:50:53.0909213+03:00 [ERROR] invalid binding value for keystroke f2, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Rename 2024-09-30T09:50:53.0909785+03:00 [ERROR] invalid binding value for keystroke space, context Some("ProjectPanel && not_editing") Caused by: no action type registered for project_panel::Open 2024-09-30T09:50:53.091035+03:00 [ERROR] invalid binding value for keystroke ctrl-backspace, context Some("CollabPanel && not_editing") Caused by: no action type registered for collab_panel::Remove 2024-09-30T09:50:53.0910912+03:00 [ERROR] invalid binding value for keystroke space, context Some("CollabPanel && not_editing") Caused by: no action type registered for menu::Confirm 2024-09-30T09:50:53.0911468+03:00 [ERROR] invalid binding value for keystroke space, context Some("(CollabPanel && editing) > Editor") Caused by: no action type registered for collab_panel::InsertSpace 2024-09-30T09:50:53.0912033+03:00 [ERROR] invalid binding value for keystroke tab, context Some("ChannelModal") Caused by: no action type registered for channel_modal::ToggleMode 2024-09-30T09:50:53.091261+03:00 [ERROR] invalid binding value for keystroke alt-enter, context Some("Picker > Editor") Caused by: no action type registered for picker::ConfirmInput 2024-09-30T09:50:53.0913167+03:00 [ERROR] invalid binding value for keystroke tab, context Some("Picker > Editor") Caused by: no action type registered for picker::ConfirmCompletion 2024-09-30T09:50:53.0913731+03:00 [ERROR] invalid binding value for keystroke tab, context Some("ChannelModal > Picker > Editor") Caused by: no action type registered for channel_modal::ToggleMode 2024-09-30T09:50:53.0914296+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-p, context Some("FileFinder") Caused by: no action type registered for file_finder::SelectPrev 2024-09-30T09:50:53.0914864+03:00 [ERROR] invalid binding value for keystroke ctrl-backspace, context Some("TabSwitcher") Caused by: no action type registered for tab_switcher::CloseSelectedItem 2024-09-30T09:50:53.0915425+03:00 [ERROR] invalid binding value for keystroke ctrl-down, context Some("TabSwitcher") Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.091598+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-tab, context Some("TabSwitcher") Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.0916553+03:00 [ERROR] invalid binding value for keystroke ctrl-up, context Some("TabSwitcher") Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.0917119+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-space, context Some("Terminal") Caused by: no action type registered for terminal::ShowCharacterPalette 2024-09-30T09:50:53.0917677+03:00 [ERROR] invalid binding value for keystroke ctrl-c, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.0918241+03:00 [ERROR] invalid binding value for keystroke ctrl-e, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.0918804+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("Terminal") Caused by: no action type registered for assistant::InlineAssist 2024-09-30T09:50:53.0919362+03:00 [ERROR] invalid binding value for keystroke ctrl-insert, context Some("Terminal") Caused by: no action type registered for terminal::Copy 2024-09-30T09:50:53.0919924+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-a, context Some("Terminal") Caused by: no action type registered for editor::SelectAll 2024-09-30T09:50:53.0920478+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f, context Some("Terminal") Caused by: no action type registered for buffer_search::Deploy 2024-09-30T09:50:53.0921034+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-l, context Some("Terminal") Caused by: no action type registered for terminal::Clear 2024-09-30T09:50:53.0921591+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-w, context Some("Terminal") Caused by: no action type registered for pane::CloseActiveItem 2024-09-30T09:50:53.0922152+03:00 [ERROR] invalid binding value for keystroke ctrl-w, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.092271+03:00 [ERROR] invalid binding value for keystroke down, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.0923269+03:00 [ERROR] invalid binding value for keystroke enter, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.0923827+03:00 [ERROR] invalid binding value for keystroke escape, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.0924384+03:00 [ERROR] invalid binding value for keystroke pagedown, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.0924941+03:00 [ERROR] invalid binding value for keystroke pageup, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.0925498+03:00 [ERROR] invalid binding value for keystroke shift-down, context Some("Terminal") Caused by: no action type registered for terminal::ScrollLineDown 2024-09-30T09:50:53.0926053+03:00 [ERROR] invalid binding value for keystroke shift-end, context Some("Terminal") Caused by: no action type registered for terminal::ScrollToBottom 2024-09-30T09:50:53.0926607+03:00 [ERROR] invalid binding value for keystroke shift-home, context Some("Terminal") Caused by: no action type registered for terminal::ScrollToTop 2024-09-30T09:50:53.0927163+03:00 [ERROR] invalid binding value for keystroke shift-insert, context Some("Terminal") Caused by: no action type registered for terminal::Paste 2024-09-30T09:50:53.0927717+03:00 [ERROR] invalid binding value for keystroke shift-pagedown, context Some("Terminal") Caused by: no action type registered for terminal::ScrollPageDown 2024-09-30T09:50:53.0928274+03:00 [ERROR] invalid binding value for keystroke shift-pageup, context Some("Terminal") Caused by: no action type registered for terminal::ScrollPageUp 2024-09-30T09:50:53.092906+03:00 [ERROR] invalid binding value for keystroke shift-up, context Some("Terminal") Caused by: no action type registered for terminal::ScrollLineUp 2024-09-30T09:50:53.0929648+03:00 [ERROR] invalid binding value for keystroke up, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.0930216+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-c, context Some("Terminal") Caused by: no action type registered for terminal::Copy 2024-09-30T09:50:53.0930774+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-v, context Some("Terminal") Caused by: no action type registered for terminal::Paste 2024-09-30T09:50:53.1247547+03:00 [ERROR] Error { kind: Generic("Input watch path is neither a file nor a directory."), paths: [] } 2024-09-30T09:50:53.1249252+03:00 [INFO] initializing context server client 2024-09-30T09:50:53.1250857+03:00 [INFO] Registering built-in prompt template: content_prompt 2024-09-30T09:50:53.1255103+03:00 [INFO] Registering built-in prompt template: edit_workflow 2024-09-30T09:50:53.1257758+03:00 [INFO] Registering built-in prompt template: step_resolution 2024-09-30T09:50:53.1262141+03:00 [INFO] Registering built-in prompt template: terminal_assistant_prompt 2024-09-30T09:50:53.12688+03:00 [INFO] No prompt template overrides directory found at C:\Users\maksa\AppData\Local\Zed\prompt_overrides. Using built-in prompts. 2024-09-30T09:50:53.1271584+03:00 [INFO] extensions updated. loading 5, reloading 0, unloading 0 2024-09-30T09:50:53.1309735+03:00 [ERROR] invalid binding value for keystroke alt-enter, context None Caused by: no action type registered for picker::ConfirmInput 2024-09-30T09:50:53.1310433+03:00 [ERROR] invalid binding value for keystroke ctrl-+, context None Caused by: no action type registered for zed::IncreaseBufferFontSize 2024-09-30T09:50:53.1311002+03:00 [ERROR] invalid binding value for keystroke ctrl-,, context None Caused by: no action type registered for zed::OpenSettings 2024-09-30T09:50:53.1311632+03:00 [ERROR] invalid binding value for keystroke ctrl--, context None Caused by: no action type registered for zed::DecreaseBufferFontSize 2024-09-30T09:50:53.131218+03:00 [ERROR] invalid binding value for keystroke ctrl-0, context None Caused by: no action type registered for zed::ResetBufferFontSize 2024-09-30T09:50:53.1312852+03:00 [ERROR] invalid binding value for keystroke ctrl-=, context None Caused by: no action type registered for zed::IncreaseBufferFontSize 2024-09-30T09:50:53.131345+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-enter, context None Caused by: no action type registered for picker::ConfirmInput 2024-09-30T09:50:53.1314001+03:00 [ERROR] invalid binding value for keystroke ctrl-c, context None Caused by: no action type registered for menu::Cancel 2024-09-30T09:50:53.1314549+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context None Caused by: no action type registered for menu::SecondaryConfirm 2024-09-30T09:50:53.131517+03:00 [ERROR] invalid binding value for keystroke ctrl-escape, context None Caused by: no action type registered for menu::Cancel 2024-09-30T09:50:53.1315719+03:00 [ERROR] invalid binding value for keystroke ctrl-n, context None Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.1316285+03:00 [ERROR] invalid binding value for keystroke ctrl-o, context None Caused by: no action type registered for workspace::Open 2024-09-30T09:50:53.1316954+03:00 [ERROR] invalid binding value for keystroke ctrl-p, context None Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.1317517+03:00 [ERROR] invalid binding value for keystroke ctrl-q, context None Caused by: no action type registered for zed::Quit 2024-09-30T09:50:53.1318077+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-w, context None Caused by: no action type registered for workspace::CloseWindow 2024-09-30T09:50:53.1318658+03:00 [ERROR] invalid binding value for keystroke end, context None Caused by: no action type registered for menu::SelectLast 2024-09-30T09:50:53.1319338+03:00 [ERROR] invalid binding value for keystroke enter, context None Caused by: no action type registered for menu::Confirm 2024-09-30T09:50:53.1319906+03:00 [ERROR] invalid binding value for keystroke escape, context None Caused by: no action type registered for menu::Cancel 2024-09-30T09:50:53.132045+03:00 [ERROR] invalid binding value for keystroke f11, context None Caused by: no action type registered for zed::ToggleFullScreen 2024-09-30T09:50:53.1321039+03:00 [ERROR] invalid binding value for keystroke home, context None Caused by: no action type registered for menu::SelectFirst 2024-09-30T09:50:53.1321687+03:00 [ERROR] invalid binding value for keystroke pagedown, context None Caused by: no action type registered for menu::SelectLast 2024-09-30T09:50:53.1322241+03:00 [ERROR] invalid binding value for keystroke pageup, context None Caused by: no action type registered for menu::SelectFirst 2024-09-30T09:50:53.1322921+03:00 [ERROR] invalid binding value for keystroke shift-escape, context None Caused by: no action type registered for workspace::ToggleZoom 2024-09-30T09:50:53.1323524+03:00 [ERROR] invalid binding value for keystroke shift-pagedown, context None Caused by: no action type registered for menu::SelectFirst 2024-09-30T09:50:53.1324068+03:00 [ERROR] invalid binding value for keystroke shift-pageup, context None Caused by: no action type registered for menu::SelectFirst 2024-09-30T09:50:53.1324623+03:00 [ERROR] invalid binding value for keystroke shift-tab, context None Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.1325219+03:00 [ERROR] invalid binding value for keystroke tab, context None Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.1325779+03:00 [ERROR] invalid binding value for keystroke down, context Some("Picker || menu") Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.1326332+03:00 [ERROR] invalid binding value for keystroke up, context Some("Picker || menu") Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.1326912+03:00 [ERROR] invalid binding value for keystroke left, context Some("Prompt") Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.1327495+03:00 [ERROR] invalid binding value for keystroke right, context Some("Prompt") Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.1328047+03:00 [ERROR] invalid binding value for keystroke alt-g b, context Some("Editor") Caused by: no action type registered for editor::ToggleGitBlame 2024-09-30T09:50:53.1328602+03:00 [ERROR] invalid binding value for keystroke alt-pagedown, context Some("Editor") Caused by: no action type registered for editor::PageDown 2024-09-30T09:50:53.1329273+03:00 [ERROR] invalid binding value for keystroke alt-pageup, context Some("Editor") Caused by: no action type registered for editor::PageUp 2024-09-30T09:50:53.132982+03:00 [ERROR] invalid binding value for keystroke alt-q, context Some("Editor") Caused by: no action type registered for editor::Rewrap 2024-09-30T09:50:53.1330366+03:00 [ERROR] invalid binding value for keystroke backspace, context Some("Editor") Caused by: no action type registered for editor::Backspace 2024-09-30T09:50:53.1331009+03:00 [ERROR] invalid binding value for keystroke ctrl-", context Some("Editor") Caused by: no action type registered for editor::ExpandAllHunkDiffs 2024-09-30T09:50:53.1331554+03:00 [ERROR] invalid binding value for keystroke ctrl-', context Some("Editor") Caused by: no action type registered for editor::ToggleHunkDiff 2024-09-30T09:50:53.1332139+03:00 [ERROR] invalid binding value for keystroke ctrl-;, context Some("Editor") Caused by: no action type registered for editor::ToggleLineNumbers 2024-09-30T09:50:53.1332827+03:00 [ERROR] invalid binding value for keystroke ctrl-a, context Some("Editor") Caused by: no action type registered for editor::SelectAll 2024-09-30T09:50:53.1333402+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-space, context Some("Editor") Caused by: no action type registered for editor::ShowCharacterPalette 2024-09-30T09:50:53.1334048+03:00 [ERROR] invalid binding value for keystroke ctrl-backspace, context Some("Editor") Caused by: no action type registered for editor::DeleteToPreviousWordStart 2024-09-30T09:50:53.1334596+03:00 [ERROR] invalid binding value for keystroke ctrl-delete, context Some("Editor") Caused by: no action type registered for editor::DeleteToNextWordEnd 2024-09-30T09:50:53.1335144+03:00 [ERROR] invalid binding value for keystroke ctrl-down, context Some("Editor") Caused by: no action type registered for editor::LineDown 2024-09-30T09:50:53.1335744+03:00 [ERROR] invalid binding value for keystroke ctrl-end, context Some("Editor") Caused by: no action type registered for editor::MoveToEnd 2024-09-30T09:50:53.1336351+03:00 [ERROR] invalid binding value for keystroke ctrl-home, context Some("Editor") Caused by: no action type registered for editor::MoveToBeginning 2024-09-30T09:50:53.1336901+03:00 [ERROR] invalid binding value for keystroke ctrl-i, context Some("Editor") Caused by: no action type registered for editor::ShowSignatureHelp 2024-09-30T09:50:53.1337486+03:00 [ERROR] invalid binding value for keystroke ctrl-insert, context Some("Editor") Caused by: no action type registered for editor::Copy 2024-09-30T09:50:53.1338094+03:00 [ERROR] invalid binding value for keystroke ctrl-k, context Some("Editor") Caused by: no action type registered for editor::CutToEndOfLine 2024-09-30T09:50:53.1338643+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-r, context Some("Editor") Caused by: no action type registered for editor::RevertSelectedHunks 2024-09-30T09:50:53.1339289+03:00 [ERROR] invalid binding value for keystroke ctrl-l, context Some("Editor") Caused by: no action type registered for editor::SelectLine 2024-09-30T09:50:53.1339838+03:00 [ERROR] invalid binding value for keystroke ctrl-left, context Some("Editor") Caused by: no action type registered for editor::MoveToPreviousWordStart 2024-09-30T09:50:53.1340397+03:00 [ERROR] invalid binding value for keystroke ctrl-right, context Some("Editor") Caused by: no action type registered for editor::MoveToNextWordEnd 2024-09-30T09:50:53.1341045+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-end, context Some("Editor") Caused by: no action type registered for editor::SelectToEnd 2024-09-30T09:50:53.1341607+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-home, context Some("Editor") Caused by: no action type registered for editor::SelectToBeginning 2024-09-30T09:50:53.1342155+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-i, context Some("Editor") Caused by: no action type registered for editor::Format 2024-09-30T09:50:53.1342872+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-left, context Some("Editor") Caused by: no action type registered for editor::SelectToPreviousWordStart 2024-09-30T09:50:53.1343423+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-right, context Some("Editor") Caused by: no action type registered for editor::SelectToNextWordEnd 2024-09-30T09:50:53.1343984+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-z, context Some("Editor") Caused by: no action type registered for editor::Redo 2024-09-30T09:50:53.1344532+03:00 [ERROR] invalid binding value for keystroke ctrl-up, context Some("Editor") Caused by: no action type registered for editor::LineUp 2024-09-30T09:50:53.1345144+03:00 [ERROR] invalid binding value for keystroke ctrl-y, context Some("Editor") Caused by: no action type registered for editor::Redo 2024-09-30T09:50:53.1345696+03:00 [ERROR] invalid binding value for keystroke ctrl-z, context Some("Editor") Caused by: no action type registered for editor::Undo 2024-09-30T09:50:53.1346241+03:00 [ERROR] invalid binding value for keystroke delete, context Some("Editor") Caused by: no action type registered for editor::Delete 2024-09-30T09:50:53.1346866+03:00 [ERROR] invalid binding value for keystroke down, context Some("Editor") Caused by: no action type registered for editor::MoveDown 2024-09-30T09:50:53.1347471+03:00 [ERROR] invalid binding value for keystroke end, context Some("Editor") Caused by: no action type registered for editor::MoveToEndOfLine 2024-09-30T09:50:53.1348032+03:00 [ERROR] invalid binding value for keystroke escape, context Some("Editor") Caused by: no action type registered for editor::Cancel 2024-09-30T09:50:53.1348641+03:00 [ERROR] invalid binding value for keystroke home, context Some("Editor") Caused by: no action type registered for editor::MoveToBeginningOfLine 2024-09-30T09:50:53.1349204+03:00 [ERROR] invalid binding value for keystroke left, context Some("Editor") Caused by: no action type registered for editor::MoveLeft 2024-09-30T09:50:53.1349768+03:00 [ERROR] invalid binding value for keystroke pagedown, context Some("Editor") Caused by: no action type registered for editor::MovePageDown 2024-09-30T09:50:53.1350379+03:00 [ERROR] invalid binding value for keystroke pageup, context Some("Editor") Caused by: no action type registered for editor::MovePageUp 2024-09-30T09:50:53.1350967+03:00 [ERROR] invalid binding value for keystroke right, context Some("Editor") Caused by: no action type registered for editor::MoveRight 2024-09-30T09:50:53.1351699+03:00 [ERROR] invalid binding value for keystroke shift-backspace, context Some("Editor") Caused by: no action type registered for editor::Backspace 2024-09-30T09:50:53.1352265+03:00 [ERROR] invalid binding value for keystroke shift-delete, context Some("Editor") Caused by: no action type registered for editor::Cut 2024-09-30T09:50:53.1352866+03:00 [ERROR] invalid binding value for keystroke shift-down, context Some("Editor") Caused by: no action type registered for editor::SelectDown 2024-09-30T09:50:53.1353516+03:00 [ERROR] invalid binding value for keystroke shift-end, context Some("Editor") Caused by: no action type registered for editor::SelectToEndOfLine 2024-09-30T09:50:53.1354065+03:00 [ERROR] invalid binding value for keystroke shift-home, context Some("Editor") Caused by: no action type registered for editor::SelectToBeginningOfLine 2024-09-30T09:50:53.1354615+03:00 [ERROR] invalid binding value for keystroke shift-insert, context Some("Editor") Caused by: no action type registered for editor::Paste 2024-09-30T09:50:53.1355292+03:00 [ERROR] invalid binding value for keystroke shift-left, context Some("Editor") Caused by: no action type registered for editor::SelectLeft 2024-09-30T09:50:53.1355863+03:00 [ERROR] invalid binding value for keystroke shift-pagedown, context Some("Editor") Caused by: no action type registered for editor::SelectPageDown 2024-09-30T09:50:53.1356424+03:00 [ERROR] invalid binding value for keystroke shift-pageup, context Some("Editor") Caused by: no action type registered for editor::SelectPageUp 2024-09-30T09:50:53.1357031+03:00 [ERROR] invalid binding value for keystroke shift-right, context Some("Editor") Caused by: no action type registered for editor::SelectRight 2024-09-30T09:50:53.1357582+03:00 [ERROR] invalid binding value for keystroke shift-tab, context Some("Editor") Caused by: no action type registered for editor::TabPrev 2024-09-30T09:50:53.1358145+03:00 [ERROR] invalid binding value for keystroke shift-up, context Some("Editor") Caused by: no action type registered for editor::SelectUp 2024-09-30T09:50:53.135874+03:00 [ERROR] invalid binding value for keystroke tab, context Some("Editor") Caused by: no action type registered for editor::Tab 2024-09-30T09:50:53.1359301+03:00 [ERROR] invalid binding value for keystroke up, context Some("Editor") Caused by: no action type registered for editor::MoveUp 2024-09-30T09:50:53.1359854+03:00 [ERROR] invalid binding value for keystroke ctrl-c, context Some("Editor") Caused by: no action type registered for editor::Copy 2024-09-30T09:50:53.1360417+03:00 [ERROR] invalid binding value for keystroke ctrl-v, context Some("Editor") Caused by: no action type registered for editor::Paste 2024-09-30T09:50:53.1361035+03:00 [ERROR] invalid binding value for keystroke ctrl-x, context Some("Editor") Caused by: no action type registered for editor::Cut 2024-09-30T09:50:53.1361582+03:00 [ERROR] invalid binding value for keystroke alt-z, context Some("Editor && mode == full") Caused by: no action type registered for editor::ToggleSoftWrap 2024-09-30T09:50:53.1362131+03:00 [ERROR] invalid binding value for keystroke ctrl-<, context Some("Editor && mode == full") Caused by: no action type registered for assistant::InsertIntoEditor 2024-09-30T09:50:53.1362862+03:00 [ERROR] invalid binding value for keystroke ctrl->, context Some("Editor && mode == full") Caused by: no action type registered for assistant::QuoteSelection 2024-09-30T09:50:53.1363728+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-e, context Some("Editor && mode == full") Caused by: no action type registered for editor::SelectEnclosingSymbol 2024-09-30T09:50:53.1364279+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::NewlineAbove 2024-09-30T09:50:53.1364869+03:00 [ERROR] invalid binding value for keystroke ctrl-f, context Some("Editor && mode == full") Caused by: no action type registered for buffer_search::Deploy 2024-09-30T09:50:53.1365418+03:00 [ERROR] invalid binding value for keystroke ctrl-h, context Some("Editor && mode == full") Caused by: no action type registered for buffer_search::Deploy 2024-09-30T09:50:53.1366+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::NewlineBelow 2024-09-30T09:50:53.1366547+03:00 [ERROR] invalid binding value for keystroke enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::Newline 2024-09-30T09:50:53.136709+03:00 [ERROR] invalid binding value for keystroke shift-enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::Newline 2024-09-30T09:50:53.1367683+03:00 [ERROR] invalid binding value for keystroke alt-[, context Some("Editor && mode == full && inline_completion") Caused by: no action type registered for editor::PreviousInlineCompletion 2024-09-30T09:50:53.1368234+03:00 [ERROR] invalid binding value for keystroke alt-], context Some("Editor && mode == full && inline_completion") Caused by: no action type registered for editor::NextInlineCompletion 2024-09-30T09:50:53.1368801+03:00 [ERROR] invalid binding value for keystroke ctrl-right, context Some("Editor && mode == full && inline_completion") Caused by: no action type registered for editor::AcceptPartialInlineCompletion 2024-09-30T09:50:53.1369425+03:00 [ERROR] invalid binding value for keystroke alt-\, context Some("Editor && !inline_completion") Caused by: no action type registered for editor::ShowInlineCompletion 2024-09-30T09:50:53.1369975+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("Editor && mode == auto_height") Caused by: no action type registered for editor::Newline 2024-09-30T09:50:53.1370527+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-enter, context Some("Editor && mode == auto_height") Caused by: no action type registered for editor::NewlineBelow 2024-09-30T09:50:53.1371168+03:00 [ERROR] invalid binding value for keystroke shift-enter, context Some("Editor && mode == auto_height") Caused by: no action type registered for editor::Newline 2024-09-30T09:50:53.1371715+03:00 [ERROR] invalid binding value for keystroke ctrl-c, context Some("Markdown") Caused by: no action type registered for markdown::Copy 2024-09-30T09:50:53.1372264+03:00 [ERROR] invalid binding value for keystroke alt-m, context Some("AssistantPanel") Caused by: no action type registered for assistant::ToggleModelSelector 2024-09-30T09:50:53.1373039+03:00 [ERROR] invalid binding value for keystroke ctrl-g, context Some("AssistantPanel") Caused by: no action type registered for search::SelectNextMatch 2024-09-30T09:50:53.1373596+03:00 [ERROR] invalid binding value for keystroke ctrl-k c, context Some("AssistantPanel") Caused by: no action type registered for assistant::CopyCode 2024-09-30T09:50:53.1374143+03:00 [ERROR] invalid binding value for keystroke ctrl-k h, context Some("AssistantPanel") Caused by: no action type registered for assistant::DeployHistory 2024-09-30T09:50:53.1374778+03:00 [ERROR] invalid binding value for keystroke ctrl-k l, context Some("AssistantPanel") Caused by: no action type registered for assistant::DeployPromptLibrary 2024-09-30T09:50:53.1375322+03:00 [ERROR] invalid binding value for keystroke ctrl-n, context Some("AssistantPanel") Caused by: no action type registered for assistant::NewContext 2024-09-30T09:50:53.1375866+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-g, context Some("AssistantPanel") Caused by: no action type registered for search::SelectPrevMatch 2024-09-30T09:50:53.1376494+03:00 [ERROR] invalid binding value for keystroke ctrl-n, context Some("PromptLibrary") Caused by: no action type registered for prompt_library::NewPrompt 2024-09-30T09:50:53.1377041+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-s, context Some("PromptLibrary") Caused by: no action type registered for prompt_library::ToggleDefaultPrompt 2024-09-30T09:50:53.1377676+03:00 [ERROR] invalid binding value for keystroke alt-enter, context Some("BufferSearchBar") Caused by: no action type registered for search::SelectAllMatches 2024-09-30T09:50:53.1378469+03:00 [ERROR] invalid binding value for keystroke ctrl-f, context Some("BufferSearchBar") Caused by: no action type registered for search::FocusSearch 2024-09-30T09:50:53.1379065+03:00 [ERROR] invalid binding value for keystroke ctrl-h, context Some("BufferSearchBar") Caused by: no action type registered for search::ToggleReplace 2024-09-30T09:50:53.1379613+03:00 [ERROR] invalid binding value for keystroke ctrl-l, context Some("BufferSearchBar") Caused by: no action type registered for search::ToggleSelection 2024-09-30T09:50:53.1380162+03:00 [ERROR] invalid binding value for keystroke enter, context Some("BufferSearchBar") Caused by: no action type registered for search::SelectNextMatch 2024-09-30T09:50:53.1380776+03:00 [ERROR] invalid binding value for keystroke escape, context Some("BufferSearchBar") Caused by: no action type registered for buffer_search::Dismiss 2024-09-30T09:50:53.1381319+03:00 [ERROR] invalid binding value for keystroke shift-enter, context Some("BufferSearchBar") Caused by: no action type registered for search::SelectPrevMatch 2024-09-30T09:50:53.1381866+03:00 [ERROR] invalid binding value for keystroke tab, context Some("BufferSearchBar") Caused by: no action type registered for buffer_search::FocusEditor 2024-09-30T09:50:53.1382429+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("BufferSearchBar && in_replace") Caused by: no action type registered for search::ReplaceAll 2024-09-30T09:50:53.1383044+03:00 [ERROR] invalid binding value for keystroke enter, context Some("BufferSearchBar && in_replace") Caused by: no action type registered for search::ReplaceNext 2024-09-30T09:50:53.1383592+03:00 [ERROR] invalid binding value for keystroke down, context Some("BufferSearchBar && !in_replace > Editor") Caused by: no action type registered for search::NextHistoryQuery 2024-09-30T09:50:53.1384143+03:00 [ERROR] invalid binding value for keystroke up, context Some("BufferSearchBar && !in_replace > Editor") Caused by: no action type registered for search::PreviousHistoryQuery 2024-09-30T09:50:53.1384747+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-g, context Some("ProjectSearchBar") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.1385368+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-x, context Some("ProjectSearchBar") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.1385916+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f, context Some("ProjectSearchBar") Caused by: no action type registered for search::FocusSearch 2024-09-30T09:50:53.1386464+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-h, context Some("ProjectSearchBar") Caused by: no action type registered for search::ToggleReplace 2024-09-30T09:50:53.1387093+03:00 [ERROR] invalid binding value for keystroke escape, context Some("ProjectSearchBar") Caused by: no action type registered for project_search::ToggleFocus 2024-09-30T09:50:53.1387703+03:00 [ERROR] invalid binding value for keystroke down, context Some("ProjectSearchBar > Editor") Caused by: no action type registered for search::NextHistoryQuery 2024-09-30T09:50:53.1388256+03:00 [ERROR] invalid binding value for keystroke up, context Some("ProjectSearchBar > Editor") Caused by: no action type registered for search::PreviousHistoryQuery 2024-09-30T09:50:53.1388812+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-enter, context Some("ProjectSearchBar && in_replace > Editor") Caused by: no action type registered for search::ReplaceAll 2024-09-30T09:50:53.1389425+03:00 [ERROR] invalid binding value for keystroke enter, context Some("ProjectSearchBar && in_replace > Editor") Caused by: no action type registered for search::ReplaceNext 2024-09-30T09:50:53.1389971+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-g, context Some("ProjectSearchView") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.1390523+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-x, context Some("ProjectSearchView") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.1391074+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-h, context Some("ProjectSearchView") Caused by: no action type registered for search::ToggleReplace 2024-09-30T09:50:53.1391633+03:00 [ERROR] invalid binding value for keystroke escape, context Some("ProjectSearchView") Caused by: no action type registered for project_search::ToggleFocus 2024-09-30T09:50:53.1392234+03:00 [ERROR] invalid binding value for keystroke alt-c, context Some("Pane") Caused by: no action type registered for search::ToggleCaseSensitive 2024-09-30T09:50:53.1392782+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-f, context Some("Pane") Caused by: no action type registered for project_search::ToggleFilters 2024-09-30T09:50:53.1393327+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-shift-w, context Some("Pane") Caused by: no action type registered for workspace::CloseInactiveTabsAndPanes 2024-09-30T09:50:53.1393888+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-t, context Some("Pane") Caused by: no action type registered for pane::CloseInactiveItems 2024-09-30T09:50:53.1394457+03:00 [ERROR] invalid binding value for keystroke alt-enter, context Some("Pane") Caused by: no action type registered for search::SelectAllMatches 2024-09-30T09:50:53.1395007+03:00 [ERROR] invalid binding value for keystroke alt-r, context Some("Pane") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.1395628+03:00 [ERROR] invalid binding value for keystroke alt-w, context Some("Pane") Caused by: no action type registered for search::ToggleWholeWord 2024-09-30T09:50:53.1396172+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-g, context Some("Pane") Caused by: no action type registered for search::SelectNextMatch 2024-09-30T09:50:53.1396715+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-g, context Some("Pane") Caused by: no action type registered for search::SelectPrevMatch 2024-09-30T09:50:53.1397299+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-h, context Some("Pane") Caused by: no action type registered for search::ToggleReplace 2024-09-30T09:50:53.1397862+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-l, context Some("Pane") Caused by: no action type registered for search::ToggleSelection 2024-09-30T09:50:53.1398421+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-r, context Some("Pane") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.1398989+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-x, context Some("Pane") Caused by: no action type registered for search::ToggleRegex 2024-09-30T09:50:53.1399538+03:00 [ERROR] invalid binding value for keystroke ctrl-f4, context Some("Pane") Caused by: no action type registered for pane::CloseActiveItem 2024-09-30T09:50:53.1400132+03:00 [ERROR] invalid binding value for keystroke ctrl-k shift-enter, context Some("Pane") Caused by: no action type registered for pane::TogglePinTab 2024-09-30T09:50:53.1400679+03:00 [ERROR] invalid binding value for keystroke ctrl-k u, context Some("Pane") Caused by: no action type registered for pane::CloseCleanItems 2024-09-30T09:50:53.1401251+03:00 [ERROR] invalid binding value for keystroke ctrl-k w, context Some("Pane") Caused by: no action type registered for pane::CloseAllItems 2024-09-30T09:50:53.140182+03:00 [ERROR] invalid binding value for keystroke ctrl-pagedown, context Some("Pane") Caused by: no action type registered for pane::ActivateNextItem 2024-09-30T09:50:53.1402367+03:00 [ERROR] invalid binding value for keystroke ctrl-pageup, context Some("Pane") Caused by: no action type registered for pane::ActivatePrevItem 2024-09-30T09:50:53.1403045+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f, context Some("Pane") Caused by: no action type registered for project_search::ToggleFocus 2024-09-30T09:50:53.1403593+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-pagedown, context Some("Pane") Caused by: no action type registered for pane::SwapItemRight 2024-09-30T09:50:53.1404154+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-pageup, context Some("Pane") Caused by: no action type registered for pane::SwapItemLeft 2024-09-30T09:50:53.1404725+03:00 [ERROR] invalid binding value for keystroke ctrl-w, context Some("Pane") Caused by: no action type registered for pane::CloseActiveItem 2024-09-30T09:50:53.1405291+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-f12, context Some("Editor") Caused by: no action type registered for editor::GoToTypeDefinitionSplit 2024-09-30T09:50:53.1405847+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-r, context Some("Editor") Caused by: no action type registered for editor::RevealInFileManager 2024-09-30T09:50:53.1406456+03:00 [ERROR] invalid binding value for keystroke alt-down, context Some("Editor") Caused by: no action type registered for editor::MoveLineDown 2024-09-30T09:50:53.1407003+03:00 [ERROR] invalid binding value for keystroke alt-f12, context Some("Editor") Caused by: no action type registered for editor::GoToDefinitionSplit 2024-09-30T09:50:53.140757+03:00 [ERROR] invalid binding value for keystroke alt-shift-f12, context Some("Editor") Caused by: no action type registered for editor::FindAllReferences 2024-09-30T09:50:53.1408151+03:00 [ERROR] invalid binding value for keystroke alt-shift-left, context Some("Editor") Caused by: no action type registered for editor::SelectSmallerSyntaxNode 2024-09-30T09:50:53.1408696+03:00 [ERROR] invalid binding value for keystroke alt-shift-right, context Some("Editor") Caused by: no action type registered for editor::SelectLargerSyntaxNode 2024-09-30T09:50:53.1409307+03:00 [ERROR] invalid binding value for keystroke alt-up, context Some("Editor") Caused by: no action type registered for editor::MoveLineUp 2024-09-30T09:50:53.140985+03:00 [ERROR] invalid binding value for keystroke ctrl-., context Some("Editor") Caused by: no action type registered for editor::ToggleCodeActions 2024-09-30T09:50:53.141041+03:00 [ERROR] invalid binding value for keystroke ctrl-/, context Some("Editor") Caused by: no action type registered for editor::ToggleComments 2024-09-30T09:50:53.1411024+03:00 [ERROR] invalid binding value for keystroke ctrl-[, context Some("Editor") Caused by: no action type registered for editor::Outdent 2024-09-30T09:50:53.1411567+03:00 [ERROR] invalid binding value for keystroke ctrl-\, context Some("Editor") Caused by: no action type registered for pane::SplitRight 2024-09-30T09:50:53.1412114+03:00 [ERROR] invalid binding value for keystroke ctrl-], context Some("Editor") Caused by: no action type registered for editor::Indent 2024-09-30T09:50:53.1412762+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-c, context Some("Editor") Caused by: no action type registered for editor::DisplayCursorNames 2024-09-30T09:50:53.1413338+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-down, context Some("Editor") Caused by: no action type registered for editor::DuplicateLineDown 2024-09-30T09:50:53.1413949+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-up, context Some("Editor") Caused by: no action type registered for editor::DuplicateLineUp 2024-09-30T09:50:53.1414496+03:00 [ERROR] invalid binding value for keystroke ctrl-d, context Some("Editor") Caused by: no action type registered for editor::SelectNext 2024-09-30T09:50:53.1415046+03:00 [ERROR] invalid binding value for keystroke ctrl-f12, context Some("Editor") Caused by: no action type registered for editor::GoToTypeDefinition 2024-09-30T09:50:53.1415639+03:00 [ERROR] invalid binding value for keystroke ctrl-f2, context Some("Editor") Caused by: no action type registered for editor::SelectAllMatches 2024-09-30T09:50:53.1416188+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-d, context Some("Editor") Caused by: no action type registered for editor::SelectNext 2024-09-30T09:50:53.1416786+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-i, context Some("Editor") Caused by: no action type registered for editor::Hover 2024-09-30T09:50:53.1417348+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-shift-d, context Some("Editor") Caused by: no action type registered for editor::SelectPrevious 2024-09-30T09:50:53.1417896+03:00 [ERROR] invalid binding value for keystroke ctrl-k p, context Some("Editor") Caused by: no action type registered for editor::CopyPath 2024-09-30T09:50:53.1418503+03:00 [ERROR] invalid binding value for keystroke ctrl-k r, context Some("Editor") Caused by: no action type registered for editor::RevealInFileManager 2024-09-30T09:50:53.1419051+03:00 [ERROR] invalid binding value for keystroke ctrl-k v, context Some("Editor") Caused by: no action type registered for markdown::OpenPreviewToTheSide 2024-09-30T09:50:53.1419622+03:00 [ERROR] invalid binding value for keystroke ctrl-m, context Some("Editor") Caused by: no action type registered for editor::MoveToEnclosingBracket 2024-09-30T09:50:53.1420204+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-[, context Some("Editor") Caused by: no action type registered for editor::Fold 2024-09-30T09:50:53.1420749+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-\, context Some("Editor") Caused by: no action type registered for editor::MoveToEnclosingBracket 2024-09-30T09:50:53.1421357+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-], context Some("Editor") Caused by: no action type registered for editor::UnfoldLines 2024-09-30T09:50:53.14219+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-down, context Some("Editor") Caused by: no action type registered for editor::SelectNext 2024-09-30T09:50:53.1422473+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f10, context Some("Editor") Caused by: no action type registered for editor::GoToDefinitionSplit 2024-09-30T09:50:53.1423156+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-k, context Some("Editor") Caused by: no action type registered for editor::DeleteLine 2024-09-30T09:50:53.1423705+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-l, context Some("Editor") Caused by: no action type registered for editor::SelectAllMatches 2024-09-30T09:50:53.1424314+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-u, context Some("Editor") Caused by: no action type registered for editor::RedoSelection 2024-09-30T09:50:53.1424865+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-up, context Some("Editor") Caused by: no action type registered for editor::SelectPrevious 2024-09-30T09:50:53.1425413+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-v, context Some("Editor") Caused by: no action type registered for markdown::OpenPreview 2024-09-30T09:50:53.1426005+03:00 [ERROR] invalid binding value for keystroke ctrl-space, context Some("Editor") Caused by: no action type registered for editor::ShowCompletions 2024-09-30T09:50:53.1426549+03:00 [ERROR] invalid binding value for keystroke ctrl-u, context Some("Editor") Caused by: no action type registered for editor::UndoSelection 2024-09-30T09:50:53.1427106+03:00 [ERROR] invalid binding value for keystroke f12, context Some("Editor") Caused by: no action type registered for editor::GoToDefinition 2024-09-30T09:50:53.1427687+03:00 [ERROR] invalid binding value for keystroke f2, context Some("Editor") Caused by: no action type registered for editor::Rename 2024-09-30T09:50:53.1428232+03:00 [ERROR] invalid binding value for keystroke f8, context Some("Editor") Caused by: no action type registered for editor::GoToDiagnostic 2024-09-30T09:50:53.1428776+03:00 [ERROR] invalid binding value for keystroke shift-alt-down, context Some("Editor") Caused by: no action type registered for editor::AddSelectionBelow 2024-09-30T09:50:53.1429318+03:00 [ERROR] invalid binding value for keystroke shift-alt-up, context Some("Editor") Caused by: no action type registered for editor::AddSelectionAbove 2024-09-30T09:50:53.1429916+03:00 [ERROR] invalid binding value for keystroke shift-f12, context Some("Editor") Caused by: no action type registered for editor::GoToImplementation 2024-09-30T09:50:53.1430462+03:00 [ERROR] invalid binding value for keystroke shift-f8, context Some("Editor") Caused by: no action type registered for editor::GoToPrevDiagnostic 2024-09-30T09:50:53.1431014+03:00 [ERROR] invalid binding value for keystroke ctrl-g, context Some("Editor && mode == full") Caused by: no action type registered for go_to_line::Toggle 2024-09-30T09:50:53.1431644+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-o, context Some("Editor && mode == full") Caused by: no action type registered for outline::Toggle 2024-09-30T09:50:53.1432196+03:00 [ERROR] invalid binding value for keystroke alt-0, context Some("Pane") Caused by: no action type registered for pane::ActivateLastItem 2024-09-30T09:50:53.1432872+03:00 [ERROR] invalid binding value for keystroke alt-1, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.1433436+03:00 [ERROR] invalid binding value for keystroke alt-2, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.1433993+03:00 [ERROR] invalid binding value for keystroke alt-3, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.1434618+03:00 [ERROR] invalid binding value for keystroke alt-4, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.1435164+03:00 [ERROR] invalid binding value for keystroke alt-5, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.1435716+03:00 [ERROR] invalid binding value for keystroke alt-6, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.1436339+03:00 [ERROR] invalid binding value for keystroke alt-7, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.1436889+03:00 [ERROR] invalid binding value for keystroke alt-8, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.1437497+03:00 [ERROR] invalid binding value for keystroke alt-9, context Some("Pane") Caused by: no action type registered for pane::ActivateItem 2024-09-30T09:50:53.1438054+03:00 [ERROR] invalid binding value for keystroke ctrl-alt--, context Some("Pane") Caused by: no action type registered for pane::GoBack 2024-09-30T09:50:53.1438595+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-_, context Some("Pane") Caused by: no action type registered for pane::GoForward 2024-09-30T09:50:53.1439185+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f, context Some("Pane") Caused by: no action type registered for project_search::ToggleFocus 2024-09-30T09:50:53.143973+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-t, context Some("Pane") Caused by: no action type registered for pane::ReopenClosedItem 2024-09-30T09:50:53.1440285+03:00 [ERROR] invalid binding value for keystroke f3, context Some("Pane") Caused by: no action type registered for search::SelectNextMatch 2024-09-30T09:50:53.1440889+03:00 [ERROR] invalid binding value for keystroke shift-f3, context Some("Pane") Caused by: no action type registered for search::SelectPrevMatch 2024-09-30T09:50:53.144145+03:00 [ERROR] invalid binding value for keystroke alt-1, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.1441997+03:00 [ERROR] invalid binding value for keystroke alt-2, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.144262+03:00 [ERROR] invalid binding value for keystroke alt-3, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.1443248+03:00 [ERROR] invalid binding value for keystroke alt-4, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.1443846+03:00 [ERROR] invalid binding value for keystroke alt-5, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.144442+03:00 [ERROR] invalid binding value for keystroke alt-6, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.1444968+03:00 [ERROR] invalid binding value for keystroke alt-7, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.1445591+03:00 [ERROR] invalid binding value for keystroke alt-8, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.1446136+03:00 [ERROR] invalid binding value for keystroke alt-9, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePane 2024-09-30T09:50:53.1446677+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-o, context Some("Workspace") Caused by: no action type registered for projects::OpenRecent 2024-09-30T09:50:53.1447301+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-shift-b, context Some("Workspace") Caused by: no action type registered for branches::OpenRecent 2024-09-30T09:50:53.1447845+03:00 [ERROR] invalid binding value for keystroke alt-shift-t, context Some("Workspace") Caused by: no action type registered for task::Spawn 2024-09-30T09:50:53.144839+03:00 [ERROR] invalid binding value for keystroke alt-t, context Some("Workspace") Caused by: no action type registered for task::Rerun 2024-09-30T09:50:53.144901+03:00 [ERROR] invalid binding value for keystroke ctrl-?, context Some("Workspace") Caused by: no action type registered for assistant::ToggleFocus 2024-09-30T09:50:53.1449569+03:00 [ERROR] invalid binding value for keystroke ctrl-`, context Some("Workspace") Caused by: no action type registered for terminal_panel::ToggleFocus 2024-09-30T09:50:53.1450125+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-b, context Some("Workspace") Caused by: no action type registered for workspace::ToggleRightDock 2024-09-30T09:50:53.1450732+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-s, context Some("Workspace") Caused by: no action type registered for workspace::SaveAll 2024-09-30T09:50:53.1451276+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-y, context Some("Workspace") Caused by: no action type registered for workspace::CloseAllDocks 2024-09-30T09:50:53.1451909+03:00 [ERROR] invalid binding value for keystroke ctrl-b, context Some("Workspace") Caused by: no action type registered for workspace::ToggleLeftDock 2024-09-30T09:50:53.1452449+03:00 [ERROR] invalid binding value for keystroke ctrl-e, context Some("Workspace") Caused by: no action type registered for file_finder::Toggle 2024-09-30T09:50:53.1452992+03:00 [ERROR] invalid binding value for keystroke ctrl-j, context Some("Workspace") Caused by: no action type registered for workspace::ToggleBottomDock 2024-09-30T09:50:53.1453623+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-down, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePaneInDirection 2024-09-30T09:50:53.1454169+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-left, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePaneInDirection 2024-09-30T09:50:53.1454729+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-right, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePaneInDirection 2024-09-30T09:50:53.1455346+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-s, context Some("Workspace") Caused by: no action type registered for zed::OpenKeymap 2024-09-30T09:50:53.1455886+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-t, context Some("Workspace") Caused by: no action type registered for theme_selector::Toggle 2024-09-30T09:50:53.1456434+03:00 [ERROR] invalid binding value for keystroke ctrl-k ctrl-up, context Some("Workspace") Caused by: no action type registered for workspace::ActivatePaneInDirection 2024-09-30T09:50:53.1457054+03:00 [ERROR] invalid binding value for keystroke ctrl-k m, context Some("Workspace") Caused by: no action type registered for language_selector::Toggle 2024-09-30T09:50:53.1457595+03:00 [ERROR] invalid binding value for keystroke ctrl-k s, context Some("Workspace") Caused by: no action type registered for workspace::SaveWithoutFormat 2024-09-30T09:50:53.1458288+03:00 [ERROR] invalid binding value for keystroke ctrl-k shift-down, context Some("Workspace") Caused by: no action type registered for workspace::SwapPaneInDirection 2024-09-30T09:50:53.1458886+03:00 [ERROR] invalid binding value for keystroke ctrl-k shift-left, context Some("Workspace") Caused by: no action type registered for workspace::SwapPaneInDirection 2024-09-30T09:50:53.1459432+03:00 [ERROR] invalid binding value for keystroke ctrl-k shift-right, context Some("Workspace") Caused by: no action type registered for workspace::SwapPaneInDirection 2024-09-30T09:50:53.1460004+03:00 [ERROR] invalid binding value for keystroke ctrl-k shift-up, context Some("Workspace") Caused by: no action type registered for workspace::SwapPaneInDirection 2024-09-30T09:50:53.1460592+03:00 [ERROR] invalid binding value for keystroke ctrl-n, context Some("Workspace") Caused by: no action type registered for workspace::NewFile 2024-09-30T09:50:53.1461133+03:00 [ERROR] invalid binding value for keystroke ctrl-p, context Some("Workspace") Caused by: no action type registered for file_finder::Toggle 2024-09-30T09:50:53.1461674+03:00 [ERROR] invalid binding value for keystroke ctrl-s, context Some("Workspace") Caused by: no action type registered for workspace::Save 2024-09-30T09:50:53.1462261+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-b, context Some("Workspace") Caused by: no action type registered for outline_panel::ToggleFocus 2024-09-30T09:50:53.1462803+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-e, context Some("Workspace") Caused by: no action type registered for project_panel::ToggleFocus 2024-09-30T09:50:53.1463369+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f, context Some("Workspace") Caused by: no action type registered for pane::DeploySearch 2024-09-30T09:50:53.1463959+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-h, context Some("Workspace") Caused by: no action type registered for pane::DeploySearch 2024-09-30T09:50:53.1464502+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-m, context Some("Workspace") Caused by: no action type registered for diagnostics::Deploy 2024-09-30T09:50:53.1465119+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-n, context Some("Workspace") Caused by: no action type registered for workspace::NewWindow 2024-09-30T09:50:53.1465661+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-p, context Some("Workspace") Caused by: no action type registered for command_palette::Toggle 2024-09-30T09:50:53.1466202+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-s, context Some("Workspace") Caused by: no action type registered for workspace::SaveAs 2024-09-30T09:50:53.1466844+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-tab, context Some("Workspace") Caused by: no action type registered for tab_switcher::Toggle 2024-09-30T09:50:53.1467388+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-x, context Some("Workspace") Caused by: no action type registered for zed::Extensions 2024-09-30T09:50:53.1467992+03:00 [ERROR] invalid binding value for keystroke ctrl-t, context Some("Workspace") Caused by: no action type registered for project_symbols::Toggle 2024-09-30T09:50:53.1468574+03:00 [ERROR] invalid binding value for keystroke ctrl-tab, context Some("Workspace") Caused by: no action type registered for tab_switcher::Toggle 2024-09-30T09:50:53.1469165+03:00 [ERROR] invalid binding value for keystroke ctrl-~, context Some("Workspace") Caused by: no action type registered for workspace::NewTerminal 2024-09-30T09:50:53.146971+03:00 [ERROR] invalid binding value for keystroke escape, context Some("Workspace") Caused by: no action type registered for workspace::Unfollow 2024-09-30T09:50:53.1470255+03:00 [ERROR] invalid binding value for keystroke f1, context Some("Workspace") Caused by: no action type registered for command_palette::Toggle 2024-09-30T09:50:53.1470891+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-backspace, context Some("Editor") Caused by: no action type registered for editor::DeleteToPreviousSubwordStart 2024-09-30T09:50:53.1471438+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-d, context Some("Editor") Caused by: no action type registered for editor::DeleteToNextSubwordEnd 2024-09-30T09:50:53.147198+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-delete, context Some("Editor") Caused by: no action type registered for editor::DeleteToNextSubwordEnd 2024-09-30T09:50:53.1472608+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-f, context Some("Editor") Caused by: no action type registered for editor::MoveToNextSubwordEnd 2024-09-30T09:50:53.1473152+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-h, context Some("Editor") Caused by: no action type registered for editor::DeleteToPreviousSubwordStart 2024-09-30T09:50:53.1473695+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-left, context Some("Editor") Caused by: no action type registered for editor::MoveToPreviousSubwordStart 2024-09-30T09:50:53.1474246+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-right, context Some("Editor") Caused by: no action type registered for editor::MoveToNextSubwordEnd 2024-09-30T09:50:53.1474823+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-b, context Some("Editor") Caused by: no action type registered for editor::SelectToPreviousSubwordStart 2024-09-30T09:50:53.1475423+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-f, context Some("Editor") Caused by: no action type registered for editor::SelectToNextSubwordEnd 2024-09-30T09:50:53.1475966+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-left, context Some("Editor") Caused by: no action type registered for editor::SelectToPreviousSubwordStart 2024-09-30T09:50:53.1476509+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-right, context Some("Editor") Caused by: no action type registered for editor::SelectToNextSubwordEnd 2024-09-30T09:50:53.1477135+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-d, context Some("Editor") Caused by: no action type registered for editor::DuplicateLineDown 2024-09-30T09:50:53.147768+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-j, context Some("Editor") Caused by: no action type registered for editor::JoinLines 2024-09-30T09:50:53.1478314+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-k, context Some("Editor") Caused by: no action type registered for editor::DeleteLine 2024-09-30T09:50:53.1478899+03:00 [ERROR] invalid binding value for keystroke ctrl-k down, context Some("Pane") Caused by: no action type registered for pane::SplitDown 2024-09-30T09:50:53.1479505+03:00 [ERROR] invalid binding value for keystroke ctrl-k left, context Some("Pane") Caused by: no action type registered for pane::SplitLeft 2024-09-30T09:50:53.1480051+03:00 [ERROR] invalid binding value for keystroke ctrl-k right, context Some("Pane") Caused by: no action type registered for pane::SplitRight 2024-09-30T09:50:53.1480594+03:00 [ERROR] invalid binding value for keystroke ctrl-k up, context Some("Pane") Caused by: no action type registered for pane::SplitUp 2024-09-30T09:50:53.1481223+03:00 [ERROR] invalid binding value for keystroke enter, context Some("Editor && renaming") Caused by: no action type registered for editor::ConfirmRename 2024-09-30T09:50:53.1481772+03:00 [ERROR] invalid binding value for keystroke enter, context Some("Editor && showing_completions") Caused by: no action type registered for editor::ConfirmCompletion 2024-09-30T09:50:53.1482316+03:00 [ERROR] invalid binding value for keystroke tab, context Some("Editor && showing_completions") Caused by: no action type registered for editor::ComposeCompletion 2024-09-30T09:50:53.1482941+03:00 [ERROR] invalid binding value for keystroke tab, context Some("Editor && inline_completion && !showing_completions") Caused by: no action type registered for editor::AcceptInlineCompletion 2024-09-30T09:50:53.1483491+03:00 [ERROR] invalid binding value for keystroke enter, context Some("Editor && showing_code_actions") Caused by: no action type registered for editor::ConfirmCodeAction 2024-09-30T09:50:53.1484038+03:00 [ERROR] invalid binding value for keystroke ctrl-n, context Some("Editor && (showing_code_actions || showing_completions)") Caused by: no action type registered for editor::ContextMenuNext 2024-09-30T09:50:53.1484635+03:00 [ERROR] invalid binding value for keystroke ctrl-p, context Some("Editor && (showing_code_actions || showing_completions)") Caused by: no action type registered for editor::ContextMenuPrev 2024-09-30T09:50:53.1485218+03:00 [ERROR] invalid binding value for keystroke down, context Some("Editor && (showing_code_actions || showing_completions)") Caused by: no action type registered for editor::ContextMenuNext 2024-09-30T09:50:53.1485764+03:00 [ERROR] invalid binding value for keystroke pagedown, context Some("Editor && (showing_code_actions || showing_completions)") Caused by: no action type registered for editor::ContextMenuLast 2024-09-30T09:50:53.1486732+03:00 [ERROR] invalid binding value for keystroke pageup, context Some("Editor && (showing_code_actions || showing_completions)") Caused by: no action type registered for editor::ContextMenuFirst 2024-09-30T09:50:53.1487283+03:00 [ERROR] invalid binding value for keystroke up, context Some("Editor && (showing_code_actions || showing_completions)") Caused by: no action type registered for editor::ContextMenuPrev 2024-09-30T09:50:53.148786+03:00 [ERROR] invalid binding value for keystroke ctrl-:, context None Caused by: no action type registered for editor::ToggleInlayHints 2024-09-30T09:50:53.1488565+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-i, context None Caused by: no action type registered for zed::DebugElements 2024-09-30T09:50:53.1489116+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-shift-f, context None Caused by: no action type registered for workspace::FollowNextCollaborator 2024-09-30T09:50:53.148975+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-c, context Some("!Terminal") Caused by: no action type registered for collab_panel::ToggleFocus 2024-09-30T09:50:53.1490295+03:00 [ERROR] invalid binding value for keystroke alt-enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::OpenExcerpts 2024-09-30T09:50:53.1490862+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("Editor && mode == full") Caused by: no action type registered for assistant::InlineAssist 2024-09-30T09:50:53.1491465+03:00 [ERROR] invalid binding value for keystroke ctrl-f8, context Some("Editor && mode == full") Caused by: no action type registered for editor::GoToHunk 2024-09-30T09:50:53.1492009+03:00 [ERROR] invalid binding value for keystroke ctrl-k enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::OpenExcerptsSplit 2024-09-30T09:50:53.149255+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f8, context Some("Editor && mode == full") Caused by: no action type registered for editor::GoToPrevHunk 2024-09-30T09:50:53.149317+03:00 [ERROR] invalid binding value for keystroke shift-enter, context Some("Editor && mode == full") Caused by: no action type registered for editor::ExpandExcerpts 2024-09-30T09:50:53.1493715+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-enter, context Some("Editor && jupyter && !ContextEditor") Caused by: no action type registered for repl::RunInPlace 2024-09-30T09:50:53.149433+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-enter, context Some("Editor && jupyter && !ContextEditor") Caused by: no action type registered for repl::Run 2024-09-30T09:50:53.1494875+03:00 [ERROR] invalid binding value for keystroke alt-enter, context Some("ContextEditor > Editor") Caused by: no action type registered for editor::Newline 2024-09-30T09:50:53.1495417+03:00 [ERROR] invalid binding value for keystroke ctrl-<, context Some("ContextEditor > Editor") Caused by: no action type registered for assistant::InsertIntoEditor 2024-09-30T09:50:53.1496029+03:00 [ERROR] invalid binding value for keystroke ctrl->, context Some("ContextEditor > Editor") Caused by: no action type registered for assistant::QuoteSelection 2024-09-30T09:50:53.1496575+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("ContextEditor > Editor") Caused by: no action type registered for assistant::Assist 2024-09-30T09:50:53.149713+03:00 [ERROR] invalid binding value for keystroke ctrl-r, context Some("ContextEditor > Editor") Caused by: no action type registered for assistant::CycleMessageRole 2024-09-30T09:50:53.1497695+03:00 [ERROR] invalid binding value for keystroke ctrl-s, context Some("ContextEditor > Editor") Caused by: no action type registered for workspace::Save 2024-09-30T09:50:53.1498305+03:00 [ERROR] invalid binding value for keystroke enter, context Some("ContextEditor > Editor") Caused by: no action type registered for assistant::ConfirmCommand 2024-09-30T09:50:53.1499099+03:00 [ERROR] invalid binding value for keystroke shift-enter, context Some("ContextEditor > Editor") Caused by: no action type registered for assistant::Split 2024-09-30T09:50:53.1499654+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("ProjectSearchBar && !in_replace") Caused by: no action type registered for project_search::SearchInNew 2024-09-30T09:50:53.1500254+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-r, context Some("OutlinePanel && not_editing") Caused by: no action type registered for outline_panel::RevealInFileManager 2024-09-30T09:50:53.1500802+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-shift-c, context Some("OutlinePanel && not_editing") Caused by: no action type registered for outline_panel::CopyRelativePath 2024-09-30T09:50:53.1501409+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-c, context Some("OutlinePanel && not_editing") Caused by: no action type registered for outline_panel::CopyPath 2024-09-30T09:50:53.1501951+03:00 [ERROR] invalid binding value for keystroke escape, context Some("OutlinePanel && not_editing") Caused by: no action type registered for menu::Cancel 2024-09-30T09:50:53.1502496+03:00 [ERROR] invalid binding value for keystroke left, context Some("OutlinePanel && not_editing") Caused by: no action type registered for outline_panel::CollapseSelectedEntry 2024-09-30T09:50:53.1503039+03:00 [ERROR] invalid binding value for keystroke right, context Some("OutlinePanel && not_editing") Caused by: no action type registered for outline_panel::ExpandSelectedEntry 2024-09-30T09:50:53.1503661+03:00 [ERROR] invalid binding value for keystroke shift-down, context Some("OutlinePanel && not_editing") Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.1504205+03:00 [ERROR] invalid binding value for keystroke shift-up, context Some("OutlinePanel && not_editing") Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.150475+03:00 [ERROR] invalid binding value for keystroke space, context Some("OutlinePanel && not_editing") Caused by: no action type registered for outline_panel::Open 2024-09-30T09:50:53.150537+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-n, context Some("ProjectPanel") Caused by: no action type registered for project_panel::NewDirectory 2024-09-30T09:50:53.1505919+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-r, context Some("ProjectPanel") Caused by: no action type registered for project_panel::RevealInFileManager 2024-09-30T09:50:53.1506461+03:00 [ERROR] invalid binding value for keystroke alt-ctrl-shift-c, context Some("ProjectPanel") Caused by: no action type registered for project_panel::CopyRelativePath 2024-09-30T09:50:53.1507005+03:00 [ERROR] invalid binding value for keystroke alt-shift-f, context Some("ProjectPanel") Caused by: no action type registered for project_panel::NewSearchInDirectory 2024-09-30T09:50:53.1507639+03:00 [ERROR] invalid binding value for keystroke backspace, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Trash 2024-09-30T09:50:53.150826+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-c, context Some("ProjectPanel") Caused by: no action type registered for project_panel::CopyPath 2024-09-30T09:50:53.150881+03:00 [ERROR] invalid binding value for keystroke ctrl-backspace, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Delete 2024-09-30T09:50:53.150936+03:00 [ERROR] invalid binding value for keystroke ctrl-delete, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Delete 2024-09-30T09:50:53.1509907+03:00 [ERROR] invalid binding value for keystroke ctrl-insert, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Copy 2024-09-30T09:50:53.1510534+03:00 [ERROR] invalid binding value for keystroke ctrl-n, context Some("ProjectPanel") Caused by: no action type registered for project_panel::NewFile 2024-09-30T09:50:53.1511351+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-enter, context Some("ProjectPanel") Caused by: no action type registered for project_panel::OpenWithSystem 2024-09-30T09:50:53.1511904+03:00 [ERROR] invalid binding value for keystroke enter, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Rename 2024-09-30T09:50:53.1512488+03:00 [ERROR] invalid binding value for keystroke escape, context Some("ProjectPanel") Caused by: no action type registered for menu::Cancel 2024-09-30T09:50:53.1513088+03:00 [ERROR] invalid binding value for keystroke left, context Some("ProjectPanel") Caused by: no action type registered for project_panel::CollapseSelectedEntry 2024-09-30T09:50:53.1513641+03:00 [ERROR] invalid binding value for keystroke right, context Some("ProjectPanel") Caused by: no action type registered for project_panel::ExpandSelectedEntry 2024-09-30T09:50:53.151419+03:00 [ERROR] invalid binding value for keystroke shift-delete, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Delete 2024-09-30T09:50:53.1514766+03:00 [ERROR] invalid binding value for keystroke shift-down, context Some("ProjectPanel") Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.1515363+03:00 [ERROR] invalid binding value for keystroke shift-insert, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Paste 2024-09-30T09:50:53.151591+03:00 [ERROR] invalid binding value for keystroke shift-up, context Some("ProjectPanel") Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.1516458+03:00 [ERROR] invalid binding value for keystroke ctrl-c, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Copy 2024-09-30T09:50:53.1517018+03:00 [ERROR] invalid binding value for keystroke ctrl-v, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Paste 2024-09-30T09:50:53.1517606+03:00 [ERROR] invalid binding value for keystroke ctrl-x, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Cut 2024-09-30T09:50:53.1518403+03:00 [ERROR] invalid binding value for keystroke delete, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Trash 2024-09-30T09:50:53.1519225+03:00 [ERROR] invalid binding value for keystroke f2, context Some("ProjectPanel") Caused by: no action type registered for project_panel::Rename 2024-09-30T09:50:53.1519841+03:00 [ERROR] invalid binding value for keystroke space, context Some("ProjectPanel && not_editing") Caused by: no action type registered for project_panel::Open 2024-09-30T09:50:53.1520393+03:00 [ERROR] invalid binding value for keystroke ctrl-backspace, context Some("CollabPanel && not_editing") Caused by: no action type registered for collab_panel::Remove 2024-09-30T09:50:53.1520957+03:00 [ERROR] invalid binding value for keystroke space, context Some("CollabPanel && not_editing") Caused by: no action type registered for menu::Confirm 2024-09-30T09:50:53.152151+03:00 [ERROR] invalid binding value for keystroke space, context Some("(CollabPanel && editing) > Editor") Caused by: no action type registered for collab_panel::InsertSpace 2024-09-30T09:50:53.1522112+03:00 [ERROR] invalid binding value for keystroke tab, context Some("ChannelModal") Caused by: no action type registered for channel_modal::ToggleMode 2024-09-30T09:50:53.1522719+03:00 [ERROR] invalid binding value for keystroke alt-enter, context Some("Picker > Editor") Caused by: no action type registered for picker::ConfirmInput 2024-09-30T09:50:53.152327+03:00 [ERROR] invalid binding value for keystroke tab, context Some("Picker > Editor") Caused by: no action type registered for picker::ConfirmCompletion 2024-09-30T09:50:53.1523819+03:00 [ERROR] invalid binding value for keystroke tab, context Some("ChannelModal > Picker > Editor") Caused by: no action type registered for channel_modal::ToggleMode 2024-09-30T09:50:53.1524577+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-p, context Some("FileFinder") Caused by: no action type registered for file_finder::SelectPrev 2024-09-30T09:50:53.1525156+03:00 [ERROR] invalid binding value for keystroke ctrl-backspace, context Some("TabSwitcher") Caused by: no action type registered for tab_switcher::CloseSelectedItem 2024-09-30T09:50:53.1525702+03:00 [ERROR] invalid binding value for keystroke ctrl-down, context Some("TabSwitcher") Caused by: no action type registered for menu::SelectNext 2024-09-30T09:50:53.1526301+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-tab, context Some("TabSwitcher") Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.1526851+03:00 [ERROR] invalid binding value for keystroke ctrl-up, context Some("TabSwitcher") Caused by: no action type registered for menu::SelectPrev 2024-09-30T09:50:53.1527411+03:00 [ERROR] invalid binding value for keystroke ctrl-alt-space, context Some("Terminal") Caused by: no action type registered for terminal::ShowCharacterPalette 2024-09-30T09:50:53.1528098+03:00 [ERROR] invalid binding value for keystroke ctrl-c, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.1528873+03:00 [ERROR] invalid binding value for keystroke ctrl-e, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.152943+03:00 [ERROR] invalid binding value for keystroke ctrl-enter, context Some("Terminal") Caused by: no action type registered for assistant::InlineAssist 2024-09-30T09:50:53.1530084+03:00 [ERROR] invalid binding value for keystroke ctrl-insert, context Some("Terminal") Caused by: no action type registered for terminal::Copy 2024-09-30T09:50:53.1530629+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-a, context Some("Terminal") Caused by: no action type registered for editor::SelectAll 2024-09-30T09:50:53.1531176+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-f, context Some("Terminal") Caused by: no action type registered for buffer_search::Deploy 2024-09-30T09:50:53.1531808+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-l, context Some("Terminal") Caused by: no action type registered for terminal::Clear 2024-09-30T09:50:53.1532354+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-w, context Some("Terminal") Caused by: no action type registered for pane::CloseActiveItem 2024-09-30T09:50:53.153295+03:00 [ERROR] invalid binding value for keystroke ctrl-w, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.1533496+03:00 [ERROR] invalid binding value for keystroke down, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.1534047+03:00 [ERROR] invalid binding value for keystroke enter, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.1534659+03:00 [ERROR] invalid binding value for keystroke escape, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.1535205+03:00 [ERROR] invalid binding value for keystroke pagedown, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.15358+03:00 [ERROR] invalid binding value for keystroke pageup, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.1536348+03:00 [ERROR] invalid binding value for keystroke shift-down, context Some("Terminal") Caused by: no action type registered for terminal::ScrollLineDown 2024-09-30T09:50:53.1536909+03:00 [ERROR] invalid binding value for keystroke shift-end, context Some("Terminal") Caused by: no action type registered for terminal::ScrollToBottom 2024-09-30T09:50:53.1537641+03:00 [ERROR] invalid binding value for keystroke shift-home, context Some("Terminal") Caused by: no action type registered for terminal::ScrollToTop 2024-09-30T09:50:53.1538309+03:00 [ERROR] invalid binding value for keystroke shift-insert, context Some("Terminal") Caused by: no action type registered for terminal::Paste 2024-09-30T09:50:53.153887+03:00 [ERROR] invalid binding value for keystroke shift-pagedown, context Some("Terminal") Caused by: no action type registered for terminal::ScrollPageDown 2024-09-30T09:50:53.1539414+03:00 [ERROR] invalid binding value for keystroke shift-pageup, context Some("Terminal") Caused by: no action type registered for terminal::ScrollPageUp 2024-09-30T09:50:53.1540037+03:00 [ERROR] invalid binding value for keystroke shift-up, context Some("Terminal") Caused by: no action type registered for terminal::ScrollLineUp 2024-09-30T09:50:53.1540583+03:00 [ERROR] invalid binding value for keystroke up, context Some("Terminal") Caused by: no action type registered for terminal::SendKeystroke 2024-09-30T09:50:53.1541146+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-c, context Some("Terminal") Caused by: no action type registered for terminal::Copy 2024-09-30T09:50:53.1541753+03:00 [ERROR] invalid binding value for keystroke ctrl-shift-v, context Some("Terminal") Caused by: no action type registered for terminal::Paste 2024-09-30T09:50:53.1603439+03:00 [INFO] Opening main db 2024-09-30T09:50:53.1620348+03:00 [INFO] set status on client 0: Authenticating 2024-09-30T09:50:53.1621866+03:00 [ERROR] Error { kind: Generic("Input watch path is neither a file nor a directory."), paths: [] } 2024-09-30T09:50:53.1951873+03:00 [INFO] Enabling Vulkan Portability 2024-09-30T09:50:53.1952487+03:00 [INFO] Enabling color space support 2024-09-30T09:50:53.2448863+03:00 [INFO] Adapter: "NVIDIA GeForce RTX 3050 Ti Laptop GPU" 2024-09-30T09:50:53.2450097+03:00 [INFO] Ray tracing is supported 2024-09-30T09:50:53.4352938+03:00 [WARN] Requested size 1x1 is outside of surface capabilities 2024-09-30T09:50:53.4353667+03:00 [ERROR] No composite alpha flag for transparency: OPAQUE 2024-09-30T09:50:53.4361813+03:00 [INFO] Using surface present mode MAILBOX 2024-09-30T09:50:53.4373252+03:00 [WARN] Unable to forbid exclusive full screen 2024-09-30T09:50:53.5756037+03:00 [INFO] Creating a descriptor pool for at most 16 sets 2024-09-30T09:50:53.5756738+03:00 [INFO] Creating a descriptor pool for at most 16 sets 2024-09-30T09:50:53.5757296+03:00 [INFO] Initializing Blade pipelines for surface SurfaceInfo { format: Bgra8UnormSrgb, alpha: Ignored } 2024-09-30T09:50:53.5775369+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.5778671+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.5788315+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.5791452+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.5796402+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.579896+03:00 [INFO] Skip function Some("to_device_position_impl") 2024-09-30T09:50:53.5799555+03:00 [INFO] Skip function Some("to_device_position") 2024-09-30T09:50:53.5800125+03:00 [INFO] Skip function Some("to_device_position_transformed") 2024-09-30T09:50:53.580069+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.5801829+03:00 [INFO] Skip function Some("blend_color") 2024-09-30T09:50:53.5807908+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.5812929+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.5815393+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.5822504+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.5829184+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.5834393+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.5836638+03:00 [INFO] Skip function Some("to_device_position_impl") 2024-09-30T09:50:53.5837989+03:00 [INFO] Skip function Some("to_device_position") 2024-09-30T09:50:53.5838579+03:00 [INFO] Skip function Some("to_device_position_transformed") 2024-09-30T09:50:53.5839147+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.5840508+03:00 [INFO] Skip function Some("blend_color") 2024-09-30T09:50:53.5876582+03:00 [ERROR] No composite alpha flag for transparency: OPAQUE 2024-09-30T09:50:53.5877244+03:00 [INFO] Using surface present mode MAILBOX 2024-09-30T09:50:53.5888986+03:00 [WARN] Unable to forbid exclusive full screen 2024-09-30T09:50:53.5939718+03:00 [ERROR] No composite alpha flag for transparency: OPAQUE 2024-09-30T09:50:53.5940464+03:00 [INFO] Using surface present mode MAILBOX 2024-09-30T09:50:53.5951319+03:00 [WARN] Unable to forbid exclusive full screen 2024-09-30T09:50:53.6247551+03:00 [INFO] Using surface present mode MAILBOX 2024-09-30T09:50:53.626028+03:00 [WARN] Unable to forbid exclusive full screen 2024-09-30T09:50:53.6291562+03:00 [INFO] Initializing Blade pipelines for surface SurfaceInfo { format: Bgra8UnormSrgb, alpha: Ignored } 2024-09-30T09:50:53.6308772+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.6311788+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.6318077+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.6320941+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.632596+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.6329058+03:00 [INFO] Skip function Some("to_device_position_impl") 2024-09-30T09:50:53.6329645+03:00 [INFO] Skip function Some("to_device_position") 2024-09-30T09:50:53.6330208+03:00 [INFO] Skip function Some("to_device_position_transformed") 2024-09-30T09:50:53.6330767+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.6332012+03:00 [INFO] Skip function Some("blend_color") 2024-09-30T09:50:53.6338645+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.6343422+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.634613+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.6353417+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.6360121+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.6364791+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.6367496+03:00 [INFO] Skip function Some("to_device_position_impl") 2024-09-30T09:50:53.6368143+03:00 [INFO] Skip function Some("to_device_position") 2024-09-30T09:50:53.6368701+03:00 [INFO] Skip function Some("to_device_position_transformed") 2024-09-30T09:50:53.636926+03:00 [INFO] Skip function Some("to_tile_position") 2024-09-30T09:50:53.6370418+03:00 [INFO] Skip function Some("blend_color") 2024-09-30T09:50:53.6382278+03:00 [INFO] Using GPU: GPUSpecs { is_software_emulated: false, device_name: "NVIDIA GeForce RTX 3050 Ti Laptop GPU", driver_name: "NVIDIA", driver_info: "560.70" } 2024-09-30T09:50:53.6389114+03:00 [ERROR] Error { kind: Generic("Input watch path is neither a file nor a directory."), paths: [] } 2024-09-30T09:50:53.6417843+03:00 [INFO] Using surface present mode MAILBOX 2024-09-30T09:50:53.6426117+03:00 [WARN] Unable to forbid exclusive full screen 2024-09-30T09:50:53.6525773+03:00 [INFO] Creating texture 0x2322ebbf300 of size 1024x1024x1 and format R8Unorm, name 'atlas', handle 0 2024-09-30T09:50:53.6528889+03:00 [INFO] Creating buffer 0x2322ce99e20 of size 65536, name 'chunk-0', handle 1 2024-09-30T09:50:53.6712105+03:00 [INFO] Creating buffer 0x2322ce99fb0 of size 4096, name 'chunk-0', handle 2 2024-09-30T09:50:53.6715583+03:00 [INFO] Creating buffer 0x2322ce9a2d0 of size 6832, name 'chunk-1', handle 3 2024-09-30T09:50:53.7361108+03:00 [INFO] set status on client 144319: Connecting 2024-09-30T09:50:53.7496932+03:00 [INFO] Opening main db 2024-09-30T09:50:53.7519372+03:00 [INFO] Using conpty.dll for pseudoconsole 2024-09-30T09:50:53.7835339+03:00 [INFO] Initializing default prettier with plugins {} 2024-09-30T09:50:53.7855365+03:00 [INFO] Opening main db 2024-09-30T09:50:53.8002586+03:00 [INFO] Initializing default prettier with plugins {} 2024-09-30T09:50:53.8018887+03:00 [INFO] Initializing default prettier with plugins {} 2024-09-30T09:50:53.8035279+03:00 [INFO] Initializing default prettier with plugins {} 2024-09-30T09:50:53.8050039+03:00 [INFO] Initializing default prettier with plugins {} 2024-09-30T09:50:53.8070306+03:00 [ERROR] no worktrees when constructing LocalLspAdapterDelegate 2024-09-30T09:50:53.8154997+03:00 [INFO] Creating buffer 0x2322be40540 of size 4096, name 'chunk-2', handle 4 2024-09-30T09:50:53.8184805+03:00 [INFO] Initializing default prettier with plugins {} 2024-09-30T09:50:53.8393186+03:00 [INFO] Node runtime install_if_needed 2024-09-30T09:50:54.0925066+03:00 [INFO] Initializing default prettier with plugins {} 2024-09-30T09:50:54.0987676+03:00 [INFO] starting language server process. binary path: "C:\\Users\\maksa\\AppData\\Local\\Zed\\node\\node-v22.5.1-win-x64\\node.exe", working directory: "C:/", args: ["C:\\Users\\maksa\\AppData\\Local\\Zed\\copilot\\copilot-v0.5.0\\dist/agent.js", "--stdio"] 2024-09-30T09:50:54.6254616+03:00 [INFO] Language server with id 0 sent unhandled notification LogMessage: { "level": 0, "message": "[DEBUG] [agent] [2024-09-30T06:50:54.617Z] Agent service starting", "metadataStr": "[DEBUG] [agent] [2024-09-30T06:50:54.617Z]", "extra": [ "Agent service starting" ] } 2024-09-30T09:50:54.6282023+03:00 [INFO] Language server with id 0 sent unhandled notification client/registerCapability: { "registrations": [ { "id": "026b7d56-2689-4700-ba34-af827f6ff8ef", "method": "workspace/didChangeWorkspaceFolders", "registerOptions": {} } ] } 2024-09-30T09:50:54.672127+03:00 [INFO] Creating buffer 0x2322ea11c80 of size 4096, name 'chunk-3', handle 5 2024-09-30T09:50:54.6722228+03:00 [INFO] Creating buffer 0x2322ea11e10 of size 4096, name 'chunk-4', handle 6 2024-09-30T09:50:54.6723059+03:00 [INFO] Creating buffer 0x231c7fd8640 of size 4096, name 'chunk-5', handle 7 2024-09-30T09:50:54.6873001+03:00 [INFO] Language server with id 0 sent unhandled notification LogMessage: { "level": 0, "message": "[DEBUG] [agent] [2024-09-30T06:50:54.638Z] Telemetry initialized", "metadataStr": "[DEBUG] [agent] [2024-09-30T06:50:54.638Z]", "extra": [ "Telemetry initialized" ] } 2024-09-30T09:50:55.1193899+03:00 [INFO] Creating buffer 0x231c7819420 of size 24752, name 'chunk-6', handle 8 2024-09-30T09:50:55.1194935+03:00 [INFO] Creating buffer 0x231c78195b0 of size 10752, name 'chunk-7', handle 9 2024-09-30T09:50:55.3665663+03:00 [INFO] connected to rpc endpoint https://collab.zed.dev/rpc 2024-09-30T09:50:55.505768+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.5059245+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.506014+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.5061142+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.5063+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.5063975+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.5069353+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.5071007+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.5230422+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.5231385+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.7464462+03:00 [ERROR] Error { kind: Generic("Input watch path is neither a file nor a directory."), paths: [] } 2024-09-30T09:50:55.751823+03:00 [INFO] Using GPU: GPUSpecs { is_software_emulated: false, device_name: "NVIDIA GeForce RTX 3050 Ti Laptop GPU", driver_name: "NVIDIA", driver_info: "560.70" } 2024-09-30T09:50:55.7522988+03:00 [ERROR] Error { kind: Generic("Input watch path is neither a file nor a directory."), paths: [] } 2024-09-30T09:50:55.7582099+03:00 [INFO] building git repository, `.git` path in the worktree: ".git" 2024-09-30T09:50:55.7689239+03:00 [INFO] Using conpty.dll for pseudoconsole 2024-09-30T09:50:55.8811603+03:00 [INFO] Creating buffer 0x231c8516750 of size 58016, name 'chunk-8', handle 10 2024-09-30T09:50:55.8860595+03:00 [INFO] attempting to start language server "taplo", path: "C:\\msys64\\home\\maksa\\ognlib", id: 1 2024-09-30T09:50:55.8863009+03:00 [INFO] Initializing default prettier with plugins {} 2024-09-30T09:50:55.8866762+03:00 [INFO] Initializing default prettier with plugins {} 2024-09-30T09:50:55.9055587+03:00 [INFO] Creating buffer 0x231c7ad3180 of size 59248, name 'chunk-9', handle 11 2024-09-30T09:50:55.9699128+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.9861243+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.986232+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.9863065+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.9864926+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:55.9865864+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:56.0183708+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:56.0335099+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:56.0490815+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:56.0492533+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:56.0494056+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:56.0495238+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:56.1896404+03:00 [INFO] starting language server process. binary path: "C:\\Users\\maksa\\AppData\\Local\\Zed\\extensions\\work\\toml\\taplo-0.9.3\\taplo.exe", working directory: "C:\\msys64\\home\\maksa\\ognlib", args: ["lsp", "stdio"] 2024-09-30T09:50:56.3145207+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:56.6255138+03:00 [INFO] Creating texture 0x2322d10c7b0 of size 1024x1024x1 and format Bgra8UnormSrgb, name 'atlas', handle 12 2024-09-30T09:50:56.6306326+03:00 [INFO] Creating buffer 0x231c7c943c0 of size 66752, name 'chunk-10', handle 13 2024-09-30T09:50:56.6716462+03:00 [INFO] Creating buffer 0x231c75ea790 of size 66752, name 'chunk-11', handle 14 2024-09-30T09:50:57.1645561+03:00 [INFO] add connection to peer 2024-09-30T09:50:57.1646722+03:00 [INFO] add_connection; 2024-09-30T09:50:57.1648085+03:00 [INFO] waiting for server hello 2024-09-30T09:50:57.1802524+03:00 [INFO] got server hello 2024-09-30T09:50:57.1803692+03:00 [INFO] set status to connected (connection id: ConnectionId { owner_id: 0, id: 0 }, peer id: PeerId { owner_id: 545, id: 4024812 }) 2024-09-30T09:50:57.1805725+03:00 [INFO] set status on client 144319: Connected { peer_id: PeerId { owner_id: 545, id: 4024812 }, connection_id: ConnectionId { owner_id: 0, id: 0 } } 2024-09-30T09:50:58.0634019+03:00 [INFO] Initializing default prettier with plugins {} 2024-09-30T09:50:58.1217853+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:50:58.1238463+03:00 [INFO] Initializing default prettier with plugins {} 2024-09-30T09:50:58.1629142+03:00 [INFO] Initializing default prettier with plugins {} 2024-09-30T09:50:58.2504659+03:00 [INFO] Creating buffer 0x231c7c946e0 of size 66864, name 'chunk-12', handle 15 2024-09-30T09:50:58.4300137+03:00 [INFO] Creating buffer 0x231c75ea600 of size 66864, name 'chunk-13', handle 16 2024-09-30T09:50:59.033356+03:00 [ERROR] failed to fetch cached embeddings via cloud model Caused by: RPC request GetCachedEmbeddings failed: permission denied 2024-09-30T09:50:59.0340603+03:00 [INFO] Summarizing updated entries took 15.4µs 2024-09-30T09:50:59.0373823+03:00 [INFO] Summarizing updated entries took 12.7µs 2024-09-30T09:50:59.0409787+03:00 [INFO] Summarizing updated entries took 9.2µs 2024-09-30T09:50:59.5965438+03:00 [ERROR] failed to fetch cached embeddings via cloud model Caused by: RPC request GetCachedEmbeddings failed: permission denied 2024-09-30T09:51:00.0902086+03:00 [INFO] Language server with id 1 sent unhandled notification taplo/didChangeSchemaAssociation: { "documentUri": "file:///C:/msys64/home/maksa/ognlib/Cargo.toml", "schemaUri": "https://json.schemastore.org/cargo.json", "meta": { "name": "Cargo Manifest", "description": "Manifest for Cargo, the Rust package manager and build tool", "source": "catalog", "catalog_url": "https://www.schemastore.org/api/json/catalog.json" } } 2024-09-30T09:51:00.3049236+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:51:00.3676611+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:51:00.4172782+03:00 [WARN] request completed with error: failed to connect to the server 2024-09-30T09:51:00.9164166+03:00 [INFO] Language server with id 1 sent unhandled notification taplo/didChangeSchemaAssociation: { "documentUri": "file:///C:/msys64/home/maksa/ognlib/Cargo.toml", "schemaUri": "https://json.schemastore.org/cargo.json", "meta": { "name": "Cargo Manifest", "description": "Manifest for Cargo, the Rust package manager and build tool", "source": "catalog", "catalog_url": "https://www.schemastore.org/api/json/catalog.json" } } 2024-09-30T09:51:02.464781+03:00 [INFO] Language server with id 1 sent unhandled notification taplo/didChangeSchemaAssociation: { "documentUri": "file:///C:/msys64/home/maksa/ognlib/Cargo.toml", "schemaUri": "https://json.schemastore.org/cargo.json", "meta": { "name": "Cargo Manifest", "description": "Manifest for Cargo, the Rust package manager and build tool", "source": "catalog", "catalog_url": "https://www.schemastore.org/api/json/catalog.json" } } 2024-09-30T09:51:02.4695826+03:00 [INFO] Language server with id 1 sent unhandled notification taplo/didChangeSchemaAssociation: { "documentUri": "file:///C:/msys64/home/maksa/ognlib/Cargo.toml", "schemaUri": "https://json.schemastore.org/cargo.json", "meta": { "name": "Cargo Manifest", "description": "Manifest for Cargo, the Rust package manager and build tool", "source": "catalog", "catalog_url": "https://www.schemastore.org/api/json/catalog.json" } } ``` this doesn't happen in CLANG64 environment
ChristopherDrum commented 17 hours ago

@ognevny Thank you for confirming. And yes, I am in ucrt64; I failed to mention that in the original post.

ognevny commented 17 hours ago

I failed to mention that in the original post.

no problem, it's easy to reproduce it in 2 environments