Remove the emoji before Run/Debug codelens (#488)
Signed-off-by: Jinbo Wang <jinbwan@microsoft.com>
This commit is contained in:
parent
5ab4fd83ed
commit
bcd69b52e4
|
@ -66,13 +66,13 @@ class DebugCodeLensProvider implements vscode.CodeLensProvider {
|
||||||
return _.flatten(mainMethods.map((method) => {
|
return _.flatten(mainMethods.map((method) => {
|
||||||
return [
|
return [
|
||||||
new vscode.CodeLens(method.range, {
|
new vscode.CodeLens(method.range, {
|
||||||
title: "▶ Run",
|
title: "Run",
|
||||||
command: JAVA_RUN_COMMAND,
|
command: JAVA_RUN_COMMAND,
|
||||||
tooltip: "Run Java Program",
|
tooltip: "Run Java Program",
|
||||||
arguments: [ method.mainClass, method.projectName, document.uri ],
|
arguments: [ method.mainClass, method.projectName, document.uri ],
|
||||||
}),
|
}),
|
||||||
new vscode.CodeLens(method.range, {
|
new vscode.CodeLens(method.range, {
|
||||||
title: "🐞 Debug",
|
title: "Debug",
|
||||||
command: JAVA_DEBUG_COMMAND,
|
command: JAVA_DEBUG_COMMAND,
|
||||||
tooltip: "Debug Java Program",
|
tooltip: "Debug Java Program",
|
||||||
arguments: [ method.mainClass, method.projectName, document.uri ],
|
arguments: [ method.mainClass, method.projectName, document.uri ],
|
||||||
|
|
Loading…
Reference in New Issue