Skip to content

Commit 3e7f710

Browse files
committed
chore(UX): Languages compiled using dotnet are now indicated as (dotnet). This change affects particulary C# users, making easier to understand what when you are using the csc compiler or the dotnet compiler.
1 parent cb7c23c commit 3e7f710

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

lua/compiler/languages/cs.lua

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ local M = {}
44

55
--- Frontend - options displayed on telescope
66
M.options = {
7-
{ text = "1 - Build and run program", value = "option1" },
8-
{ text = "2 - Build program", value = "option2" },
9-
{ text = "3 - Run program", value = "option3" },
10-
{ text = "4 - Build solution", value = "option4" },
7+
{ text = "1 - build and run program (csc)", value = "option1" },
8+
{ text = "2 - build program (csc)", value = "option2" },
9+
{ text = "3 - run program (csc)", value = "option3" },
10+
{ text = "4 - Build solution (csc)", value = "option4" },
1111
{ text = "", value = "separator" },
12-
{ text = "5 - Dotnet build and run", value = "option5" },
13-
{ text = "6 - Dotnet build", value = "option6" },
12+
{ text = "5 - Build and run program (dotnet)", value = "option5" },
13+
{ text = "6 - Build program (dotnet)", value = "option6" },
1414
{ text = "", value = "separator" },
1515
{ text = "7 - Run Makefile", value = "option7" }
1616
}

lua/compiler/languages/fsharp.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ local M = {}
44

55
--- Frontend - options displayed on telescope
66
M.options = {
7-
{ text = "1 - Dotnet build and run", value = "option1" },
8-
{ text = "2 - Dotnet build", value = "option2" },
7+
{ text = "1 - Build and run program (dotnet)", value = "option1" },
8+
{ text = "2 - Build program (dotnet)", value = "option2" },
99
{ text = "3 - Run REPL", value = "option3" },
1010
{ text = "4 - Run Makefile", value = "option4" }
1111
}

lua/compiler/languages/vb.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ local M = {}
44

55
--- Frontend - options displayed on telescope
66
M.options = {
7-
{ text = "1 - Dotnet build and run", value = "option1" },
8-
{ text = "2 - Dotnet build", value = "option2" },
7+
{ text = "1 - Build and run program (dotnet)", value = "option1" },
8+
{ text = "2 - Build program (dotnet)", value = "option2" },
99
{ text = "3 - Run Makefile", value = "option3" }
1010
}
1111

0 commit comments

Comments
 (0)