Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | in Xmonad navigation keybindings, fix support for selections (for now, just use "standard" shift select convention, which is easier to implement...) |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
c251e9d44ea3d436baedea46d764f4ae |
| User & Date: | beyert 2017-06-11 12:06:31.967 |
Context
| 2017-06-12 08:40 | small update to Xmonad configuration check-in: 5264a72f21 user: beyert tags: trunk | |
| 2017-06-11 12:06 | in Xmonad navigation keybindings, fix support for selections (for now, just use "standard" shift select convention, which is easier to implement...) check-in: c251e9d44e user: beyert tags: trunk | |
| 2017-06-11 11:55 | update XTest key generation, add URL management keybindings and add missing XTest script missing from prior commit check-in: 1dea95c280 user: beyert tags: trunk | |
Changes
Changes to .xmonad/xmonad.hs.
| ︙ | ︙ | |||
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 |
-- Shrink / Expand the column (doesn't work, to fix...)
-- , ((modMask .|. controlMask, xK_h), sendMessage Shrink)
-- , ((modMask .|. controlMask, xK_l), sendMessage Expand)
, ((modMask .|. controlMask, xK_h), spawn' $ "focus-cursor left")
, ((modMask .|. controlMask, xK_j), spawn' $ "focus-cursor up")
, ((modMask .|. controlMask, xK_k), spawn' $ "focus-cursor down")
, ((modMask .|. controlMask, xK_l), spawn' $ "focus-cursor right")
, ((modMask .|. controlMask, xK_s), spawn' $ "focus-cursor home")
, ((modMask .|. controlMask, xK_f), spawn' $ "focus-cursor end")
, ((modMask .|. controlMask, xK_x), spawn' $ "focus-cursor prior")
, ((modMask .|. controlMask, xK_v), spawn' $ "focus-cursor next")
--, ((modMask .|. controlMask .|. shiftMask, xK_x), spawn' $ "focus-cursor cHome")
--, ((modMask .|. controlMask .|. shiftMask, xK_v), spawn' $ "focus-cursor cEnd")
--, ((modMask .|. controlMask .|. shiftMask, xK_s), spawn' $ "focus-cursor cPrior")
--, ((modMask .|. controlMask .|. shiftMask, xK_f), spawn' $ "focus-cursor cNext")
, ((modMask .|. mod1Mask .|. controlMask, xK_h), spawn' $ "chromium-focus-tab prior")
, ((modMask .|. mod1Mask .|. controlMask, xK_l), spawn' $ "chromium-focus-tab next")
, ((modMask .|. controlMask .|. shiftMask, xK_b), spawn' $ "chromium-manage-url backward")
, ((modMask .|. controlMask .|. shiftMask, xK_o), spawn' $ "chromium-manage-url forward")
, ((modMask .|. controlMask, xK_b), spawn' $ "chromium-manage-url downward")
, ((modMask .|. controlMask, xK_o), spawn' $ "chromium-manage-url upward")
, ((modMask .|. controlMask, xK_d), spawn' $ "chromium-manage-tab close")
| > > > > > > > > | 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 |
-- Shrink / Expand the column (doesn't work, to fix...)
-- , ((modMask .|. controlMask, xK_h), sendMessage Shrink)
-- , ((modMask .|. controlMask, xK_l), sendMessage Expand)
, ((modMask .|. controlMask, xK_h), spawn' $ "focus-cursor left")
, ((modMask .|. controlMask, xK_j), spawn' $ "focus-cursor up")
, ((modMask .|. controlMask, xK_k), spawn' $ "focus-cursor down")
, ((modMask .|. controlMask, xK_l), spawn' $ "focus-cursor right")
, ((modMask .|. controlMask .|. shiftMask, xK_h), spawn' $ "focus-cursor left")
, ((modMask .|. controlMask .|. shiftMask, xK_j), spawn' $ "focus-cursor up")
, ((modMask .|. controlMask .|. shiftMask, xK_k), spawn' $ "focus-cursor down")
, ((modMask .|. controlMask .|. shiftMask, xK_l), spawn' $ "focus-cursor right")
, ((modMask .|. controlMask, xK_s), spawn' $ "focus-cursor home")
, ((modMask .|. controlMask, xK_f), spawn' $ "focus-cursor end")
, ((modMask .|. controlMask, xK_x), spawn' $ "focus-cursor prior")
, ((modMask .|. controlMask, xK_v), spawn' $ "focus-cursor next")
--, ((modMask .|. controlMask .|. shiftMask, xK_x), spawn' $ "focus-cursor cHome")
--, ((modMask .|. controlMask .|. shiftMask, xK_v), spawn' $ "focus-cursor cEnd")
--, ((modMask .|. controlMask .|. shiftMask, xK_s), spawn' $ "focus-cursor cPrior")
--, ((modMask .|. controlMask .|. shiftMask, xK_f), spawn' $ "focus-cursor cNext")
, ((modMask .|. controlMask .|. shiftMask, xK_s), spawn' $ "focus-cursor home")
, ((modMask .|. controlMask .|. shiftMask, xK_f), spawn' $ "focus-cursor end")
, ((modMask .|. controlMask .|. shiftMask, xK_x), spawn' $ "focus-cursor prior")
, ((modMask .|. controlMask .|. shiftMask, xK_v), spawn' $ "focus-cursor next")
, ((modMask .|. mod1Mask .|. controlMask, xK_h), spawn' $ "chromium-focus-tab prior")
, ((modMask .|. mod1Mask .|. controlMask, xK_l), spawn' $ "chromium-focus-tab next")
, ((modMask .|. controlMask .|. shiftMask, xK_b), spawn' $ "chromium-manage-url backward")
, ((modMask .|. controlMask .|. shiftMask, xK_o), spawn' $ "chromium-manage-url forward")
, ((modMask .|. controlMask, xK_b), spawn' $ "chromium-manage-url downward")
, ((modMask .|. controlMask, xK_o), spawn' $ "chromium-manage-url upward")
, ((modMask .|. controlMask, xK_d), spawn' $ "chromium-manage-tab close")
|
| ︙ | ︙ |