Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bug] in_prompt doesn't support "\n" #526

Open
Freed-Wu opened this issue Jan 13, 2023 · 0 comments
Open

[bug] in_prompt doesn't support "\n" #526

Freed-Wu opened this issue Jan 13, 2023 · 0 comments

Comments

@Freed-Wu
Copy link

    def in_prompt(self) -> AnyFormattedText:
        """In prompt.

        :rtype: AnyFormattedText
        """
        FROMATS, _ = ansi2prompt_toolkit(str(sys.ps1))
        return 
            ("class:in", "In ["),
            (
                "class:in.number",
                "%s" % self.python_input.current_statement_index,
            ),
            ("class:in", "]\n>>> "),
        ]

Actual behaviour (| is cursor):

❯ ptpython
In [1] |
>>>

Expected behaviour:

❯ ptpython
In [1]
>>> |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant