#### Issues ####

This is a replacement for NotABug's issue tracker because it's
always down. In curlies {}, you'll see stuff like {L E B}. This
describes what would be "tags" in NotABug:
- (L)ow, (M)edium, (H)igh: priority
- (E)asy, (I)ntermediate, (H)ard, e(X)treme: difficulty
- (B)ug, (F)eature, e(N)hancement: type
  - bugs fixes problems, features add new commands and concepts that
    didn't exist before, and enhancements take existing features and
    make them better.

## Miscellaneous
- [ ] #136 {M I N} use TB_BOLD and TB_ITALIC for syntax highlighting
  - to use these you have to bitwise or it with the color: TB_RED | TB_BOLD
    and the font you're using on your terminal must support bolding
    and italics.
- [x] #135 {H H N} speed up syntax highlighting
- [x] #134 {L E N} open in new buffer but put the original contents
      back when there is a region or you're running a command
- [ ] #133 {L E F} M-x word selection
  - use C-u in the msgline to select words
- [ ] #132 {L I N} V3 of awk scripting support
- [x] #131 {L I N} V2 of awk scripting support
- [ ] #130 {M I N} dynamic-expand getting results from all loaded buffers

## 1.15
- [ ] #129 {L E F} add a C-x h (select entire buffer)
- [x] #128 {L I F} using awk for ait scripting (v1)
  - This is a three part feature where the third part might never
    happen.
  - V1 will contain the ability to run commands inside ait
    via a keybinding.
  - V2 will contain a way to add keybindings for specific commands.
    I'm not sure how it'll work yet but it likely will syntax mode
    specific. There might be a new member on the smode_t struct
    that will maybe be:
      typeddef struct cmd_t {
        int  *key_bytes;
        char *command;
      }
    where, key_bytes is the keybinding for it and command is the
    actual file for the command.
  - V3 might contain the ability to control parts of ait in the
    scripts using some special syntax

## 1.14
I don't remember what all was in 1.14 since NotABug went down but we
do have registers!
- [x] #127 {L H F} registers
- [x] #126 {M H B} fix undo issues with transpose-word
- [x] #125 {H E B} fix lost search query bug
