Skip to content

EduardSergeev/vscode-haskutil

Repository files navigation

VSCode Haskutil

Build Status Coverage Status vscode-ghc-simple on Visual Studio Marketplace Installs

'QuickFix' actions for Haskell editor

Requirements

This extension uses diagnostics (errors and warnings) from PROBLEMS tab which is populated by other Haskell extensions such as Simple GHC, Haskero, ghcid or ghcide. Please install one of them along with this extension.

Features

Individual features can be turned on and off via haskutil.feature.[feature] flags

Add missing import

Add missing import
Uses Hoogle to search for matching modules. Configurable via hoogle-vscode extension configuration (can be configured to use local instance of hoogle for example).

Organize imports

Organize imports
Sorting and alignment are configurable via haskutil.sortImports and haskutil.alignImports respectively. Imports can also be organized on file save with haskutil.organiseImportsOnSave: true (dafault is false).

Remove unused imports

Remove unused imports
Removes unused imports identified by warnings. haskutil.alignImports controls if remaning imports are also aligned.

Add missing LANGUAGE extension

Add extension
Adds LANGUAGE pragma suggested by error. List of supported pragmas is defined by haskutil.supportedExtensions.

Organize LANGUAGE extensions

Organize extensions
Splitting, sorting and alignment of extensions are configurable via haskutil.splitExtensions, haskutil.sortExtensions and haskutil.alignExtensions respectively. Extensions can also be organized on file save with haskutil.organiseExtensionOnSave: true (dafault is false).

Add top-level signature

Add top-level signature
Adds signature suggested by warning.

Fill typed hole

Fill typed hole
Replaces typed hole with one of the valid hole fits from the warning.
Similarly replaces type wildcard with inferred type.

Dependencies