Commit graph

1000 commits

Author SHA1 Message Date
Martin Aeschlimann f6e9a5b74a Merge pull request #9709 from hm1992/master
Detect shebang for Groovy files
2016-08-22 14:41:38 +02:00
Martin Aeschlimann 14908e3603 Fixes #9965: Update default project.json TFMs 2016-08-22 14:39:36 +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
Martin Aeschlimann b660f2c3ba Merge pull request #10651 from gontadu/patch-1
Added .bash_aliases to recognised extensions
2016-08-22 14:31:19 +02:00
Martin Aeschlimann 92a207a513 Merge pull request #10240 from cloudRoutine/patch-2
removed ocaml extensions
2016-08-22 14:29:29 +02:00
Martin Aeschlimann 5bf9643d05 Merge pull request #10698 from kaloyan-raev/composer-schema
Contribute JSON Schema for composer.json
2016-08-22 14:25:34 +02:00
Martin Aeschlimann 7f80b73627 Merge pull request #10681 from DonJayamanne/pythontm
fixes #7688, fixes #2936, fixes #2867, fixes #2208
2016-08-22 08:40:44 +02:00
Don Jayamanne f4967722fa fixes #7688, fixes #2936, fixes #2867, fixes #2208 2016-08-22 08:51:53 +10:00
Benjamin Pasero 2a77b0eb53 updated folder icons 2016-08-21 11:00:17 +02:00
Martin Aeschlimann cfc66f2601 [file icon code assist] make selector stronger 2016-08-20 21:18:47 +02:00
Martin Aeschlimann b7c0163459 [file icons] code assist for icon sets in settings 2016-08-20 21:18:46 +02:00
Martin Aeschlimann 3ae6814c8f [fileicons] single setting, laguageId/fileName/ext and theme overrides 2016-08-20 21:18:46 +02:00
Andre Weinand 63c8b7a7c7 update node-debug 2016-08-19 12:58:48 +02:00
Kaloyan Raev ba72cfcf34 Contribute JSON Schema for composer.json 2016-08-19 12:06:43 +03:00
Martin Aeschlimann 6cc17542b8 Default file icon sets 2016-08-18 22:24:26 +02:00
Johannes Rieken 9cb04a03c8 tests for undefined vs '', #10640 2016-08-18 21:57:26 +02:00
Andre Weinand 82b2c44aaa update node-debug 2016-08-18 16:24:34 +02:00
Martin Aeschlimann 9ae0f9d05a Fix for Jade grammar (mystery change from * to +) 2016-08-18 15:40:41 +02:00
Eshwar Andhavarapu 64a05e065f Added .bash_aliases to recognised extensions 2016-08-18 08:42:21 +02:00
Martin Aeschlimann 9961aa2df1 Fix colorizer tests after vscode-textmate adoption 2016-08-17 20:29:17 +02:00
Dirk Baeumer c4d6481247 Make TypeScript extension ready for 2.0 2016-08-17 12:43:17 +02:00
Andre Weinand 55168276e4 update node-debug 2016-08-16 23:32:58 +02:00
Harry Mallon d681138365 Detect shebang for Groovy files
* Should match "#!groovy", "#!/usr/bin/env /path/to/groovy" & "#!/usr/bin/groovy" types
* Very useful for people editing Jenkinsfile configuration (which has no file extension)
2016-08-15 11:18:26 +01:00
Martin Aeschlimann dc4c01473d fixes #10427: dsql files not picked up as SQL syntax even when grammar has them 2016-08-15 11:20:02 +02:00
Andre Weinand 3efdbfd636 update node-debug and OSSREADME 2016-08-12 20:01:21 +02:00
Martin Aeschlimann fbe40a406a [json] update to latest languageserver 2016-08-12 18:34:35 +02:00
Martin Aeschlimann 70a13f2d11 [css] update to latest languageserver 2016-08-12 18:34:35 +02:00
Johannes Rieken a8a920e2fc don't push code without tests... #8093 2016-08-12 12:32:15 +02:00
Andre Weinand 666ed83a2d Revert "update node-debug for xhr caching"
This reverts commit ae91d66546.
2016-08-10 10:58:43 +02:00
Andre Weinand ae91d66546 update node-debug for xhr caching 2016-08-10 00:28:54 +02:00
Martin Aeschlimann ebe4718773 [css] update css language service 2016-08-09 22:47:50 +02:00
Martin Aeschlimann b89e129aa2 [cpp] add grammar update script 2016-08-09 11:42:10 +02:00
Martin Aeschlimann d266e96598 Updated c++.json to atom/language-c@7922a22 (2016-05-24) 2016-08-09 11:42:10 +02:00
Martin Aeschlimann 27b1baeec4 Updated c.json to atom/language-c@3fe925a (2016-05-27) 2016-08-09 11:42:10 +02:00
Martin Aeschlimann c927cca365 Update grammar to textmate/shellscript.tmbundle@887a69b (2016-04-28). Fixes 10314 2016-08-09 10:50:33 +02:00
Johannes Rieken fbebca5527 do not use for-of and const
https://github.com/Microsoft/TypeScript/issues/10220
2016-08-09 10:41:21 +02:00
Martin Aeschlimann 11d23f1562 files.associations intellisense does not work within quotation marks. Fxes #10184 2016-08-08 17:33:42 +02:00
Martin Aeschlimann b59a62206c update css languageservice 2016-08-08 16:33:08 +02:00
Johannes Rieken ff061902a7 add cancellation support for showInput and showQuickPick, #9377 2016-08-08 15:51:06 +02:00
Johannes Rieken 0172356a73 fix command completions in keybindings.json 2016-08-08 11:52:25 +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
Johannes Rieken 4e9a4db786 Merge branch 'master' into joh/links 2016-08-04 11:08:41 +02:00
Martin Aeschlimann 7744fff094 [jade] convert to json: davidrios/jade-tmbundle@7c1304a (2016-04-29) 2016-08-03 17:45:45 +02:00
Martin Aeschlimann cd5fd41560 [makefile] Update grammar to textmate/make.tmbundle@1a1827d (2015-12-03). Fixes #9757. 2016-08-03 16:13:33 +02:00
Johannes Rieken 6f5b444f1c add custom link provider for vscode.d.ts 2016-08-03 15:45:47 +02:00
Martin Aeschlimann 3558e7e862 [scss] Update grammar to atom/language-sass@38b8d07 (2016-07-20). Fixes #9816, fixes #9716 2016-08-03 15:45:30 +02:00
Martin Aeschlimann 216bba8e41 Update go grammar to atom/language-go@93594df (2015-12-10). Fixes #9841. 2016-08-03 12:13:18 +02:00
Martin Aeschlimann c5fc19d474 grammar update script: Generalize as /build/npm/update-grammar 2016-08-03 12:13:18 +02:00
Martin Aeschlimann 5341c17cca TS completes single quote in comments fixes #10068 2016-08-03 12:13:18 +02:00