1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:37:44 +00:00

Shell: Move LineEdit out and add it as a dependency

This builds up on the 'new' LibLineEdit and overrides some of its hooks
For instance, on_tab_complete_first_token
This commit is contained in:
AnotherTest 2020-03-30 21:31:41 +04:30 committed by Andreas Kling
parent 305b1a6248
commit 21c4c67119
4 changed files with 147 additions and 645 deletions

View file

@ -1,10 +1,9 @@
OBJS = \
Parser.o \
LineEditor.o \
main.o
PROGRAM = Shell
LIB_DEPS = Core
LIB_DEPS = Core LineEdit
include ../Makefile.common