vscode moves cursor

This commit is contained in:
Aleksey Kladov 2018-08-16 13:46:31 +03:00
parent eda52cbc34
commit e0a43a159d
5 changed files with 52 additions and 25 deletions

View file

@ -101,3 +101,11 @@ pub struct Decoration {
pub range: Range,
pub tag: &'static str
}
pub enum MoveCursor {}
impl Request for MoveCursor {
type Params = Position;
type Result = ();
const METHOD: &'static str = "m/moveCursor";
}