diff --git a/docs/docs/keymaps/behaviors/mouse-emulation.md b/docs/docs/keymaps/behaviors/mouse-emulation.md index 161dd51296e..7e31b5fe074 100644 --- a/docs/docs/keymaps/behaviors/mouse-emulation.md +++ b/docs/docs/keymaps/behaviors/mouse-emulation.md @@ -132,23 +132,23 @@ The following defines can be passed for the parameter: | Define | Action | | :----------- | :--------- | -| `MOVE_UP` | Move up | -| `MOVE_DOWN` | Move down | -| `MOVE_LEFT` | Move left | -| `MOVE_RIGHT` | Move right | +| `SCRL_UP` | Scroll up | +| `SCRL_DOWN` | Scroll down | +| `SCRL_LEFT` | Scroll left | +| `SCRL_RIGHT` | Scroll right | ### Examples The following will send a scroll down event to the host when pressed/held: ``` -&msc MOVE_DOWN +&msc SCRL_DOWN ``` The following will send a scroll left event to the host when pressed/held: ``` -&msc MOVE_LEFT +&msc SCRL_LEFT ``` ### Input Processors diff --git a/docs/docs/keymaps/input-processors/scaler.md b/docs/docs/keymaps/input-processors/scaler.md index 0fd9dbb1766..af6fc94323c 100644 --- a/docs/docs/keymaps/input-processors/scaler.md +++ b/docs/docs/keymaps/input-processors/scaler.md @@ -31,7 +31,7 @@ Three pre-defined instance of the scaler input processor are available: | ---------------- | --------------------------------------------- | | `&zip_xy_scaler` | Scale X- and Y-axis values by the same amount | | `&zip_x_scaler` | Scale X-axis values | -| `&zip_y_scaler` | Scale X-axis values | +| `&zip_y_scaler` | Scale Y-axis values | ## User Defined Instances