@@ -4,23 +4,22 @@ local M = {}
44
55--- Frontend - options displayed on telescope
66M .options = {
7- { text = " 1 - Run this file (interpreted)" , value = " option1" },
8- { text = " 2 - Run program (interpreted)" , value = " option2" },
9- { text = " 3 - Build solution (interpreted)" , value = " option3" },
7+ { text = " Run this file (interpreted)" , value = " option1" },
8+ { text = " Run program (interpreted)" , value = " option2" },
9+ { text = " Build solution (interpreted)" , value = " option3" },
1010 { text = " " , value = " separator" },
11- { text = " 4 - Build and run program (machine code)" , value = " option4" },
12- { text = " 5 - Build program (machine code)" , value = " option5" },
13- { text = " 6 - Run program (machine code)" , value = " option6" },
14- { text = " 7 - Build solution (machine code)" , value = " option7" },
11+ { text = " Build and run program (machine code)" , value = " option4" },
12+ { text = " Build program (machine code)" , value = " option5" },
13+ { text = " Run program (machine code)" , value = " option6" },
14+ { text = " Build solution (machine code)" , value = " option7" },
1515 { text = " " , value = " separator" },
16- { text = " 8 - Run program (flutter)" , value = " option8" },
17- { text = " 9 - Build for linux (flutter)" , value = " option9" },
18- { text = " 10 - Build for android (flutter)" , value = " option10" },
19- { text = " 11 - Build for ios (flutter)" , value = " option11" },
20- { text = " 12 - Build for web (flutter)" , value = " option12" },
16+ { text = " Run program (flutter)" , value = " option8" },
17+ { text = " Build for linux (flutter)" , value = " option9" },
18+ { text = " Build for android (flutter)" , value = " option10" },
19+ { text = " Build for ios (flutter)" , value = " option11" },
20+ { text = " Build for web (flutter)" , value = " option12" },
2121 { text = " " , value = " separator" },
22- { text = " 13 - Transpile program to javascript" , value = " option13" },
23- { text = " 14 - Run Makefile" , value = " option14" }
22+ { text = " Transpile program to javascript" , value = " option13" }
2423}
2524
2625--- Backend - overseer tasks performed on option selected
@@ -327,21 +326,6 @@ function M.action(selected_option)
327326 },},},})
328327 task :start ()
329328 vim .cmd (" OverseerOpen" )
330-
331-
332-
333-
334-
335-
336-
337-
338-
339-
340-
341-
342- -- =============================== MAKE ====================================--
343- elseif selected_option == " option14" then
344- require (" compiler.languages.make" ).run_makefile () -- run
345329 end
346330end
347331
0 commit comments