Alex Ross
6c6cd0aab4
Update grammars
2018-12-12 17:25:07 +01:00
isidor
9edd984da8
delete OSSREADME.json
2018-11-20 12:54:22 +01:00
isidor
2ba92aa3e8
add commitHash to cgmanifest
2018-11-15 17:43:46 +01:00
isidor
347fb6347b
add all cgmanifests. Still no commitHash
2018-11-14 18:18:25 +01:00
Alex Ross
c71f524777
Updated grammars
2018-11-06 11:39:33 +01:00
Alex Ross
fd8d4b09e1
Update grammars
2018-10-23 16:13:27 +02:00
Martin Aeschlimann
10a1d2a50a
update grammars
2018-10-04 12:00:39 +02:00
Alex Dima
34e7a220c8
Avoid shipping unnecessary files
2018-09-19 19:53:46 +02:00
Martin Aeschlimann
c640a0ed5c
adopt color changes in colorizer tests
2018-07-27 11:02:03 +02:00
Martin Aeschlimann
74c270e887
update grammars
2018-07-23 20:34:08 +02:00
Martin Aeschlimann
772aaf777a
update grammars
2018-06-11 13:03:28 +02:00
Martin Aeschlimann
bf33900a41
update grammars. Fixes #49071
2018-05-03 17:11:41 +02:00
Greg Van Liew
b3a1b98d54
Edit pass on built-in extension descriptions ( #44875 )
2018-03-01 16:43:06 -08:00
Ramya Achutha Rao
15d0e9b30b
Remove and other language features from description of basic builtin extensions #44626
2018-02-27 18:15:50 -08:00
Martin Aeschlimann
8bd41ceeca
built-in extensions: version to 1.0.0 (for #43978 )
2018-02-27 15:16:07 +01:00
Martin Aeschlimann
292a290e3f
Rename built-in syntax and snippet extensions to "Language Basics". Fixes #44241
2018-02-26 21:27:22 +01:00
Martin Aeschlimann
e45d279b36
description & name for built-in languages ( #43978 )
2018-02-20 10:09:22 +01:00
Martin Aeschlimann
8fdf170a08
update grammar script: remove unused properties
2018-02-12 16:54:46 +01:00
Martin Aeschlimann
69729b7841
[fsharp] make grammar file name consistent
2018-02-09 12:45:27 +01:00
Martin Aeschlimann
8a154397c3
[fsharp] update grammar
2017-11-10 09:19:56 +01:00
Martin Aeschlimann
f5082e0e96
[fsharp] update grammar
2017-10-24 11:05:54 +02:00
Martin Aeschlimann
cf70385df5
Folding regions broken
2017-10-12 16:55:15 +02:00
Martin Aeschlimann
1fb361861f
[folding] add work boundries to folding markers
2017-10-11 17:28:10 +02:00
Yemi Bedu @ P&R
d95f9a43c4
expand editor code region styles
...
Expand editor code region styles. Allow a space after the leading comment indicator. Allow both single line and block comments.
Examples:
// #region name
(* region name *)
2017-10-09 12:08:11 -04:00
Martin Aeschlimann
ab4cc0d187
[fsharp] add folding region markers and snippets
2017-09-25 23:25:05 +02:00
Martin Aeschlimann
a678f60100
FoldingRules language configuration simplification
2017-09-22 13:50:03 +02:00
Martin Aeschlimann
de68414a9a
[folding] should not fold whitespace after function. Fixes #3353
2017-09-20 11:09:42 +02:00
Matt Bierner
43cb3b41ac
Continue tweaking default dark and light colorization for escape characters and regular expressions
2017-09-13 10:40:07 -07:00
Martin Aeschlimann
337cdb7c70
[f#] update grammar
2017-09-08 10:47:06 +02:00
rebornix
2522d11335
#12976 . FSharp auto closing not in string
2017-07-20 11:36:22 -07:00
Martin Aeschlimann
7790c4a753
update grammars
2017-07-18 10:09:48 +08:00
Joao Moreno
5667cc0e69
use vsce to determine what to package when bundling extensions
...
fixes #29054
2017-06-21 16:17:21 +02:00
Martin Aeschlimann
f9084bb244
Add information_for_contributors to grammars
2017-05-26 09:27:51 +02:00
Martin Aeschlimann
f1abf5ad11
[f#] update grammar
2017-05-18 15:41:32 +02:00
Martin Aeschlimann
ae333a8b41
test fixes for #17178
2017-05-18 10:50:30 +02:00
Martin Aeschlimann
0eaf8f4362
[fsharp] update grammar
2017-02-10 10:32:23 +01:00
Martin Aeschlimann
90a8cdb324
[fsharp] Update grammar to ionide/ionide-fsgrammar@16d4cc8 (2017-01-17)
2017-01-19 10:55:18 +01:00
Alex Dima
90d74c59aa
Use hex colors in themes integration tests
2017-01-05 09:47:08 +01:00
Alex Dima
10f68352a0
Themes integration tests
2017-01-04 22:44:08 +01:00
Martin Aeschlimann
b09e1df106
[fsharp] Updated fsharp.json to ionide/ionide-fsgrammar@864bfd9 (2016-12-21). Fixes #17820
2016-12-28 22:51:46 -04:00
Benjamin Pasero
797f90b7b5
oss input
2016-10-27 09:16:32 +02:00
Martin Aeschlimann
bcddf93bbe
Merge pull request #10239 from cloudRoutine/patch-1
...
don't auto close on single quote
2016-08-22 14:33:36 +02:00
Jared Hester
778d019b1b
removed ocaml extensions
2016-08-06 09:53:10 -04:00
Jared Hester
c4a13301d2
don't auto close on single quote
...
In F# the `'` is prepended to an identifier to indicate it is generic in type and function signatures:
```
let fn (x: 'a ) (y: 'b) = ...
type Box< 'a, 'b > () = ...
type Inter =
abstract Op : 'a -> 'b -> 'c
```
It is also common convention to append it to binding names as it is a valid identifier char, e.g. `let x = 10 in let x' = x + 5`. These usages are vastly more common than using `'` to surround a character literal and as such the auto close behavior is incredibly annoying when writing F#.
2016-08-06 09:33:45 -04:00
Martin Aeschlimann
4a13944af6
Migrate all other languages to language-configuration.json
2016-07-21 20:30:37 +02:00
Martin Aeschlimann
885a783837
[f#] autoclosing and surrounding pair
2016-04-21 22:29:14 +02:00
Martin Aeschlimann
37f5e2b355
[colorize tests] update test result data
2016-04-11 21:28:19 +02:00
Martin Aeschlimann
8509d4e47a
even more colorizer tests
2016-04-11 16:03:40 +02:00
Martin Aeschlimann
7bca0cd1c3
[fsharp] update tm grammar (1.4.11)
2015-11-30 21:35:09 +01:00
Erich Gamma
8f35cc4768
Hello Code
2015-11-13 14:39:38 +01:00