VSCode multiple copy-paste?

The best plugin I found: Multiple clipboards for VSCode. https://marketplace.visualstudio.com/items?itemName=slevesque.vscode-multiclip It looks better than the usual ctrl+shift+v I was looking for. In addition to ctrl+shift+v you can use ctrl+shift+c to Merge-Copy. And ctrl+shift+x to Merge-Cut. Select clipboard to paste (ctrl+alt+v). Paste and cycle through clipboard items (ctrl+shift+v).

Running two projects at once in Visual Studio Code

See our documentation on multitarget debugging: https://code.visualstudio.com/Docs/editor/debugging#_multitarget-debugging In your launch.json, just create a compounds section that contains the targets you want to debug { “version”: “0.2.0”, “configurations”: [ { “type”: “node”, “request”: “launch”, “name”: “Server”, “program”: “${workspaceRoot}/server.js”, “cwd”: “${workspaceRoot}” }, { “type”: “node”, “request”: “launch”, “name”: “Client”, “program”: “${workspaceRoot}/client.js”, “cwd”: “${workspaceRoot}” } ], “compounds”: [ … Read more

Smooth scroll in Visual Studio code

// Controls if the editor will scroll using an animation “editor.smoothScrolling”: false, // Enable this workaround if scrolling is no longer smooth after restoring a minimized VS Code window. This is a workaround for an issue (https://github.com/Microsoft/vscode/issues/13612) where scrolling starts to lag on devices with precision trackpads like the Surface devices from Microsoft. Enabling this … Read more

How do I use the meslo font for visual studio code

None of these answers were working for me because I was using MesloLGS NF for my iTerm2. What I did was took the exact value that was being displayed in iTerm2 -> Preferences -> Profiles -> Text under the font section, and typed that into my settings.json under terminal.integrated.fontfamily. Copy from here: “terminal.integrated.fontFamily”: “MesloLGS NF”,

How to correctly declare a GraphQL query without parameters.

The queries you specify in your schema behave just like any other field on a particular type (the main difference is that their type is linked to a particular operation). If you don’t want to declare any arguments for a particular field, you just omit the parentheses entirely. The same goes for queries and mutations: … Read more