Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-04 | Move sources to new src/ directory | Richard Braun | |
2018-01-04 | error: remove and use errno.h directly | Richard Braun | |
2018-01-04 | Make the copyright notice fit on 80 columns | Richard Braun | |
2018-01-04 | shell: new SHELL_REGISTER_CMDS macro | Richard Braun | |
2017-12-18 | shell: fix header inclusions | Richard Braun | |
2017-10-07 | Change the license to MIT | Richard Braun | |
Not a real change, it's just that MIT license seems to be the most popular permissive license. | |||
2017-07-25 | error: fix namespace | Richard Braun | |
2017-06-02 | shell: add comments about auto-completion | Richard Braun | |
2017-06-01 | shell: add comment about line editing | Richard Braun | |
2017-05-28 | shell: fix completion | Richard Braun | |
More precisely, fix completion when all commands share the same first characters. | |||
2017-05-28 | shell: fix behaviour of del key | Richard Braun | |
2017-05-28 | shell: minor change | Richard Braun | |
Use macro instead of raw value for escape sequence start. | |||
2017-05-27 | shell: process carriage returns as new lines | Richard Braun | |
2017-04-29 | Revert "Remove unneeded quotes when using #error" | Richard Braun | |
This reverts commit 9740d571ddd138f8344ba0975b11bc29621bc618. New occurrences of #error are also affected by this commit. | |||
2016-12-24 | shell: fix completion regression | Richard Braun | |
Commit 5b0ec6b075662d24fb72acf394335731fd9db5ba introduced a regression where arguments already input by the user would be erased instead of preserved. This change fixes this. | |||
2016-12-09 | shell: handle multiple backspace control characters | Richard Braun | |
2016-12-09 | shell: fix completion on corner case | Richard Braun | |
The problem arises when a line doesn't immediately start with a command. This change makes the completion code look for the first word (the first character which isn't the separator) and complete from there. | |||
2016-12-09 | Force brackets around one-line conditional statements | Richard Braun | |
2016-10-25 | Fix uninitialized variable warnings | Richard Braun | |
Instead of using the GCC-specific var = var notation, which Clang seems to dislike, drop the idea of silencing the warning, and instead force the variables to a null initialization value (0, NULL, {}, whatever works). | |||
2015-03-12 | shell: new module | Richard Braun | |