We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b925ac commit 2649fc1Copy full SHA for 2649fc1
lib/grammars.coffee
@@ -326,6 +326,17 @@ module.exports =
326
"File Based":
327
command: "bash"
328
args: (context) -> ['-c', "gfortran '" + context.filepath + "' -ffixed-form -o /tmp/f.out && /tmp/f.out"]
329
+
330
+ "Free Pascal":
331
+ "Selection Based":
332
+ command: "fsc"
333
+ args: (context) ->
334
+ code = context.getCode()
335
+ tmpFile = GrammarUtils.createTempFileWithCode(code)
336
+ [tmpFile]
337
+ "File Based":
338
339
+ args: (context) -> [context.filepath]
340
341
Gherkin:
342
0 commit comments