'QuickFix' actions for Haskell editor
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.
- Add missing import
- Organize imports
- Remove unused imports
- Add missing LANGUAGE extension
- Organize LANGUAGE extensions
- Add top-level signature
- Fill typed hole
Individual features can be turned on and off via haskutil.feature.[feature]
flags
Uses Hoogle to search for matching modules. Configurable via hoogle-vscode extension configuration (can be configured to use local instance of hoogle for example).
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
).
Removes unused imports identified by warnings. haskutil.alignImports
controls if remaning imports are also aligned.
Adds LANGUAGE
pragma suggested by error. List of supported pragmas is defined by haskutil.supportedExtensions
.
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
).
Adds signature suggested by warning.
Replaces typed hole with one of the valid hole fits
from the warning.
Similarly replaces type wildcard with inferred type.
- Automatic dependency (auto install) hoogle-vscode