diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev/lsp-extensions.md | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/docs/dev/lsp-extensions.md b/docs/dev/lsp-extensions.md index 694fafcd5..8a6f9f06e 100644 --- a/docs/dev/lsp-extensions.md +++ b/docs/dev/lsp-extensions.md | |||
@@ -1,5 +1,5 @@ | |||
1 | <!--- | 1 | <!--- |
2 | lsp_ext.rs hash: 4dfa8d7035f4aee7 | 2 | lsp_ext.rs hash: e8a7502bd2b2c2f5 |
3 | 3 | ||
4 | If you need to change the above hash to make the test pass, please check if you | 4 | If you need to change the above hash to make the test pass, please check if you |
5 | need to adjust this doc as well and ping this issue: | 5 | need to adjust this doc as well and ping this issue: |
@@ -595,3 +595,29 @@ interface TestInfo { | |||
595 | runnable: Runnable; | 595 | runnable: Runnable; |
596 | } | 596 | } |
597 | ``` | 597 | ``` |
598 | |||
599 | ## Hover Actions | ||
600 | |||
601 | **Issue:** https://github.com/rust-analyzer/rust-analyzer/issues/6823 | ||
602 | |||
603 | This request is sent from client to server to move item under cursor or selection in some direction. | ||
604 | |||
605 | **Method:** `experimental/moveItemUp` | ||
606 | **Method:** `experimental/moveItemDown` | ||
607 | |||
608 | **Request:** `MoveItemParams` | ||
609 | |||
610 | **Response:** `TextDocumentEdit | null` | ||
611 | |||
612 | ```typescript | ||
613 | export interface MoveItemParams { | ||
614 | textDocument: lc.TextDocumentIdentifier, | ||
615 | range: lc.Range, | ||
616 | direction: Direction | ||
617 | } | ||
618 | |||
619 | export const enum Direction { | ||
620 | Up = "Up", | ||
621 | Down = "Down" | ||
622 | } | ||
623 | ``` | ||