diff --git a/README.md b/README.md index 2d137c8..dbd655c 100644 --- a/README.md +++ b/README.md @@ -102,9 +102,14 @@ to F12 while running, and twelve more give the same keys while searching, with the ones left out keeping their running message. The buttons say what the file says, and they change as you move between running and searching. +The lines are coloured as N1MM colours them: grey for a comment, blue for the +keys while running, green for the keys while searching, and red for anything +past the twenty-four lines that are read, so a file with a line too many says so +on the screen. + This is N1MM's `.mc` format. **Import…** reads a file somebody published for N1MM, **Export…** writes one out, and **Back to the defaults** puts the built-in -messages back. +messages back. Escape closes the editor and keeps what was there before. The macros are N1MM's, spelled the way N1MM's function-key documentation spells them, so a `.mc` file written for either program says the same thing. The text diff --git a/src/Nonemm.App/Dialogs/MessagesDialog.axaml b/src/Nonemm.App/Dialogs/MessagesDialog.axaml index a05702b..8cf0923 100644 --- a/src/Nonemm.App/Dialogs/MessagesDialog.axaml +++ b/src/Nonemm.App/Dialogs/MessagesDialog.axaml @@ -2,7 +2,15 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="Nonemm.App.Dialogs.MessagesDialog" Title="Function key messages" Width="620" Height="520" - WindowStartupLocation="CenterOwner"> + WindowStartupLocation="CenterOwner" KeyDown="OnKeyDown"> + + + + @@ -17,8 +25,18 @@