diff options
author | AnotherTest <ali.mpfard@gmail.com> | 2020-06-08 11:38:37 +0430 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-06-08 09:27:51 +0200 |
commit | 2714bba3f00d92c4e7ba400c35bd54df19817571 (patch) | |
tree | ab41ea4df16bcaa91d320a8be75ba719eb403f9b /Shell/Parser.h | |
parent | 07c070745fb402eed0d7e3ec1567edfabb9b9946 (diff) | |
download | serenity-2714bba3f00d92c4e7ba400c35bd54df19817571.zip |
Shell: Highlight redirections
Diffstat (limited to 'Shell/Parser.h')
-rw-r--r-- | Shell/Parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Shell/Parser.h b/Shell/Parser.h index e9fcb5f9f4..112747ce3e 100644 --- a/Shell/Parser.h +++ b/Shell/Parser.h @@ -61,6 +61,7 @@ struct Redirection { Type type; int fd { -1 }; int rewire_fd { -1 }; + size_t redirection_op_start { 0 }; Token path {}; }; |