Skip to content

Commit

Permalink
fixed prompt location on terminal
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost-ng committed Jan 13, 2024
1 parent 8b9365b commit 7f1f6d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/slinger.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def main():
if slingerQueue:
user_input = slingerQueue.pop(0)
else:
user_input = session.prompt(to_formatted_text(ANSI(prompt_text)))
user_input = session.prompt(to_formatted_text(ANSI(prompt_text)), complete_while_typing=False, complete_style='readline')

logwriter.info(user_input)
split = shlex.split(user_input)
Expand Down

0 comments on commit 7f1f6d5

Please sign in to comment.