ladybird/Userland/Shell
AnotherTest fec8d7d699 Shell: Corrently indent offset newlines when formatting
Previously, formatting the following would incorrectly skip the indents:
```
{
    foo

    bar
}
```
to create:
```
{

foo

bar
}
```
2021-03-07 10:58:42 +01:00
..
Tests Userland: Install shell tests on Serenity 2021-02-28 18:19:37 +01:00
AST.cpp Shell: Make Node::hit_test_position() const 2021-03-04 11:21:43 +01:00
AST.h Shell: Make Node::hit_test_position() const 2021-03-04 11:21:43 +01:00
Builtin.cpp Shell: Skip caching PATH and history load/save when not interactive 2021-03-07 10:58:42 +01:00
CMakeLists.txt Userland: Install shell tests on Serenity 2021-02-28 18:19:37 +01:00
Execution.h Shell: Move to Userland/Shell/ 2021-01-12 12:04:07 +01:00
Formatter.cpp Shell: Corrently indent offset newlines when formatting 2021-03-07 10:58:42 +01:00
Formatter.h Shell: Add formatter for history events 2021-01-15 19:13:03 +01:00
Forward.h Shell: Add (basic) support for history event designators 2021-01-15 19:13:03 +01:00
Job.cpp Shell: Move to Userland/Shell/ 2021-01-12 12:04:07 +01:00
Job.h Everywhere: Rename ASSERT => VERIFY 2021-02-23 20:56:54 +01:00
main.cpp Shell: Skip caching PATH and history load/save when not interactive 2021-03-07 10:58:42 +01:00
NodeVisitor.cpp Shell: Make the parser read consecutive sequences without recursing 2021-01-23 08:28:58 +01:00
NodeVisitor.h Shell: Add (basic) support for history event designators 2021-01-15 19:13:03 +01:00
Parser.cpp Everywhere: Remove a bunch of redundant 'AK::' namespace prefixes 2021-02-26 16:59:56 +01:00
Parser.h Everywhere: Rename ASSERT => VERIFY 2021-02-23 20:56:54 +01:00
Shell.cpp Shell: Skip caching PATH and history load/save when not interactive 2021-03-07 10:58:42 +01:00
Shell.h Shell: Skip caching PATH and history load/save when not interactive 2021-03-07 10:58:42 +01:00
SyntaxHighlighter.cpp Shell: Adjust syntax highlighting logic for the new TextPosition logic 2021-03-04 11:21:43 +01:00
SyntaxHighlighter.h LibSyntax: Make rehighlight() take Gfx::Palette as by const-reference 2021-02-11 23:52:39 +01:00