
Security News
Scaling Socket from Zero to 10,000+ Organizations
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.
@replit/codemirror-vscode-keymap
Advanced tools
Ports VSCode's keyboard shortcuts to CodeMirror 6.
This keymap includes shortcuts for all the official extension and replaces codemirror default keymaps:
defaultKeymap: false when enabling this plugin)The keymap is based on the following:
import { EditorView, keymap } from '@codemirror/view';
import { EditorState } from '@codemirror/state';
import { javascript } from '@codemirror/lang-javascript';
import { vscodeKeymap } from "@replit/codemirror-vscode-keymap";
const doc = `
function wow() {
function hello() {
console.log({
lol: 1
})
}
}
`
new EditorView({
state: EditorState.create({
doc,
extensions: [keymap.of(vscodeKeymap), javascript()],
}),
parent: document.querySelector('#editor'),
});
FAQs
VSCode keyboard shortcuts for Codemirror 6
We found that @replit/codemirror-vscode-keymap demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 24 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.

Research
Socket Threat Research maps a rare inside look at OtterCookie’s npm-Vercel-GitHub chain, adding 197 malicious packages and evidence of North Korean operators.

Research
Socket researchers identified a malicious Chrome extension that manipulates Raydium swaps to inject an undisclosed SOL transfer, quietly routing fees to an attacker wallet.