From 0ef9268f48e5b5485232e93e86b622c443d2f4ac Mon Sep 17 00:00:00 2001 From: Siarhei Siniak <siarheisiniak@gmail.com> Date: Sun, 24 Nov 2024 02:28:19 +0300 Subject: [PATCH] [~] Refactor --- deps/com.github.aiortc.aiortc | 2 +- .../User/keybindings.json/keybindings.json | 23 +++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/deps/com.github.aiortc.aiortc b/deps/com.github.aiortc.aiortc index ef2b0af..51b5537 160000 --- a/deps/com.github.aiortc.aiortc +++ b/deps/com.github.aiortc.aiortc @@ -1 +1 @@ -Subproject commit ef2b0af7d2d36034dd33bbd2eb97b01eb1674be3 +Subproject commit 51b55376b1d49c88710a0234de81f30c7663baae diff --git a/dotfiles/.config/Code - OSS/User/keybindings.json/keybindings.json b/dotfiles/.config/Code - OSS/User/keybindings.json/keybindings.json index 4405530..1469a90 100644 --- a/dotfiles/.config/Code - OSS/User/keybindings.json/keybindings.json +++ b/dotfiles/.config/Code - OSS/User/keybindings.json/keybindings.json @@ -47,5 +47,28 @@ "key": "ctrl+n", "command": "-extension.vim_ctrl+n", "when": "editorTextFocus && vim.active && vim.use<C-n> && !inDebugRepl || vim.active && vim.use<C-n> && !inDebugRepl && vim.mode == 'CommandlineInProgress' || vim.active && vim.use<C-n> && !inDebugRepl && vim.mode == 'SearchInProgressMode'" + }, + { + "key": "ctrl+t", + "command": "-extension.vim_ctrl+t", + "when": "editorTextFocus && vim.active && vim.use<C-t> && !inDebugRepl" + }, + { + "key": "ctrl+f", + "command": "-extension.vim_ctrl+f", + "when": "editorTextFocus && vim.active && vim.use<C-f> && !inDebugRepl && vim.mode != 'Insert'" + }, + { + "key": "ctrl+f", + "command": "-actions.find", + "when": "editorFocus || editorIsOpen" + }, + { + "key": "ctrl+f", + "command": "workbench.action.findInFiles" + }, + { + "key": "ctrl+shift+f", + "command": "-workbench.action.findInFiles" } ] \ No newline at end of file