diff options
Diffstat (limited to 'book/src')
-rw-r--r-- | book/src/configuration.md | 10 | ||||
-rw-r--r-- | book/src/keymap.md | 5 |
2 files changed, 15 insertions, 0 deletions
diff --git a/book/src/configuration.md b/book/src/configuration.md index 3b78481e..d223b6e9 100644 --- a/book/src/configuration.md +++ b/book/src/configuration.md @@ -350,6 +350,16 @@ max-indent-retain = 0 wrap-indicator = "" # set wrap-indicator to "" to hide it ``` +### `[editor.explorer]` Section + +Sets explorer side width and style. + +| Key | Description | Default | +| -------------- | ------------------------------------------- | ------- | +| `column-width` | explorer side width | 30 | +| `position` | explorer widget position, `left` or `right` | `left` | + + ### `[editor.smart-tab]` Section diff --git a/book/src/keymap.md b/book/src/keymap.md index 0f41b324..82910fe3 100644 --- a/book/src/keymap.md +++ b/book/src/keymap.md @@ -296,6 +296,7 @@ This layer is a kludge of mappings, mostly pickers. | `R` | Replace selections by clipboard contents | `replace_selections_with_clipboard` | | `/` | Global search in workspace folder | `global_search` | | `?` | Open command palette | `command_palette` | +| `e` | Reveal current file in explorer | `reveal_current_file` | > 💡 Global search displays results in a fuzzy picker, use `Space + '` to bring it back up after opening a file. @@ -452,3 +453,7 @@ Keys to use within prompt, Remapping currently not supported. | `Tab` | Select next completion item | | `BackTab` | Select previous completion item | | `Enter` | Open selected | + +## File explorer + +Press `?` to see keymaps. Remapping currently not supported. |