You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Near the end of chapter 6, add if (last_match == -1) direction = 1; to editorFindCallback(), to fix a segfault. (Thanks @agacek)
In the Scrolling with Page Up and Page Down section in chapter 4, add if (E.cy > E.numrows) E.cy = E.numrows; to editorProcessKeypress(), so the cursor stays within the file. (Thanks @agacek)
At the beginning of chapter 3, remove the keypress printing code during the refactor-input step instead of the ctrl-q step, and make it clear that you're supposed to remove that code. (Thanks @wonthegame)