-
Updated
Feb 23, 2021 - JavaScript
{{ message }}
A search tool helps dev to solve the naming things problem.
AI Code Completions
Draw.io has many internal options, that can be used to enable additional features and could be exposed to the user.
I identified these as useful:
mxGraph.prototype.setConnectableEdges
mxGraph.prototype.setAllowDanglingEdges
`mxGr
Make the animation smoother.
Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more
Official repository for the Microsoft C/C++ extension for VS Code.
Hi, I am developer of VS Code and I am currently going through those extensions which has custom welcome experience (notifications / views) on install. VS Code provides Settings Sync feature OOB and users can have their machines in sync using this feature. So, when user sync such extensions with custom welcome experience, they should not be seeing welcome experience again in their other machines.
REST Client Extension for Visual Studio Code
Launch a development local Server with live reload feature for static & dynamic pages.
The optimal flow for Jest based testing in VS Code
Microsoft Web Template Studio quickly builds web applications using a wizard-based UI to turn your needs into a foundation of best patterns and practices
VSCode Neovim integration
Java Language Support for Visual Studio Code
Code Runner for Visual Studio Code
Blocked By: wix/vscode-glean#97
Example:
class Foo extends Component {
render() {
return (<div>
{this.props.foo.map((bar) => <div>{bar.x}</div>)}
</div>)
}
}
Current:
const Foo = props => {
const foo = useRef();
const x = useRef();
return <div>
{foo.current.map(bar => <div>{x.current}</div>)}
Super fast sftp/ftp extension for VS Code
VS Code extension that allows you to record and playback guided tours of codebases, directly within the editor.
Emacs Org Mode for Visual Studio Code
These snippets were built to supercharge my workflow in the most seamless manner possible.
Intelligent Tailwind CSS tooling for Visual Studio Code
Project Manager Extension for Visual Studio Code
UNOFFICIAL Netease Music extension for Visual Studio Code
Add a description, image, and links to the vscode-extension topic page so that developers can more easily learn about it.
To associate your repository with the vscode-extension topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
Under VIM, I’m used to type
:bdto close the current file/buffer.That command isn’t working under VSCodeVim :
Not and editor command bdTo close the current buffer, only
:qworks which isn’t correct ::qunder VIM close VIM (and all files/buffers opened):bdseems a better command to close the current file/buffer.