This commit is contained in:
Dave 2017-04-13 13:37:30 -04:00 committed by GitHub
parent 21062dd392
commit 20e8a33e0c

View File

@ -61,9 +61,9 @@ import XMonad.Util.Run (runProcessWithInput)
-- --
-- Then add a keybinding for 'passPrompt', 'passGeneratePrompt' or 'passRemovePrompt': -- Then add a keybinding for 'passPrompt', 'passGeneratePrompt' or 'passRemovePrompt':
-- --
-- > , ((modMask x , xK_p) , passPrompt xpconfig) -- > , ((modMask , xK_p) , passPrompt xpconfig)
-- > , ((modMask x .|. controlMask, xK_p) , passGeneratePrompt xpconfig) -- > , ((modMask .|. controlMask, xK_p) , passGeneratePrompt xpconfig)
-- > , ((modMask x .|. controlMask .|. shiftMask, xK_p), passRemovePrompt xpconfig) -- > , ((modMask .|. controlMask .|. shiftMask, xK_p), passRemovePrompt xpconfig)
-- --
-- For detailed instructions on: -- For detailed instructions on:
-- --