From d75e210e73909616b9c57713529305b6448621ad Mon Sep 17 00:00:00 2001 From: Dallin Huff <65198793+dallinhuff@users.noreply.github.com> Date: Sat, 21 Jun 2025 15:31:01 -0600 Subject: [PATCH] docs: Fix path to keymap.json config file for macOS (#32728) Update key-bindings doc page to correctly reference `~/.config/zed/keymap.json` instead of the old `~/.zed/keymap.json` Closes #ISSUE Release Notes: - N/A --- docs/src/key-bindings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/key-bindings.md b/docs/src/key-bindings.md index c80953aab5..8a956b5185 100644 --- a/docs/src/key-bindings.md +++ b/docs/src/key-bindings.md @@ -18,7 +18,7 @@ You can also enable `vim_mode`, which adds vim bindings too. ## User keymaps -Zed reads your keymap from `~/.zed/keymap.json` on MacOS (or `~/.config/zed/keymap.json` on Linux). You can open the file within Zed with {#kb zed::OpenKeymap}, or via `zed: Open Keymap` in the command palette. +Zed reads your keymap from `~/.config/zed/keymap.json`. You can open the file within Zed with {#kb zed::OpenKeymap}, or via `zed: Open Keymap` in the command palette. The file contains a JSON array of objects with `"bindings"`. If no `"context"` is set the bindings are always active. If it is set the binding is only active when the [context matches](#contexts).