Closed
Description
I realize that I am one of very few haskellers who actually want this so I am willing to implement it myself 😅
basically, it's typical for me to put all of my language extensions in one language pragma like so
{-# LANGUAGE
OverloadedString
, GADTs
#-}
under some criteria like
length languageExtensions == 1 && length (head languageExtensions) > 1
I would like the add "LanguageExtension"
codeaction to append to this list
currently the codeaction would do something like
{-# LANGUAGE
OverloadedString
, GADTs
#-}
{-# LANGUAGE ScopedTypeVariables #-}