mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
Transition OnEnter to WorkspaceSnippetEdit
This also changes our handiling of snippet edits on the client side. `editor.insertSnippet` unfortunately forces indentation, which we really don't want to have to deal with. So, let's just implement our manual hacky way of dealing with a simple subset of snippets we actually use in rust-analyzer
This commit is contained in:
parent
a4e6963a23
commit
4b495da368
8 changed files with 100 additions and 93 deletions
|
@ -38,17 +38,15 @@ pub(crate) fn on_enter(db: &RootDatabase, position: FilePosition) -> Option<Sour
|
||||||
}
|
}
|
||||||
|
|
||||||
let indent = node_indent(&file, comment.syntax())?;
|
let indent = node_indent(&file, comment.syntax())?;
|
||||||
let inserted = format!("\n{}{} ", indent, prefix);
|
let inserted = format!("\n{}{} $0", indent, prefix);
|
||||||
let cursor_position = position.offset + TextSize::of(&inserted);
|
|
||||||
let edit = TextEdit::insert(position.offset, inserted);
|
let edit = TextEdit::insert(position.offset, inserted);
|
||||||
|
|
||||||
Some(
|
let mut res = SourceChange::source_file_edit(
|
||||||
SourceChange::source_file_edit(
|
"On enter",
|
||||||
"On enter",
|
SourceFileEdit { edit, file_id: position.file_id },
|
||||||
SourceFileEdit { edit, file_id: position.file_id },
|
);
|
||||||
)
|
res.is_snippet = true;
|
||||||
.with_cursor(FilePosition { offset: cursor_position, file_id: position.file_id }),
|
Some(res)
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn followed_by_comment(comment: &ast::Comment) -> bool {
|
fn followed_by_comment(comment: &ast::Comment) -> bool {
|
||||||
|
@ -84,7 +82,7 @@ fn node_indent(file: &SourceFile, token: &SyntaxToken) -> Option<SmolStr> {
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use test_utils::{add_cursor, assert_eq_text, extract_offset};
|
use test_utils::{assert_eq_text, extract_offset};
|
||||||
|
|
||||||
use crate::mock_analysis::single_file;
|
use crate::mock_analysis::single_file;
|
||||||
|
|
||||||
|
@ -98,7 +96,6 @@ mod tests {
|
||||||
assert_eq!(result.source_file_edits.len(), 1);
|
assert_eq!(result.source_file_edits.len(), 1);
|
||||||
let mut actual = before.to_string();
|
let mut actual = before.to_string();
|
||||||
result.source_file_edits[0].edit.apply(&mut actual);
|
result.source_file_edits[0].edit.apply(&mut actual);
|
||||||
let actual = add_cursor(&actual, result.cursor_position.unwrap().offset);
|
|
||||||
Some(actual)
|
Some(actual)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -121,7 +118,7 @@ fn foo() {
|
||||||
",
|
",
|
||||||
r"
|
r"
|
||||||
/// Some docs
|
/// Some docs
|
||||||
/// <|>
|
/// $0
|
||||||
fn foo() {
|
fn foo() {
|
||||||
}
|
}
|
||||||
",
|
",
|
||||||
|
@ -137,7 +134,7 @@ impl S {
|
||||||
r"
|
r"
|
||||||
impl S {
|
impl S {
|
||||||
/// Some
|
/// Some
|
||||||
/// <|> docs.
|
/// $0 docs.
|
||||||
fn foo() {}
|
fn foo() {}
|
||||||
}
|
}
|
||||||
",
|
",
|
||||||
|
@ -151,7 +148,7 @@ fn foo() {
|
||||||
",
|
",
|
||||||
r"
|
r"
|
||||||
///
|
///
|
||||||
/// <|> Some docs
|
/// $0 Some docs
|
||||||
fn foo() {
|
fn foo() {
|
||||||
}
|
}
|
||||||
",
|
",
|
||||||
|
@ -175,7 +172,7 @@ fn main() {
|
||||||
r"
|
r"
|
||||||
fn main() {
|
fn main() {
|
||||||
// Fix
|
// Fix
|
||||||
// <|> me
|
// $0 me
|
||||||
let x = 1 + 1;
|
let x = 1 + 1;
|
||||||
}
|
}
|
||||||
",
|
",
|
||||||
|
@ -195,7 +192,7 @@ fn main() {
|
||||||
r"
|
r"
|
||||||
fn main() {
|
fn main() {
|
||||||
// Fix
|
// Fix
|
||||||
// <|>
|
// $0
|
||||||
// me
|
// me
|
||||||
let x = 1 + 1;
|
let x = 1 + 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -102,7 +102,7 @@ pub enum OnEnter {}
|
||||||
|
|
||||||
impl Request for OnEnter {
|
impl Request for OnEnter {
|
||||||
type Params = lsp_types::TextDocumentPositionParams;
|
type Params = lsp_types::TextDocumentPositionParams;
|
||||||
type Result = Option<SourceChange>;
|
type Result = Option<SnippetWorkspaceEdit>;
|
||||||
const METHOD: &'static str = "rust-analyzer/onEnter";
|
const METHOD: &'static str = "rust-analyzer/onEnter";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -159,12 +159,12 @@ pub fn handle_join_lines(
|
||||||
pub fn handle_on_enter(
|
pub fn handle_on_enter(
|
||||||
world: WorldSnapshot,
|
world: WorldSnapshot,
|
||||||
params: lsp_types::TextDocumentPositionParams,
|
params: lsp_types::TextDocumentPositionParams,
|
||||||
) -> Result<Option<lsp_ext::SourceChange>> {
|
) -> Result<Option<lsp_ext::SnippetWorkspaceEdit>> {
|
||||||
let _p = profile("handle_on_enter");
|
let _p = profile("handle_on_enter");
|
||||||
let position = from_proto::file_position(&world, params)?;
|
let position = from_proto::file_position(&world, params)?;
|
||||||
match world.analysis().on_enter(position)? {
|
match world.analysis().on_enter(position)? {
|
||||||
None => Ok(None),
|
None => Ok(None),
|
||||||
Some(source_change) => to_proto::source_change(&world, source_change).map(Some),
|
Some(source_change) => to_proto::snippet_workspace_edit(&world, source_change).map(Some),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -474,27 +474,21 @@ fn main() {{}}
|
||||||
position: Position { line: 0, character: 5 },
|
position: Position { line: 0, character: 5 },
|
||||||
},
|
},
|
||||||
json!({
|
json!({
|
||||||
"cursorPosition": {
|
"documentChanges": [
|
||||||
"position": { "character": 4, "line": 1 },
|
{
|
||||||
"textDocument": { "uri": "file:///[..]src/m0.rs" }
|
"edits": [
|
||||||
},
|
{
|
||||||
"label": "On enter",
|
"insertTextFormat": 2,
|
||||||
"workspaceEdit": {
|
"newText": "\n/// $0",
|
||||||
"documentChanges": [
|
"range": {
|
||||||
{
|
"end": { "character": 5, "line": 0 },
|
||||||
"edits": [
|
"start": { "character": 5, "line": 0 }
|
||||||
{
|
|
||||||
"newText": "\n/// ",
|
|
||||||
"range": {
|
|
||||||
"end": { "character": 5, "line": 0 },
|
|
||||||
"start": { "character": 5, "line": 0 }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
],
|
}
|
||||||
"textDocument": { "uri": "file:///[..]src/m0.rs", "version": null }
|
],
|
||||||
}
|
"textDocument": { "uri": "file:///[..]src/m0.rs", "version": null }
|
||||||
]
|
}
|
||||||
}
|
]
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
let elapsed = start.elapsed();
|
let elapsed = start.elapsed();
|
||||||
|
@ -526,27 +520,21 @@ version = \"0.0.0\"
|
||||||
position: Position { line: 0, character: 8 },
|
position: Position { line: 0, character: 8 },
|
||||||
},
|
},
|
||||||
json!({
|
json!({
|
||||||
"cursorPosition": {
|
"documentChanges": [
|
||||||
"position": { "line": 1, "character": 4 },
|
{
|
||||||
"textDocument": { "uri": "file:///[..]src/main.rs" }
|
"edits": [
|
||||||
},
|
{
|
||||||
"label": "On enter",
|
"insertTextFormat": 2,
|
||||||
"workspaceEdit": {
|
"newText": "\r\n/// $0",
|
||||||
"documentChanges": [
|
"range": {
|
||||||
{
|
"end": { "line": 0, "character": 8 },
|
||||||
"edits": [
|
"start": { "line": 0, "character": 8 }
|
||||||
{
|
|
||||||
"newText": "\r\n/// ",
|
|
||||||
"range": {
|
|
||||||
"end": { "line": 0, "character": 8 },
|
|
||||||
"start": { "line": 0, "character": 8 }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
],
|
}
|
||||||
"textDocument": { "uri": "file:///[..]src/main.rs", "version": null }
|
],
|
||||||
}
|
"textDocument": { "uri": "file:///[..]src/main.rs", "version": null }
|
||||||
]
|
}
|
||||||
}
|
]
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,36 +53,57 @@ export function selectAndApplySourceChange(ctx: Ctx): Cmd {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export function applySnippetWorkspaceEdit(_ctx: Ctx): Cmd {
|
export function applySnippetWorkspaceEditCommand(_ctx: Ctx): Cmd {
|
||||||
return async (edit: vscode.WorkspaceEdit) => {
|
return async (edit: vscode.WorkspaceEdit) => {
|
||||||
assert(edit.entries().length === 1, `bad ws edit: ${JSON.stringify(edit)}`);
|
await applySnippetWorkspaceEdit(edit);
|
||||||
const [uri, edits] = edit.entries()[0];
|
|
||||||
|
|
||||||
const editor = vscode.window.visibleTextEditors.find((it) => it.document.uri.toString() === uri.toString());
|
|
||||||
if (!editor) return;
|
|
||||||
|
|
||||||
let editWithSnippet: vscode.TextEdit | undefined = undefined;
|
|
||||||
let lineDelta = 0;
|
|
||||||
await editor.edit((builder) => {
|
|
||||||
for (const indel of edits) {
|
|
||||||
const isSnippet = indel.newText.indexOf('$0') !== -1 || indel.newText.indexOf('${') !== -1;
|
|
||||||
if (isSnippet) {
|
|
||||||
editWithSnippet = indel;
|
|
||||||
} else {
|
|
||||||
if (!editWithSnippet) {
|
|
||||||
lineDelta = (indel.newText.match(/\n/g) || []).length - (indel.range.end.line - indel.range.start.line);
|
|
||||||
}
|
|
||||||
builder.replace(indel.range, indel.newText);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (editWithSnippet) {
|
|
||||||
const snip = editWithSnippet as vscode.TextEdit;
|
|
||||||
const range = snip.range.with(
|
|
||||||
snip.range.start.with(snip.range.start.line + lineDelta),
|
|
||||||
snip.range.end.with(snip.range.end.line + lineDelta),
|
|
||||||
);
|
|
||||||
await editor.insertSnippet(new vscode.SnippetString(snip.newText), range);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function applySnippetWorkspaceEdit(edit: vscode.WorkspaceEdit) {
|
||||||
|
assert(edit.entries().length === 1, `bad ws edit: ${JSON.stringify(edit)}`);
|
||||||
|
const [uri, edits] = edit.entries()[0];
|
||||||
|
|
||||||
|
const editor = vscode.window.visibleTextEditors.find((it) => it.document.uri.toString() === uri.toString());
|
||||||
|
if (!editor) return;
|
||||||
|
|
||||||
|
let selection: vscode.Selection | undefined = undefined;
|
||||||
|
let lineDelta = 0;
|
||||||
|
await editor.edit((builder) => {
|
||||||
|
for (const indel of edits) {
|
||||||
|
const parsed = parseSnippet(indel.newText);
|
||||||
|
if (parsed) {
|
||||||
|
const [newText, [placeholderStart, placeholderLength]] = parsed;
|
||||||
|
const prefix = newText.substr(0, placeholderStart);
|
||||||
|
const lastNewline = prefix.lastIndexOf('\n');
|
||||||
|
|
||||||
|
const startLine = indel.range.start.line + lineDelta + countLines(prefix);
|
||||||
|
const startColumn = lastNewline === -1 ?
|
||||||
|
indel.range.start.character + placeholderStart
|
||||||
|
: prefix.length - lastNewline - 1;
|
||||||
|
const endColumn = startColumn + placeholderLength;
|
||||||
|
selection = new vscode.Selection(
|
||||||
|
new vscode.Position(startLine, startColumn),
|
||||||
|
new vscode.Position(startLine, endColumn),
|
||||||
|
);
|
||||||
|
builder.replace(indel.range, newText);
|
||||||
|
} else {
|
||||||
|
lineDelta = countLines(indel.newText) - (indel.range.end.line - indel.range.start.line);
|
||||||
|
builder.replace(indel.range, indel.newText);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (selection) editor.selection = selection;
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseSnippet(snip: string): [string, [number, number]] | undefined {
|
||||||
|
const m = snip.match(/\$(0|\{0:([^}]*)\})/);
|
||||||
|
if (!m) return undefined;
|
||||||
|
const placeholder = m[2] ?? "";
|
||||||
|
const range: [number, number] = [m.index!!, placeholder.length];
|
||||||
|
const insert = snip.replace(m[0], placeholder);
|
||||||
|
return [insert, range];
|
||||||
|
}
|
||||||
|
|
||||||
|
function countLines(text: string): number {
|
||||||
|
return (text.match(/\n/g) || []).length;
|
||||||
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import * as vscode from 'vscode';
|
import * as vscode from 'vscode';
|
||||||
import * as ra from '../rust-analyzer-api';
|
import * as ra from '../rust-analyzer-api';
|
||||||
|
|
||||||
import { applySourceChange } from '../source_change';
|
|
||||||
import { Cmd, Ctx } from '../ctx';
|
import { Cmd, Ctx } from '../ctx';
|
||||||
|
import { applySnippetWorkspaceEdit } from '.';
|
||||||
|
|
||||||
async function handleKeypress(ctx: Ctx) {
|
async function handleKeypress(ctx: Ctx) {
|
||||||
const editor = ctx.activeRustEditor;
|
const editor = ctx.activeRustEditor;
|
||||||
|
@ -21,7 +21,8 @@ async function handleKeypress(ctx: Ctx) {
|
||||||
});
|
});
|
||||||
if (!change) return false;
|
if (!change) return false;
|
||||||
|
|
||||||
await applySourceChange(ctx, change);
|
const workspaceEdit = client.protocol2CodeConverter.asWorkspaceEdit(change);
|
||||||
|
await applySnippetWorkspaceEdit(workspaceEdit);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -91,7 +91,7 @@ export async function activate(context: vscode.ExtensionContext) {
|
||||||
ctx.registerCommand('debugSingle', commands.debugSingle);
|
ctx.registerCommand('debugSingle', commands.debugSingle);
|
||||||
ctx.registerCommand('showReferences', commands.showReferences);
|
ctx.registerCommand('showReferences', commands.showReferences);
|
||||||
ctx.registerCommand('applySourceChange', commands.applySourceChange);
|
ctx.registerCommand('applySourceChange', commands.applySourceChange);
|
||||||
ctx.registerCommand('applySnippetWorkspaceEdit', commands.applySnippetWorkspaceEdit);
|
ctx.registerCommand('applySnippetWorkspaceEdit', commands.applySnippetWorkspaceEditCommand);
|
||||||
ctx.registerCommand('selectAndApplySourceChange', commands.selectAndApplySourceChange);
|
ctx.registerCommand('selectAndApplySourceChange', commands.selectAndApplySourceChange);
|
||||||
|
|
||||||
ctx.pushCleanup(activateTaskProvider(workspaceFolder));
|
ctx.pushCleanup(activateTaskProvider(workspaceFolder));
|
||||||
|
|
|
@ -69,7 +69,7 @@ export interface JoinLinesParams {
|
||||||
export const joinLines = request<JoinLinesParams, SourceChange>("joinLines");
|
export const joinLines = request<JoinLinesParams, SourceChange>("joinLines");
|
||||||
|
|
||||||
|
|
||||||
export const onEnter = request<lc.TextDocumentPositionParams, Option<SourceChange>>("onEnter");
|
export const onEnter = request<lc.TextDocumentPositionParams, Option<lc.WorkspaceEdit>>("onEnter");
|
||||||
|
|
||||||
export interface RunnablesParams {
|
export interface RunnablesParams {
|
||||||
textDocument: lc.TextDocumentIdentifier;
|
textDocument: lc.TextDocumentIdentifier;
|
||||||
|
|
Loading…
Reference in a new issue