happiness (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) happiness

VSCode

vscodeでterminalからEditorに移動するときのコマンド

これさえ覚えたら問題なさそう Ctrl + 0: move to editor from terminal Ctrl + ~ focus to terminal, when in terminal toggle terminal Ctrl + w + ↓ move to terminal(vim move)

vscodeでcommand+shift+Pが効かない時(ticktick併用時)

自分の場合、ticktickのホットキーのポモを開始が、優先されていたので、disabledになってた

tsdocを書くのが面倒なので、promptエンジニアリングをがんばります

要件 選択した箇所に対して、documentを書いてくれる GenieAI のinsertボタンを押せば、完結する 選択したプログラミング言語に応じて、最も支配的なdocument形式で書いてくれる(or 設定値を読み込んで読んでくれても良い) 書くのはdocumentのコメントのみで…

vscodeVimでペイン(画面(タブ))の幅をキーボードのみで変更する(winresizer的)

cmmand + shift + pでkeybinding.json出す 下記のキーを追加する { "key": "ctrl+shift+j", "command": "workbench.action.decreaseViewHeight", "when": "editorFocus" }, { "key": "ctrl+shift+k", "command": "workbench.action.increaseViewHeight", "wh…

VSCodeのterminalのトグル

terminalの`トグルctrl +`` https://zellwk.com/blog/mac-and-windows-vscode-keybindings-2/

vsCodeVim新しくファイルを開いても現在開いているファイルに上書きされない現象の対処方法

元issue https://github.com/VSCodeVim/Vim/issues/4559 方法 stackoverflow.com ありがとう

ChatなんとかさんにVSCodeのカーソル移動を軽くする方法を聞いてみたら軽くなった

けっこう軽くなった。 googleで検索しても出てこないときは、ダメ元で聞いても良さそう。 https://beta.openai.com/playground (そもそも自分の中では、もうgoogle検索信用できなくなってきている)

【vscode】タブが無限に増えないようにタブ表示をdisableにしよう

タブがたくさん増えてキモいなあと思ってしまった人向け。 Workbench > Editor: ShowTabs をuncheckする 画面分割しているとタブが無限に増えてメモリが爆発してしまう。 vimみたいなタブの概念を導入できたらよいのだが... 参考: https://howpon.com/21914

vscodeにvim-abolishの機能を移植してみよう

概要 vimでは、以下のpluginを使うことでcgsコマンドで、camelCaseをsnake_caseに変換にできる GitHub - tpope/vim-abolish: abolish.vim: easily search for, substitute, and abbreviate multiple variants of a word vscodeで使うplugin change-case - Vi…

【vscode】【vim】vim to vscodeなどする、AIのやつ導入メモ

やりたいこと [x] Editor領域を増やす 参考: https://www.kurusugawa.jp/20210512-vscode-wide-area/ [x] leader + N でtoggle menuする [x] zで出す文字を2つにする(vimium風) vscodeのvimでvimiumのようにジャンプする - Qiita [x] cgcコマンドでキャメル…

【VSCode】vim.otherModesKeyBindingsNonRecursiveが不明な構成設定

vim.otherModesKeyBindingsNonRecursive 不明な構成設定になった - vim.otherModesKeyBindingsNonRecursive: [ + vim.normalModeKeyBindingsNonRecursive: [ { "before": [ "z" ], "after": [ "leader", "leader", "s" ] } ], どうもVSCodeのversionアップで…