File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ Changed in version 0.7.2.1:
89
89
* Fix build on Windows.
90
90
91
91
Changed in version 0.7.2.0:
92
- * Bump upper-bound on base and filepath libraries to accomodate GHC HEAD (7.10)
92
+ * Bump upper-bound on base and filepath libraries to accommodate GHC HEAD (7.10)
93
93
* Drop Cabal dependency to 1.10
94
94
* Use explicit forall syntax to avoid warning
95
95
* Support Applicative/Monad proposal in Win32/Draw backend
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ ansiKeys = [("\ESC[D", simpleKey LeftKey)
141
141
-- Terminal.app:
142
142
,(" \ESC [5D" , ctrlKey $ simpleKey LeftKey )
143
143
,(" \ESC [5C" , ctrlKey $ simpleKey RightKey )
144
- -- rxvt: (Note: these will be superceded by e.g. xterm-color,
144
+ -- rxvt: (Note: these will be superseded by e.g. xterm-color,
145
145
-- which uses them as regular arrow keys.)
146
146
,(" \ESC [OD" , ctrlKey $ simpleKey LeftKey )
147
147
,(" \ESC [OC" , ctrlKey $ simpleKey RightKey )
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ data InputEvent = KeyEvent {keyDown :: BOOL,
144
144
unicodeChar :: Char ,
145
145
controlKeyState :: DWORD }
146
146
-- TODO: WINDOW_BUFFER_SIZE_RECORD
147
- -- I cant figure out how the user generates them.
147
+ -- I can't figure out how the user generates them.
148
148
| WindowEvent
149
149
| OtherEvent
150
150
deriving Show
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ insertChars = useChar $ loop []
81
81
>|> return . Left
82
82
83
83
-- If we receive a ^D and the line is empty, return Nothing
84
- -- otherwise, act like '\n' (mimicing how Readline behaves)
84
+ -- otherwise, act like '\n' (mimicking how Readline behaves)
85
85
eofIfEmpty :: (Monad m , Save s , Result s ) => Command m s (Maybe String )
86
86
eofIfEmpty s
87
87
| save s == emptyIM = return Nothing
You can’t perform that action at this time.
0 commit comments