{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Architecture" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "tags": [ "remove-cell" ] }, "outputs": [], "source": [ "import pathlib\n", "import re\n", "\n", "import graphviz\n", "import IPython\n", "\n", "\n", "@IPython.core.magic.register_line_cell_magic\n", "def dot(line, cell=None):\n", " src = graphviz.Source(pathlib.Path(line).read_text() if line else cell)._repr_svg_()\n", " src = re.sub(r\" TBD\n", "\n", "[#76]: https://github.com/jupyter-lsp/jupyterlab-lsp/issues/76" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Add DiagnosticsManager, refactor DiagnosticPanel [#176][]\n", "\n", "> TBD\n", "\n", "[#176]: https://github.com/jupyter-lsp/jupyterlab-lsp/issues/176" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Multiple sources of LSP messages on frontend and backend [#184][]\n", "\n", "> TBD\n", "\n", "[#184]: https://github.com/jupyter-lsp/jupyterlab-lsp/issues/184" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Use mime types from server spec for language detection [#190][]\n", "\n", "> TBD\n", "\n", "[#190]: https://github.com/jupyter-lsp/jupyterlab-lsp/issues/190" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Formalize and extend language transclusion [#191][]\n", "\n", "> TBD\n", "\n", "[#191]: https://github.com/jupyter-lsp/jupyterlab-lsp/issues/191" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.9" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": {}, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 4 }