i know this is a longshot since most people don't know haskell, let alone use xmonad, but i'm at my wit's end here
i'm trying to call a function unGrab defined in the module XMonad.Operations
i'm not insane, it's right here in the source: https://hackage.haskell.org/package/xmonad-0.18.0/docs/src/XMonad.Operations.html#unGrab
i have, at the top of my xmonad config file, import XMonad
so i ought to be able to just call the function unGrab which is exactly how they do it in the tutorial: https://xmonad.org/TUTORIAL.html
but calling the function gives me a variable out of scope error
and even if i try to import the function directly with import XMonad.Operations (unGrab) i get an error saying "XMonad.Operations does not export unGrab"
please for the love of god someone help me