pythonRepl top-level property

Language pythonRepl
final

Implementation

final pythonRepl = Language(
  id: "python-repl",
  refs: {},
  aliases: ["pycon"],
  contains: [
    Mode(
      className: "meta.prompt",
      starts: Mode(
        end: " |\$",
        starts: Mode(
          end: "\$",
          subLanguage: ["python"],
        ),
      ),
      variants: [
        Mode(
          begin: "^>>>(?=[ ]|\$)",
        ),
        Mode(
          begin: "^\\.\\.\\.(?=[ ]|\$)",
        ),
      ],
    ),
  ],
);