Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 2 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "haskell",
"displayName": "Haskell",
"description": "Haskell language support powered by the Haskell Language Server",
"version": "2.5.2",
"version": "2.4.4",
"license": "MIT",
"publisher": "haskell",
"engines": {
Expand Down Expand Up @@ -34,8 +34,7 @@
},
"activationEvents": [
"onLanguage:haskell",
"onLanguage:literate haskell",
"onLanguage:cabal"
"onLanguage:literate haskell"
],
"main": "./dist/extension",
"contributes": {
Expand All @@ -50,15 +49,6 @@
".hs"
]
},
{
"id": "cabal",
"aliases": [
"Cabal"
],
"extensions": [
".cabal"
]
},
{
"id": "literate haskell",
"aliases": [
Expand Down
1 change: 0 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,6 @@ async function activateServerForFolder(context: ExtensionContext, uri: Uri, fold
documentSelector: [
{ scheme: 'file', language: 'haskell', pattern: pat },
{ scheme: 'file', language: 'literate haskell', pattern: pat },
{ scheme: 'file', language: 'cabal', pattern: pat },
],
synchronize: {
// Synchronize the setting section 'haskell' to the server.
Expand Down