본문 바로가기

Code/vscode & intellij

(15)
[vscode] Use clipboard in VSCodeVim ctrl + p setting.json Add following line: "vim.useSystemClipboard": true p.s) My settings.json { "extensions.ignoreRecommendations": true, "workbench.colorTheme": "Community Material Theme High Contrast", "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "editor.formatOnSave": true, "git.enableSmartCommit": true, "terminal.integrated.scrollback": 3000, "vim.hlsearch": true..
[jetbrains] Use clipboard in IdeaVim Click Open ~/.ideavimrc Add following line set clipboard+=unnamed :)
[vscode] vscode vim copy and paste using Clipboard The default of copy repository is x11 that different with clipboard. Add the following line at setting.json file "vim.useSystemClipboard": true
[vim] Learn Vim Baby Steps change Caps Lock to ctrl key in windows hjkl, ctrl+c Motions w: beginning of a word e: to jump to the end of a word b: jump to the beginning of a word backwards ge: to jump to the end of a word backwards. There are word and WORD. Use W, B, E, gE to jump by WORD. This is useful in case: function helloVimWorld() { console.log("Hello vim world"); } f{character}: character not string on o..
[vim] Remap key on windows (캡스락 키를 ctrl 키로 변경) Remap vim 을 사용하려고 공부하고 있는데, 예전에는 Insert mode에서 Basic mode로 갈때, 단순히 Esc 키를 눌러서 빠져나왔습니다. 근데 외국 애들은 보니 ctrl + c 키로 빠져나오는 것을 추천한다고 합니다. 추가적으로 새끼손가락이 밑으로 내려가니깐 caps lock 을 ctrl 키로 변경해서 사용합니다. 이게 설득력이 있는게, 해피해킹 키보드를 보니깐 ctrl 이 없고, 캡스락 키 자리에 ctrl 이 있습니다. 🙄 맥에서는 자체적으로 key map을 할 수 있어서 쉽게 변경할 수 있지만, 윈도우는 가벼운 프로그램을 다운로드해서 변경할 수 있습니다. github.com/randyrants/sharpkeys/releases 위 링크에서 sharpkeys392.msi 을 다운받아 ..
[jetbrains] Useful setting and plug-in (Webstorm, Pycharm, Intel) Hi there! Let me introduce useful features that I use in multiple jetbrains tool :) Keymap If you windows users, ctrl + w key is very nice thing to close tab. Let's change keymap Ctrl + Shift + F4 to Ctrl + w in Setting(ctrl +alt+ s) Rainbow Brackets You can find Rainbow brakets in Settings -> Plugins -> Search: Rainbow Brackets If you have experice about Backets Hell, you might know this plug-i..
[vscode] Rainbow Brackets 괄호 지옥 가끔 괄호가 안 닫혀있다고 하는데.. 아래와 같이 너무 복잡할때 쉽게 구분할수 있는 방법이 있습니다! 바로 VS Code 의 Rainbow Brackets 익스텐션을 사용하면 좋습니다. 레인보우 브래킷 레인보우 브래킷을 사용하면 아래와 같이 보다 구분하기 수월해집니다. Vim 요즘 vim에 적응하고 있는 중입니다.