Skip to content

Commit

Permalink
Support for tab orders on code assist
Browse files Browse the repository at this point in the history
Takes TextMate snippet syntax that is supported
by VS Code to mark tab positions for method parameter
completions.
  • Loading branch information
gorkem committed Sep 7, 2016
1 parent 3c3b696 commit 4970d0c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,9 @@ private void appendGuessingCompletion(StringBuilder buffer, CompletionProposal p

positions.add(buffer.length());
positions.add(argument.length);

buffer.append("{{");
buffer.append(argument);
buffer.append("}}");
}
}

Expand Down

0 comments on commit 4970d0c

Please sign in to comment.