Compare commits
3 Commits
44588c691a
...
5913a002ca
Author | SHA1 | Date | |
---|---|---|---|
Jonathan Lamothe | 5913a002ca | ||
Jonathan Lamothe | 44860dd495 | ||
Jonathan Lamothe | e41b560d37 |
|
@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to the
|
and this project adheres to the
|
||||||
[Haskell Package Versioning Policy](https://pvp.haskell.org/).
|
[Haskell Package Versioning Policy](https://pvp.haskell.org/).
|
||||||
|
|
||||||
## Unreleased
|
## [Unreleased]
|
||||||
|
|
||||||
## 0.1.0.0 - YYYY-MM-DD
|
## [0.1.0.1] - 2024-08-17
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- added Emacs-style keybindings for cursor movement
|
||||||
|
|
|
@ -67,8 +67,8 @@ effects:
|
||||||
### Edit Mode
|
### Edit Mode
|
||||||
|
|
||||||
- ESC: Return to display mode.
|
- ESC: Return to display mode.
|
||||||
- Up/K: Move the cursor up.
|
- Up/K/CTRL-P: Move the cursor up.
|
||||||
- Down/J: Move the cursor down.
|
- Down/J/CTRL-N: Move the cursor down.
|
||||||
- Left/H: Move the cursor left.
|
- Left/H/CTRL-B: Move the cursor left.
|
||||||
- Right/L: Move the cursor right.
|
- Right/L/CTRL-F: Move the cursor right.
|
||||||
- F: Flip the bit under the cursor (1 becomes 0; 0 becomes 1).
|
- F: Flip the bit under the cursor (1 becomes 0; 0 becomes 1).
|
||||||
|
|
|
@ -5,9 +5,9 @@ cabal-version: 2.2
|
||||||
-- see: https://github.com/sol/hpack
|
-- see: https://github.com/sol/hpack
|
||||||
|
|
||||||
name: hamming
|
name: hamming
|
||||||
version: 0.1.0
|
version: 0.1.0.1
|
||||||
synopsis: game/utility for teaching about Hamming codes
|
synopsis: game/utility for teaching about Hamming codes
|
||||||
description: Please see the README on GitHub at <https://github.com/githubuser/hamming#readme>
|
description: Please see the README
|
||||||
category: Games
|
category: Games
|
||||||
author: Jonathan Lamothe
|
author: Jonathan Lamothe
|
||||||
maintainer: jonathan@jlamothe.net
|
maintainer: jonathan@jlamothe.net
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: hamming
|
name: hamming
|
||||||
version: 0.1.0
|
version: 0.1.0.1
|
||||||
license: AGPL-3.0-or-later
|
license: AGPL-3.0-or-later
|
||||||
author: "Jonathan Lamothe"
|
author: "Jonathan Lamothe"
|
||||||
maintainer: "jonathan@jlamothe.net"
|
maintainer: "jonathan@jlamothe.net"
|
||||||
|
@ -16,7 +16,7 @@ category: Games
|
||||||
# To avoid duplicated efforts in documentation and dealing with the
|
# To avoid duplicated efforts in documentation and dealing with the
|
||||||
# complications of embedding Haddock markup inside cabal files, it is
|
# complications of embedding Haddock markup inside cabal files, it is
|
||||||
# common to point users to the README.md file.
|
# common to point users to the README.md file.
|
||||||
description: Please see the README on GitHub at <https://github.com/githubuser/hamming#readme>
|
description: Please see the README
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- base >= 4.7 && < 5
|
- base >= 4.7 && < 5
|
||||||
|
|
|
@ -150,21 +150,25 @@ keyBindingsFor m = coreBindings ++ case m of
|
||||||
, ( UpEvent
|
, ( UpEvent
|
||||||
, [ bind KUp
|
, [ bind KUp
|
||||||
, bind 'k'
|
, bind 'k'
|
||||||
|
, ctrl 'p'
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
, ( DownEvent
|
, ( DownEvent
|
||||||
, [ bind KDown
|
, [ bind KDown
|
||||||
, bind 'j'
|
, bind 'j'
|
||||||
|
, ctrl 'n'
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
, ( LeftEvent
|
, ( LeftEvent
|
||||||
, [ bind KLeft
|
, [ bind KLeft
|
||||||
, bind 'h'
|
, bind 'h'
|
||||||
|
, ctrl 'b'
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
, ( RightEvent
|
, ( RightEvent
|
||||||
, [ bind KRight
|
, [ bind KRight
|
||||||
, bind 'l'
|
, bind 'l'
|
||||||
|
, ctrl 'f'
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
, ( FlipBitEvent
|
, ( FlipBitEvent
|
||||||
|
|
Loading…
Reference in New Issue
Block a user