This adds a new quick fix for function signatures without a body:
The fix adds the following stub:
someFunc :: Int -> Int someFunc = failed
This also works in indented contexts:
which is completed to:
someFunc :: Int -> Int someFunc = id where f :: Int -> Int f = failed