Skip to content

Instantly share code, notes, and snippets.

@florianb
Created June 26, 2025 11:28
Show Gist options
  • Select an option

  • Save florianb/8581ecc5226a192a4b2835db3c1f3d39 to your computer and use it in GitHub Desktop.

Select an option

Save florianb/8581ecc5226a192a4b2835db3c1f3d39 to your computer and use it in GitHub Desktop.
TextMate-like Tabbing for Zed
// Zed keymap
//
// For information on binding keys, see the Zed
// documentation: https://zed.dev/docs/key-bindings
//
// To see the default key bindings run `zed: open default keymap`
// from the command palette.
[
{
"context": "Editor && vim_mode == insert && showing_completions",
"bindings": {
"tab": "editor::ContextMenuNext", // vorwärts blättern
"shift-tab": "editor::ContextMenuPrevious",
"enter": "editor::ComposeCompletion"
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment