mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 19:20:22 +01:00
all: Format code to add space after C++-style comment start.
Note: the uncrustify configuration is explicitly set to 'add' instead of 'force' in order not to alter the comments which use extra spaces after // as a means of indenting text for clarity.
This commit is contained in:
@@ -150,7 +150,7 @@ STATIC item_t keyCodeMap[] = {
|
||||
{VK_HOME, "[H"},
|
||||
{VK_END, "[F"},
|
||||
{VK_DELETE, "[3~"},
|
||||
{0, ""} //sentinel
|
||||
{0, ""} // sentinel
|
||||
};
|
||||
|
||||
// likewise, but with Ctrl key down
|
||||
@@ -159,7 +159,7 @@ STATIC item_t ctrlKeyCodeMap[] = {
|
||||
{VK_RIGHT, "f"},
|
||||
{VK_DELETE, "d"},
|
||||
{VK_BACK, "\x7F"},
|
||||
{0, ""} //sentinel
|
||||
{0, ""} // sentinel
|
||||
};
|
||||
|
||||
STATIC const char *cur_esc_seq = NULL;
|
||||
|
||||
Reference in New Issue
Block a user