├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── crates ├── base-db │ ├── Cargo.toml │ └── src │ │ ├── config.rs │ │ ├── data.rs │ │ ├── deps.rs │ │ ├── deps │ │ ├── discover.rs │ │ ├── graph.rs │ │ ├── project.rs │ │ └── root.rs │ │ ├── document.rs │ │ ├── lib.rs │ │ ├── semantics.rs │ │ ├── semantics │ │ ├── auxiliary.rs │ │ ├── bib.rs │ │ └── tex.rs │ │ ├── util.rs │ │ ├── util │ │ ├── expand.rs │ │ ├── label.rs │ │ ├── queries.rs │ │ └── regex_filter.rs │ │ └── workspace.rs ├── bibfmt │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── tests.rs ├── bibtex-utils │ ├── Cargo.toml │ └── src │ │ ├── field.rs │ │ ├── field │ │ ├── author.rs │ │ ├── date.rs │ │ ├── number.rs │ │ └── text.rs │ │ └── lib.rs ├── citeproc │ ├── Cargo.toml │ └── src │ │ ├── driver.rs │ │ ├── entry.rs │ │ ├── lib.rs │ │ ├── output.rs │ │ └── tests.rs ├── commands │ ├── Cargo.toml │ └── src │ │ ├── build.rs │ │ ├── change_env.rs │ │ ├── clean.rs │ │ ├── dep_graph.rs │ │ ├── find_envs.rs │ │ ├── fwd_search.rs │ │ ├── lib.rs │ │ └── placeholders.rs ├── completion-data │ ├── Cargo.toml │ ├── data │ │ └── completion.json.gz │ └── src │ │ └── lib.rs ├── completion │ ├── Cargo.toml │ ├── benches │ │ └── bench_main.rs │ └── src │ │ ├── lib.rs │ │ ├── providers.rs │ │ ├── providers │ │ ├── argument.rs │ │ ├── citations.rs │ │ ├── color.rs │ │ ├── color_model.rs │ │ ├── command.rs │ │ ├── entry_type.rs │ │ ├── environment.rs │ │ ├── field.rs │ │ ├── glossary.rs │ │ ├── import.rs │ │ ├── include.rs │ │ ├── label_def.rs │ │ ├── label_ref.rs │ │ └── tikz_library.rs │ │ ├── tests.rs │ │ ├── util.rs │ │ └── util │ │ ├── builder.rs │ │ ├── matchers.rs │ │ └── patterns.rs ├── definition │ ├── Cargo.toml │ └── src │ │ ├── citation.rs │ │ ├── command.rs │ │ ├── include.rs │ │ ├── label.rs │ │ ├── lib.rs │ │ ├── string_ref.rs │ │ └── tests.rs ├── diagnostics │ ├── Cargo.toml │ └── src │ │ ├── build_log.rs │ │ ├── chktex.rs │ │ ├── citations.rs │ │ ├── grammar.rs │ │ ├── grammar │ │ ├── bib.rs │ │ └── tex.rs │ │ ├── labels.rs │ │ ├── lib.rs │ │ ├── manager.rs │ │ ├── tests.rs │ │ └── types.rs ├── distro │ ├── Cargo.toml │ └── src │ │ ├── file_name_db.rs │ │ ├── kpsewhich.rs │ │ ├── language.rs │ │ ├── lib.rs │ │ ├── miktex.rs │ │ └── texlive.rs ├── folding │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── tests.rs ├── highlights │ ├── Cargo.toml │ └── src │ │ ├── label.rs │ │ ├── lib.rs │ │ └── tests.rs ├── hover │ ├── Cargo.toml │ └── src │ │ ├── citation.rs │ │ ├── command.rs │ │ ├── entry_type.rs │ │ ├── field_type.rs │ │ ├── label.rs │ │ ├── lib.rs │ │ ├── package.rs │ │ ├── string_ref.rs │ │ └── tests.rs ├── inlay-hints │ ├── Cargo.toml │ └── src │ │ ├── label.rs │ │ ├── lib.rs │ │ └── tests.rs ├── ipc │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── line-index │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── links │ ├── Cargo.toml │ └── src │ │ ├── include.rs │ │ ├── lib.rs │ │ └── tests.rs ├── parser │ ├── Cargo.toml │ └── src │ │ ├── bibtex.rs │ │ ├── bibtex │ │ └── tests.rs │ │ ├── build_log.rs │ │ ├── build_log │ │ └── tests.rs │ │ ├── config.rs │ │ ├── file_list.rs │ │ ├── latex.rs │ │ ├── latex │ │ ├── lexer.rs │ │ ├── lexer │ │ │ ├── commands.rs │ │ │ └── types.rs │ │ └── tests.rs │ │ ├── latexmkrc.rs │ │ ├── lib.rs │ │ └── util.rs ├── references │ ├── Cargo.toml │ └── src │ │ ├── command.rs │ │ ├── entry.rs │ │ ├── label.rs │ │ ├── lib.rs │ │ ├── string_def.rs │ │ └── tests.rs ├── rename │ ├── Cargo.toml │ └── src │ │ ├── command.rs │ │ ├── entry.rs │ │ ├── label.rs │ │ ├── lib.rs │ │ └── tests.rs ├── symbols │ ├── Cargo.toml │ └── src │ │ ├── document.rs │ │ ├── document │ │ ├── bib.rs │ │ ├── tests.rs │ │ └── tex.rs │ │ ├── lib.rs │ │ ├── types.rs │ │ ├── workspace.rs │ │ └── workspace │ │ ├── sort.rs │ │ └── tests.rs ├── syntax │ ├── Cargo.toml │ └── src │ │ ├── bibtex.rs │ │ ├── bibtex │ │ ├── cst.rs │ │ └── kind.rs │ │ ├── file_list.rs │ │ ├── latex.rs │ │ ├── latex │ │ ├── cst.rs │ │ └── kind.rs │ │ ├── latexmkrc.rs │ │ └── lib.rs ├── test-utils │ ├── Cargo.toml │ └── src │ │ ├── fixture.rs │ │ └── lib.rs └── texlab │ ├── Cargo.toml │ ├── benches │ └── bench_main.rs │ └── src │ ├── client.rs │ ├── features.rs │ ├── features │ ├── completion.rs │ ├── definition.rs │ ├── folding.rs │ ├── formatting.rs │ ├── formatting │ │ ├── bibtex_internal.rs │ │ ├── latexindent.rs │ │ └── texfmt.rs │ ├── highlight.rs │ ├── hover.rs │ ├── inlay_hint.rs │ ├── link.rs │ ├── reference.rs │ ├── rename.rs │ └── symbols.rs │ ├── lib.rs │ ├── main.rs │ ├── server.rs │ ├── server │ ├── dispatch.rs │ ├── extensions.rs │ ├── options.rs │ └── progress.rs │ ├── util.rs │ └── util │ ├── client_flags.rs │ ├── from_proto.rs │ ├── line_index_ext.rs │ ├── lsp_enums.rs │ └── to_proto.rs ├── images └── demo.gif └── texlab.tex /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/README.md -------------------------------------------------------------------------------- /crates/base-db/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/Cargo.toml -------------------------------------------------------------------------------- /crates/base-db/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/config.rs -------------------------------------------------------------------------------- /crates/base-db/src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/data.rs -------------------------------------------------------------------------------- /crates/base-db/src/deps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/deps.rs -------------------------------------------------------------------------------- /crates/base-db/src/deps/discover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/deps/discover.rs -------------------------------------------------------------------------------- /crates/base-db/src/deps/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/deps/graph.rs -------------------------------------------------------------------------------- /crates/base-db/src/deps/project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/deps/project.rs -------------------------------------------------------------------------------- /crates/base-db/src/deps/root.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/deps/root.rs -------------------------------------------------------------------------------- /crates/base-db/src/document.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/document.rs -------------------------------------------------------------------------------- /crates/base-db/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/lib.rs -------------------------------------------------------------------------------- /crates/base-db/src/semantics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/semantics.rs -------------------------------------------------------------------------------- /crates/base-db/src/semantics/auxiliary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/semantics/auxiliary.rs -------------------------------------------------------------------------------- /crates/base-db/src/semantics/bib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/semantics/bib.rs -------------------------------------------------------------------------------- /crates/base-db/src/semantics/tex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/semantics/tex.rs -------------------------------------------------------------------------------- /crates/base-db/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/util.rs -------------------------------------------------------------------------------- /crates/base-db/src/util/expand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/util/expand.rs -------------------------------------------------------------------------------- /crates/base-db/src/util/label.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/util/label.rs -------------------------------------------------------------------------------- /crates/base-db/src/util/queries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/util/queries.rs -------------------------------------------------------------------------------- /crates/base-db/src/util/regex_filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/util/regex_filter.rs -------------------------------------------------------------------------------- /crates/base-db/src/workspace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/base-db/src/workspace.rs -------------------------------------------------------------------------------- /crates/bibfmt/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/bibfmt/Cargo.toml -------------------------------------------------------------------------------- /crates/bibfmt/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/bibfmt/src/lib.rs -------------------------------------------------------------------------------- /crates/bibfmt/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/bibfmt/src/tests.rs -------------------------------------------------------------------------------- /crates/bibtex-utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/bibtex-utils/Cargo.toml -------------------------------------------------------------------------------- /crates/bibtex-utils/src/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/bibtex-utils/src/field.rs -------------------------------------------------------------------------------- /crates/bibtex-utils/src/field/author.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/bibtex-utils/src/field/author.rs -------------------------------------------------------------------------------- /crates/bibtex-utils/src/field/date.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/bibtex-utils/src/field/date.rs -------------------------------------------------------------------------------- /crates/bibtex-utils/src/field/number.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/bibtex-utils/src/field/number.rs -------------------------------------------------------------------------------- /crates/bibtex-utils/src/field/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/bibtex-utils/src/field/text.rs -------------------------------------------------------------------------------- /crates/bibtex-utils/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod field; 2 | -------------------------------------------------------------------------------- /crates/citeproc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/citeproc/Cargo.toml -------------------------------------------------------------------------------- /crates/citeproc/src/driver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/citeproc/src/driver.rs -------------------------------------------------------------------------------- /crates/citeproc/src/entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/citeproc/src/entry.rs -------------------------------------------------------------------------------- /crates/citeproc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/citeproc/src/lib.rs -------------------------------------------------------------------------------- /crates/citeproc/src/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/citeproc/src/output.rs -------------------------------------------------------------------------------- /crates/citeproc/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/citeproc/src/tests.rs -------------------------------------------------------------------------------- /crates/commands/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/commands/Cargo.toml -------------------------------------------------------------------------------- /crates/commands/src/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/commands/src/build.rs -------------------------------------------------------------------------------- /crates/commands/src/change_env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/commands/src/change_env.rs -------------------------------------------------------------------------------- /crates/commands/src/clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/commands/src/clean.rs -------------------------------------------------------------------------------- /crates/commands/src/dep_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/commands/src/dep_graph.rs -------------------------------------------------------------------------------- /crates/commands/src/find_envs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/commands/src/find_envs.rs -------------------------------------------------------------------------------- /crates/commands/src/fwd_search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/commands/src/fwd_search.rs -------------------------------------------------------------------------------- /crates/commands/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/commands/src/lib.rs -------------------------------------------------------------------------------- /crates/commands/src/placeholders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/commands/src/placeholders.rs -------------------------------------------------------------------------------- /crates/completion-data/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion-data/Cargo.toml -------------------------------------------------------------------------------- /crates/completion-data/data/completion.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion-data/data/completion.json.gz -------------------------------------------------------------------------------- /crates/completion-data/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion-data/src/lib.rs -------------------------------------------------------------------------------- /crates/completion/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/Cargo.toml -------------------------------------------------------------------------------- /crates/completion/benches/bench_main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/benches/bench_main.rs -------------------------------------------------------------------------------- /crates/completion/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/lib.rs -------------------------------------------------------------------------------- /crates/completion/src/providers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/argument.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/argument.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/citations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/citations.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/color.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/color_model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/color_model.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/command.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/entry_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/entry_type.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/environment.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/field.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/glossary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/glossary.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/import.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/import.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/include.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/include.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/label_def.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/label_def.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/label_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/label_ref.rs -------------------------------------------------------------------------------- /crates/completion/src/providers/tikz_library.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/providers/tikz_library.rs -------------------------------------------------------------------------------- /crates/completion/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/tests.rs -------------------------------------------------------------------------------- /crates/completion/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/util.rs -------------------------------------------------------------------------------- /crates/completion/src/util/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/util/builder.rs -------------------------------------------------------------------------------- /crates/completion/src/util/matchers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/util/matchers.rs -------------------------------------------------------------------------------- /crates/completion/src/util/patterns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/completion/src/util/patterns.rs -------------------------------------------------------------------------------- /crates/definition/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/definition/Cargo.toml -------------------------------------------------------------------------------- /crates/definition/src/citation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/definition/src/citation.rs -------------------------------------------------------------------------------- /crates/definition/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/definition/src/command.rs -------------------------------------------------------------------------------- /crates/definition/src/include.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/definition/src/include.rs -------------------------------------------------------------------------------- /crates/definition/src/label.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/definition/src/label.rs -------------------------------------------------------------------------------- /crates/definition/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/definition/src/lib.rs -------------------------------------------------------------------------------- /crates/definition/src/string_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/definition/src/string_ref.rs -------------------------------------------------------------------------------- /crates/definition/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/definition/src/tests.rs -------------------------------------------------------------------------------- /crates/diagnostics/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/diagnostics/Cargo.toml -------------------------------------------------------------------------------- /crates/diagnostics/src/build_log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/diagnostics/src/build_log.rs -------------------------------------------------------------------------------- /crates/diagnostics/src/chktex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/diagnostics/src/chktex.rs -------------------------------------------------------------------------------- /crates/diagnostics/src/citations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/diagnostics/src/citations.rs -------------------------------------------------------------------------------- /crates/diagnostics/src/grammar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/diagnostics/src/grammar.rs -------------------------------------------------------------------------------- /crates/diagnostics/src/grammar/bib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/diagnostics/src/grammar/bib.rs -------------------------------------------------------------------------------- /crates/diagnostics/src/grammar/tex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/diagnostics/src/grammar/tex.rs -------------------------------------------------------------------------------- /crates/diagnostics/src/labels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/diagnostics/src/labels.rs -------------------------------------------------------------------------------- /crates/diagnostics/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/diagnostics/src/lib.rs -------------------------------------------------------------------------------- /crates/diagnostics/src/manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/diagnostics/src/manager.rs -------------------------------------------------------------------------------- /crates/diagnostics/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/diagnostics/src/tests.rs -------------------------------------------------------------------------------- /crates/diagnostics/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/diagnostics/src/types.rs -------------------------------------------------------------------------------- /crates/distro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/distro/Cargo.toml -------------------------------------------------------------------------------- /crates/distro/src/file_name_db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/distro/src/file_name_db.rs -------------------------------------------------------------------------------- /crates/distro/src/kpsewhich.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/distro/src/kpsewhich.rs -------------------------------------------------------------------------------- /crates/distro/src/language.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/distro/src/language.rs -------------------------------------------------------------------------------- /crates/distro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/distro/src/lib.rs -------------------------------------------------------------------------------- /crates/distro/src/miktex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/distro/src/miktex.rs -------------------------------------------------------------------------------- /crates/distro/src/texlive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/distro/src/texlive.rs -------------------------------------------------------------------------------- /crates/folding/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/folding/Cargo.toml -------------------------------------------------------------------------------- /crates/folding/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/folding/src/lib.rs -------------------------------------------------------------------------------- /crates/folding/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/folding/src/tests.rs -------------------------------------------------------------------------------- /crates/highlights/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/highlights/Cargo.toml -------------------------------------------------------------------------------- /crates/highlights/src/label.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/highlights/src/label.rs -------------------------------------------------------------------------------- /crates/highlights/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/highlights/src/lib.rs -------------------------------------------------------------------------------- /crates/highlights/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/highlights/src/tests.rs -------------------------------------------------------------------------------- /crates/hover/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/hover/Cargo.toml -------------------------------------------------------------------------------- /crates/hover/src/citation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/hover/src/citation.rs -------------------------------------------------------------------------------- /crates/hover/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/hover/src/command.rs -------------------------------------------------------------------------------- /crates/hover/src/entry_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/hover/src/entry_type.rs -------------------------------------------------------------------------------- /crates/hover/src/field_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/hover/src/field_type.rs -------------------------------------------------------------------------------- /crates/hover/src/label.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/hover/src/label.rs -------------------------------------------------------------------------------- /crates/hover/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/hover/src/lib.rs -------------------------------------------------------------------------------- /crates/hover/src/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/hover/src/package.rs -------------------------------------------------------------------------------- /crates/hover/src/string_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/hover/src/string_ref.rs -------------------------------------------------------------------------------- /crates/hover/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/hover/src/tests.rs -------------------------------------------------------------------------------- /crates/inlay-hints/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/inlay-hints/Cargo.toml -------------------------------------------------------------------------------- /crates/inlay-hints/src/label.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/inlay-hints/src/label.rs -------------------------------------------------------------------------------- /crates/inlay-hints/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/inlay-hints/src/lib.rs -------------------------------------------------------------------------------- /crates/inlay-hints/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/inlay-hints/src/tests.rs -------------------------------------------------------------------------------- /crates/ipc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/ipc/Cargo.toml -------------------------------------------------------------------------------- /crates/ipc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/ipc/src/lib.rs -------------------------------------------------------------------------------- /crates/line-index/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/line-index/Cargo.toml -------------------------------------------------------------------------------- /crates/line-index/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/line-index/src/lib.rs -------------------------------------------------------------------------------- /crates/links/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/links/Cargo.toml -------------------------------------------------------------------------------- /crates/links/src/include.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/links/src/include.rs -------------------------------------------------------------------------------- /crates/links/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/links/src/lib.rs -------------------------------------------------------------------------------- /crates/links/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/links/src/tests.rs -------------------------------------------------------------------------------- /crates/parser/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/Cargo.toml -------------------------------------------------------------------------------- /crates/parser/src/bibtex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/bibtex.rs -------------------------------------------------------------------------------- /crates/parser/src/bibtex/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/bibtex/tests.rs -------------------------------------------------------------------------------- /crates/parser/src/build_log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/build_log.rs -------------------------------------------------------------------------------- /crates/parser/src/build_log/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/build_log/tests.rs -------------------------------------------------------------------------------- /crates/parser/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/config.rs -------------------------------------------------------------------------------- /crates/parser/src/file_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/file_list.rs -------------------------------------------------------------------------------- /crates/parser/src/latex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/latex.rs -------------------------------------------------------------------------------- /crates/parser/src/latex/lexer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/latex/lexer.rs -------------------------------------------------------------------------------- /crates/parser/src/latex/lexer/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/latex/lexer/commands.rs -------------------------------------------------------------------------------- /crates/parser/src/latex/lexer/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/latex/lexer/types.rs -------------------------------------------------------------------------------- /crates/parser/src/latex/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/latex/tests.rs -------------------------------------------------------------------------------- /crates/parser/src/latexmkrc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/latexmkrc.rs -------------------------------------------------------------------------------- /crates/parser/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/lib.rs -------------------------------------------------------------------------------- /crates/parser/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/parser/src/util.rs -------------------------------------------------------------------------------- /crates/references/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/references/Cargo.toml -------------------------------------------------------------------------------- /crates/references/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/references/src/command.rs -------------------------------------------------------------------------------- /crates/references/src/entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/references/src/entry.rs -------------------------------------------------------------------------------- /crates/references/src/label.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/references/src/label.rs -------------------------------------------------------------------------------- /crates/references/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/references/src/lib.rs -------------------------------------------------------------------------------- /crates/references/src/string_def.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/references/src/string_def.rs -------------------------------------------------------------------------------- /crates/references/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/references/src/tests.rs -------------------------------------------------------------------------------- /crates/rename/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/rename/Cargo.toml -------------------------------------------------------------------------------- /crates/rename/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/rename/src/command.rs -------------------------------------------------------------------------------- /crates/rename/src/entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/rename/src/entry.rs -------------------------------------------------------------------------------- /crates/rename/src/label.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/rename/src/label.rs -------------------------------------------------------------------------------- /crates/rename/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/rename/src/lib.rs -------------------------------------------------------------------------------- /crates/rename/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/rename/src/tests.rs -------------------------------------------------------------------------------- /crates/symbols/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/symbols/Cargo.toml -------------------------------------------------------------------------------- /crates/symbols/src/document.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/symbols/src/document.rs -------------------------------------------------------------------------------- /crates/symbols/src/document/bib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/symbols/src/document/bib.rs -------------------------------------------------------------------------------- /crates/symbols/src/document/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/symbols/src/document/tests.rs -------------------------------------------------------------------------------- /crates/symbols/src/document/tex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/symbols/src/document/tex.rs -------------------------------------------------------------------------------- /crates/symbols/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/symbols/src/lib.rs -------------------------------------------------------------------------------- /crates/symbols/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/symbols/src/types.rs -------------------------------------------------------------------------------- /crates/symbols/src/workspace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/symbols/src/workspace.rs -------------------------------------------------------------------------------- /crates/symbols/src/workspace/sort.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/symbols/src/workspace/sort.rs -------------------------------------------------------------------------------- /crates/symbols/src/workspace/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/symbols/src/workspace/tests.rs -------------------------------------------------------------------------------- /crates/syntax/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/syntax/Cargo.toml -------------------------------------------------------------------------------- /crates/syntax/src/bibtex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/syntax/src/bibtex.rs -------------------------------------------------------------------------------- /crates/syntax/src/bibtex/cst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/syntax/src/bibtex/cst.rs -------------------------------------------------------------------------------- /crates/syntax/src/bibtex/kind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/syntax/src/bibtex/kind.rs -------------------------------------------------------------------------------- /crates/syntax/src/file_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/syntax/src/file_list.rs -------------------------------------------------------------------------------- /crates/syntax/src/latex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/syntax/src/latex.rs -------------------------------------------------------------------------------- /crates/syntax/src/latex/cst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/syntax/src/latex/cst.rs -------------------------------------------------------------------------------- /crates/syntax/src/latex/kind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/syntax/src/latex/kind.rs -------------------------------------------------------------------------------- /crates/syntax/src/latexmkrc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/syntax/src/latexmkrc.rs -------------------------------------------------------------------------------- /crates/syntax/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/syntax/src/lib.rs -------------------------------------------------------------------------------- /crates/test-utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/test-utils/Cargo.toml -------------------------------------------------------------------------------- /crates/test-utils/src/fixture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/test-utils/src/fixture.rs -------------------------------------------------------------------------------- /crates/test-utils/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod fixture; 2 | -------------------------------------------------------------------------------- /crates/texlab/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/Cargo.toml -------------------------------------------------------------------------------- /crates/texlab/benches/bench_main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/benches/bench_main.rs -------------------------------------------------------------------------------- /crates/texlab/src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/client.rs -------------------------------------------------------------------------------- /crates/texlab/src/features.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/completion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/completion.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/definition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/definition.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/folding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/folding.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/formatting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/formatting.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/formatting/bibtex_internal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/formatting/bibtex_internal.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/formatting/latexindent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/formatting/latexindent.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/formatting/texfmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/formatting/texfmt.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/highlight.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/highlight.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/hover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/hover.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/inlay_hint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/inlay_hint.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/link.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/reference.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/reference.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/rename.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/rename.rs -------------------------------------------------------------------------------- /crates/texlab/src/features/symbols.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/features/symbols.rs -------------------------------------------------------------------------------- /crates/texlab/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/lib.rs -------------------------------------------------------------------------------- /crates/texlab/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/main.rs -------------------------------------------------------------------------------- /crates/texlab/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/server.rs -------------------------------------------------------------------------------- /crates/texlab/src/server/dispatch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/server/dispatch.rs -------------------------------------------------------------------------------- /crates/texlab/src/server/extensions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/server/extensions.rs -------------------------------------------------------------------------------- /crates/texlab/src/server/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/server/options.rs -------------------------------------------------------------------------------- /crates/texlab/src/server/progress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/server/progress.rs -------------------------------------------------------------------------------- /crates/texlab/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/util.rs -------------------------------------------------------------------------------- /crates/texlab/src/util/client_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/util/client_flags.rs -------------------------------------------------------------------------------- /crates/texlab/src/util/from_proto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/util/from_proto.rs -------------------------------------------------------------------------------- /crates/texlab/src/util/line_index_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/util/line_index_ext.rs -------------------------------------------------------------------------------- /crates/texlab/src/util/lsp_enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/util/lsp_enums.rs -------------------------------------------------------------------------------- /crates/texlab/src/util/to_proto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/crates/texlab/src/util/to_proto.rs -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/images/demo.gif -------------------------------------------------------------------------------- /texlab.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latex-lsp/texlab/HEAD/texlab.tex --------------------------------------------------------------------------------