From 132ff60989e847d9c8c965e1f50871c679aebc9d Mon Sep 17 00:00:00 2001 From: first_user Date: Tue, 24 Oct 2023 16:30:49 +0530 Subject: [PATCH] prompt ascii changed --- gef.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gef.py b/gef.py index 5c187451f..5f8361082 100644 --- a/gef.py +++ b/gef.py @@ -152,7 +152,7 @@ def update_gef(argv: List[str]) -> int: CROSS = "✘ " TICK = "✓ " BP_GLYPH = "●" -GEF_PROMPT = "gef➤ " +GEF_PROMPT = "gef> " GEF_PROMPT_ON = f"\001\033[1;32m\002{GEF_PROMPT}\001\033[0m\002" GEF_PROMPT_OFF = f"\001\033[1;31m\002{GEF_PROMPT}\001\033[0m\002" @@ -10264,7 +10264,6 @@ def __gef_prompt__(current_prompt: Callable[[Callable], str]) -> str: prompt += GEF_PROMPT_ON if is_alive() else GEF_PROMPT_OFF return prompt - class GefManager(metaclass=abc.ABCMeta): def reset_caches(self) -> None: """Reset the LRU-cached attributes"""