You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 #-}