<div dir="ltr">Hello xmonad!<div><br></div><div>Recently i change myWorkspaces from strings to numbers to be able to use the dice font in ppCurrent/Visible. (it's pretty cool)</div><div><br></div><div>Formerly myWorkspace was defined as so:</div><div><div><i>--myWorkspaces = ["1","2","3","4","5","6","7","8","9"] ++ ["NSP"]</i></div></div><div>Now:</div><div><div><i>myWorkspaces = map show $ [1..9] ++ [0] -- 0 is the NSP ws</i></div></div><div><br></div><div>Everything has been working fine. The only issue is in my keybindings. specifically in CycleWS.</div><div><br></div><div>So i have some keybindings as so:</div><div>...</div><div>...</div><div><div><i> , ((mod, <span class="" style="white-space:pre">       </span>xK_Up), windows . W.greedyView =<< findWorkspace getSortByIndexNoNSP Next HiddenNonEmptyWS 1) -- move to next WS non NSP</i></div></div><div><i>...</i></div><div><i>...</i></div><div><i>where</i></div><div><div><i><span class="" style="white-space:pre">  </span>getSortByIndexNoNSP = fmap (.namedScratchpadFilterOutWorkspace) getSortByIndex</i></div></div><div><i><br></i></div><div><i><br></i></div><div><br></div><div>So, if i understand this correctly, "namedScratchpadFilterOutWorkspace" doesnt work because the "name" of the workspace is now the number "0" when it formerly was the string "NSP".</div><div><br></div><div>How can i get the keybinding to work when i've changed the NSP workpace name to an actual number?</div><div><br></div><div>Please let me know if more info is needed.</div><div><br></div><div>Thank you in advance.</div><div><br></div><div>-Dave</div></div>