waveterm/docs
John Feustel 3e9c921dd4
Add vim-style Ctrl+Shift+h/j/k/l block navigation and move launcher shortcut from Ctrl+Shift+k to Ctrl+Shift+x (#2909)
## Summary

This PR adds vim-style movement aliases for block navigation and updates
one conflicting
  shortcut.

  ## Changes

  - Added global keybindings:
    - `Ctrl+Shift+h` -> move focus left
    - `Ctrl+Shift+j` -> move focus down
    - `Ctrl+Shift+k` -> move focus up
    - `Ctrl+Shift+l` -> move focus right
  - Kept existing arrow-based movement:
    - `Ctrl+Shift+ArrowUp/Down/Left/Right`
  - **Changed launcher shortcut**:
    - from `Ctrl+Shift+k`
    - to `Ctrl+Shift+x`

  ## Why `k` changed to `x`

`Ctrl+Shift+k` is now used for vim-style upward movement (`k` = up), so
launcher replace
  needed a new binding.
`Ctrl+Shift+x` was chosen to avoid collisions with existing Wave global
keybindings.

  ## Config / behavior notes

- `app:disablectrlshiftarrows` now disables both block-navigation sets:
    - Arrow keys
    - `h/j/k/l` aliases
  - It does **not** disable `Ctrl+Shift+x` (launcher replace).

  ## Docs updated

  - `docs/docs/keybindings.mdx`
    - Added `Ctrl+Shift+h/j/k/l` navigation display
    - Updated launcher replace shortcut to `Ctrl+Shift+x`
  - `docs/docs/config.mdx`
- Clarified `app:disablectrlshiftarrows` scope to include `Arrow` +
`h/j/k/l`
2026-02-20 14:09:44 -08:00
..
docs Add vim-style Ctrl+Shift+h/j/k/l block navigation and move launcher shortcut from Ctrl+Shift+k to Ctrl+Shift+x (#2909) 2026-02-20 14:09:44 -08:00
src Session Durability Checkpoint (#2821) 2026-02-03 11:49:52 -08:00
static Add sharp-solid font to docsite (#1813) 2025-01-23 12:23:24 -08:00
.editorconfig Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
.gitignore Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
.prettierignore Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
.remarkrc Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
babel.config.js Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
docusaurus.config.ts Add code highlighting to docsite (#1866) 2025-01-28 19:38:43 -08:00
eslint.config.js Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
package.json Bump typescript-eslint from 8.53.1 to 8.54.0 in the dev-dependencies-minor group (#2817) 2026-02-06 09:29:44 -08:00
prettier.config.cjs Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
README.md remove storybook, tasks, and dependencies (#2593) 2025-11-24 13:36:00 -08:00
tsconfig.json Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00

Wave Terminal Documentation

This is the home for Wave Terminal's documentation site. This README is specifically about building and contributing to the docs site. If you are looking for the actual hosted docs, go here -- https://docs.waveterm.dev

Installation

Our docs are built using Docusaurus, a modern static website generator.

Local Development

task docsite

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

Build

task docsite:build:public

This command generates static content into the build directory and can be served using any static contents hosting service.

Deployment

Deployments are handled automatically by the Docsite CI/CD workflow