Skip to content

Commit 55bbef4

Browse files
committed
Remove Fable
The 'Fable' grammar seems to be missing from any F#/Ionide Atom package.
1 parent c075cce commit 55bbef4

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ Currently supported grammars are:
3838
| Erlang | | Yes | Uses `erl` for limited selection based runs (see [#70](https://github.com/rgbkrk/atom-script/pull/70)) |
3939
| F# | Yes | | |
4040
| F* | Yes | | |
41-
| Fable | Yes | Yes | |
4241
| Fish | Yes | Yes | Finally, a way to run code within Atom for the 90s |
4342
| Forth (via GForth) | Yes | | |
4443
| Fortran (via gfortran) | Yes | |

lib/grammars.coffee

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -282,17 +282,6 @@ module.exports =
282282
command: if windows then 'fsi' else 'fsharpi'
283283
args: ({filepath}) -> ['--exec', filepath]
284284

285-
Fable:
286-
'Selection Based':
287-
command: 'fable'
288-
args: (context) ->
289-
code = context.getCode()
290-
tmpFile = GrammarUtils.createTempFileWithCode(code)
291-
return [tmpFile]
292-
'File Based':
293-
command: 'fable'
294-
args: ({filepath}) -> [filepath]
295-
296285
Forth:
297286
'File Based':
298287
command: 'gforth'

0 commit comments

Comments
 (0)