├── .appveyor.yml ├── .gitattributes ├── .github └── stale.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── keymaps └── latex.json ├── lib ├── build-state.js ├── builder-registry.js ├── builder.js ├── builders │ ├── knitr.js │ └── latexmk.js ├── composer.js ├── config-migrator.js ├── latex.js ├── logger.js ├── main.js ├── marker-manager.js ├── opener-registry.js ├── opener.js ├── openers │ ├── atril-opener.js │ ├── custom-opener.js │ ├── evince-opener.js │ ├── okular-opener.js │ ├── pdf-view-opener.js │ ├── preview-opener.js │ ├── qpdfview-opener.js │ ├── shell-open-opener.js │ ├── skim-opener.js │ ├── sumatra-opener.js │ ├── x-reader-opener.js │ ├── xdg-open-opener.js │ └── zathura-opener.js ├── parser.js ├── parsers │ ├── fdb-parser.js │ ├── log-parser.js │ └── magic-parser.js ├── process-manager.js ├── status-indicator.js ├── views │ ├── file-reference.js │ ├── log-dock.js │ ├── log-message.js │ ├── message-count.js │ ├── message-icon.js │ └── status-label.js └── werkzeug.js ├── menus └── latex.json ├── package.json ├── resources └── latexmkrc ├── script ├── cibuild ├── create-fixtures ├── install-ghostscript ├── install-knitr ├── install-miktex ├── install-texlive └── lint ├── spec ├── async-spec-helpers.js ├── build-registry-spec.js ├── builder-spec.js ├── builders │ ├── knitr-spec.js │ └── latexmk-spec.js ├── composer-spec.js ├── fixtures │ ├── _minted-wibble │ │ └── default.pygstyle │ ├── error-warning.tex │ ├── errors.log │ ├── file.fdb_latexmk │ ├── file.log │ ├── file.tex │ ├── filename with spaces.log │ ├── filename with spaces.tex │ ├── knitr │ │ └── file.Rnw │ ├── latexmk │ │ ├── asymptote-test.tex │ │ ├── glossaries-test.tex │ │ ├── index-test.tex │ │ ├── mpost-test.tex │ │ ├── nomencl-test.tex │ │ └── sagetex-test.tex │ ├── log-parse │ │ ├── file-dvi.fdb_latexmk │ │ ├── file-dvi.log │ │ ├── file-pdf.fdb_latexmk │ │ ├── file-pdf.log │ │ ├── file-pdfdvi.fdb_latexmk │ │ ├── file-pdfdvi.log │ │ ├── file-pdfps.fdb_latexmk │ │ ├── file-pdfps.log │ │ ├── file-ps.fdb_latexmk │ │ └── file-ps.log │ ├── magic-comments │ │ ├── multiple-magic-comments.tex │ │ ├── no-whitespace.tex │ │ ├── not-first-line.tex │ │ ├── override-settings.tex │ │ ├── override-settings.yaml │ │ └── root-comment.tex │ ├── master-tex-finder │ │ ├── multiple-masters │ │ │ ├── inc1.tex │ │ │ ├── inc2.tex │ │ │ ├── master1.tex │ │ │ └── master2.tex │ │ └── single-master │ │ │ ├── inc1.tex │ │ │ ├── inc2.tex │ │ │ ├── inc3.tex │ │ │ ├── master.log │ │ │ └── master.tex │ └── sub │ │ ├── foo bar.tex │ │ └── wibble.tex ├── latex-spec.js ├── logger-spec.js ├── marker-manager-spec.js ├── opener-registry-spec.js ├── parsers │ ├── fdb-parser-spec.js │ ├── log-parser-spec.js │ └── magic-parser-spec.js ├── process-manager-spec.js ├── spec-helpers.js └── stubs.js └── styles ├── latex.less └── markers.atom-text-editor.less /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | latexmkrc linguist-language=Perl 2 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/README.md -------------------------------------------------------------------------------- /keymaps/latex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/keymaps/latex.json -------------------------------------------------------------------------------- /lib/build-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/build-state.js -------------------------------------------------------------------------------- /lib/builder-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/builder-registry.js -------------------------------------------------------------------------------- /lib/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/builder.js -------------------------------------------------------------------------------- /lib/builders/knitr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/builders/knitr.js -------------------------------------------------------------------------------- /lib/builders/latexmk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/builders/latexmk.js -------------------------------------------------------------------------------- /lib/composer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/composer.js -------------------------------------------------------------------------------- /lib/config-migrator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/config-migrator.js -------------------------------------------------------------------------------- /lib/latex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/latex.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/main.js -------------------------------------------------------------------------------- /lib/marker-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/marker-manager.js -------------------------------------------------------------------------------- /lib/opener-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/opener-registry.js -------------------------------------------------------------------------------- /lib/opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/opener.js -------------------------------------------------------------------------------- /lib/openers/atril-opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/openers/atril-opener.js -------------------------------------------------------------------------------- /lib/openers/custom-opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/openers/custom-opener.js -------------------------------------------------------------------------------- /lib/openers/evince-opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/openers/evince-opener.js -------------------------------------------------------------------------------- /lib/openers/okular-opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/openers/okular-opener.js -------------------------------------------------------------------------------- /lib/openers/pdf-view-opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/openers/pdf-view-opener.js -------------------------------------------------------------------------------- /lib/openers/preview-opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/openers/preview-opener.js -------------------------------------------------------------------------------- /lib/openers/qpdfview-opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/openers/qpdfview-opener.js -------------------------------------------------------------------------------- /lib/openers/shell-open-opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/openers/shell-open-opener.js -------------------------------------------------------------------------------- /lib/openers/skim-opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/openers/skim-opener.js -------------------------------------------------------------------------------- /lib/openers/sumatra-opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/openers/sumatra-opener.js -------------------------------------------------------------------------------- /lib/openers/x-reader-opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/openers/x-reader-opener.js -------------------------------------------------------------------------------- /lib/openers/xdg-open-opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/openers/xdg-open-opener.js -------------------------------------------------------------------------------- /lib/openers/zathura-opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/openers/zathura-opener.js -------------------------------------------------------------------------------- /lib/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/parser.js -------------------------------------------------------------------------------- /lib/parsers/fdb-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/parsers/fdb-parser.js -------------------------------------------------------------------------------- /lib/parsers/log-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/parsers/log-parser.js -------------------------------------------------------------------------------- /lib/parsers/magic-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/parsers/magic-parser.js -------------------------------------------------------------------------------- /lib/process-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/process-manager.js -------------------------------------------------------------------------------- /lib/status-indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/status-indicator.js -------------------------------------------------------------------------------- /lib/views/file-reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/views/file-reference.js -------------------------------------------------------------------------------- /lib/views/log-dock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/views/log-dock.js -------------------------------------------------------------------------------- /lib/views/log-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/views/log-message.js -------------------------------------------------------------------------------- /lib/views/message-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/views/message-count.js -------------------------------------------------------------------------------- /lib/views/message-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/views/message-icon.js -------------------------------------------------------------------------------- /lib/views/status-label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/views/status-label.js -------------------------------------------------------------------------------- /lib/werkzeug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/lib/werkzeug.js -------------------------------------------------------------------------------- /menus/latex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/menus/latex.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/package.json -------------------------------------------------------------------------------- /resources/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/resources/latexmkrc -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/script/cibuild -------------------------------------------------------------------------------- /script/create-fixtures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/script/create-fixtures -------------------------------------------------------------------------------- /script/install-ghostscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/script/install-ghostscript -------------------------------------------------------------------------------- /script/install-knitr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/script/install-knitr -------------------------------------------------------------------------------- /script/install-miktex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/script/install-miktex -------------------------------------------------------------------------------- /script/install-texlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/script/install-texlive -------------------------------------------------------------------------------- /script/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/script/lint -------------------------------------------------------------------------------- /spec/async-spec-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/async-spec-helpers.js -------------------------------------------------------------------------------- /spec/build-registry-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/build-registry-spec.js -------------------------------------------------------------------------------- /spec/builder-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/builder-spec.js -------------------------------------------------------------------------------- /spec/builders/knitr-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/builders/knitr-spec.js -------------------------------------------------------------------------------- /spec/builders/latexmk-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/builders/latexmk-spec.js -------------------------------------------------------------------------------- /spec/composer-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/composer-spec.js -------------------------------------------------------------------------------- /spec/fixtures/_minted-wibble/default.pygstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/_minted-wibble/default.pygstyle -------------------------------------------------------------------------------- /spec/fixtures/error-warning.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/error-warning.tex -------------------------------------------------------------------------------- /spec/fixtures/errors.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/errors.log -------------------------------------------------------------------------------- /spec/fixtures/file.fdb_latexmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/file.fdb_latexmk -------------------------------------------------------------------------------- /spec/fixtures/file.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/file.log -------------------------------------------------------------------------------- /spec/fixtures/file.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/file.tex -------------------------------------------------------------------------------- /spec/fixtures/filename with spaces.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/filename with spaces.log -------------------------------------------------------------------------------- /spec/fixtures/filename with spaces.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/filename with spaces.tex -------------------------------------------------------------------------------- /spec/fixtures/knitr/file.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/knitr/file.Rnw -------------------------------------------------------------------------------- /spec/fixtures/latexmk/asymptote-test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/latexmk/asymptote-test.tex -------------------------------------------------------------------------------- /spec/fixtures/latexmk/glossaries-test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/latexmk/glossaries-test.tex -------------------------------------------------------------------------------- /spec/fixtures/latexmk/index-test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/latexmk/index-test.tex -------------------------------------------------------------------------------- /spec/fixtures/latexmk/mpost-test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/latexmk/mpost-test.tex -------------------------------------------------------------------------------- /spec/fixtures/latexmk/nomencl-test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/latexmk/nomencl-test.tex -------------------------------------------------------------------------------- /spec/fixtures/latexmk/sagetex-test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/latexmk/sagetex-test.tex -------------------------------------------------------------------------------- /spec/fixtures/log-parse/file-dvi.fdb_latexmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/log-parse/file-dvi.fdb_latexmk -------------------------------------------------------------------------------- /spec/fixtures/log-parse/file-dvi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/log-parse/file-dvi.log -------------------------------------------------------------------------------- /spec/fixtures/log-parse/file-pdf.fdb_latexmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/log-parse/file-pdf.fdb_latexmk -------------------------------------------------------------------------------- /spec/fixtures/log-parse/file-pdf.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/log-parse/file-pdf.log -------------------------------------------------------------------------------- /spec/fixtures/log-parse/file-pdfdvi.fdb_latexmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/log-parse/file-pdfdvi.fdb_latexmk -------------------------------------------------------------------------------- /spec/fixtures/log-parse/file-pdfdvi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/log-parse/file-pdfdvi.log -------------------------------------------------------------------------------- /spec/fixtures/log-parse/file-pdfps.fdb_latexmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/log-parse/file-pdfps.fdb_latexmk -------------------------------------------------------------------------------- /spec/fixtures/log-parse/file-pdfps.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/log-parse/file-pdfps.log -------------------------------------------------------------------------------- /spec/fixtures/log-parse/file-ps.fdb_latexmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/log-parse/file-ps.fdb_latexmk -------------------------------------------------------------------------------- /spec/fixtures/log-parse/file-ps.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/log-parse/file-ps.log -------------------------------------------------------------------------------- /spec/fixtures/magic-comments/multiple-magic-comments.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/magic-comments/multiple-magic-comments.tex -------------------------------------------------------------------------------- /spec/fixtures/magic-comments/no-whitespace.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/magic-comments/no-whitespace.tex -------------------------------------------------------------------------------- /spec/fixtures/magic-comments/not-first-line.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/magic-comments/not-first-line.tex -------------------------------------------------------------------------------- /spec/fixtures/magic-comments/override-settings.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/magic-comments/override-settings.tex -------------------------------------------------------------------------------- /spec/fixtures/magic-comments/override-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/magic-comments/override-settings.yaml -------------------------------------------------------------------------------- /spec/fixtures/magic-comments/root-comment.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/magic-comments/root-comment.tex -------------------------------------------------------------------------------- /spec/fixtures/master-tex-finder/multiple-masters/inc1.tex: -------------------------------------------------------------------------------- 1 | \section{inc1} 2 | -------------------------------------------------------------------------------- /spec/fixtures/master-tex-finder/multiple-masters/inc2.tex: -------------------------------------------------------------------------------- 1 | \section{inc2} 2 | -------------------------------------------------------------------------------- /spec/fixtures/master-tex-finder/multiple-masters/master1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/master-tex-finder/multiple-masters/master1.tex -------------------------------------------------------------------------------- /spec/fixtures/master-tex-finder/multiple-masters/master2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/master-tex-finder/multiple-masters/master2.tex -------------------------------------------------------------------------------- /spec/fixtures/master-tex-finder/single-master/inc1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/master-tex-finder/single-master/inc1.tex -------------------------------------------------------------------------------- /spec/fixtures/master-tex-finder/single-master/inc2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/master-tex-finder/single-master/inc2.tex -------------------------------------------------------------------------------- /spec/fixtures/master-tex-finder/single-master/inc3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/master-tex-finder/single-master/inc3.tex -------------------------------------------------------------------------------- /spec/fixtures/master-tex-finder/single-master/master.log: -------------------------------------------------------------------------------- 1 | Master log 2 | -------------------------------------------------------------------------------- /spec/fixtures/master-tex-finder/single-master/master.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/master-tex-finder/single-master/master.tex -------------------------------------------------------------------------------- /spec/fixtures/sub/foo bar.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/sub/foo bar.tex -------------------------------------------------------------------------------- /spec/fixtures/sub/wibble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/fixtures/sub/wibble.tex -------------------------------------------------------------------------------- /spec/latex-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/latex-spec.js -------------------------------------------------------------------------------- /spec/logger-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/logger-spec.js -------------------------------------------------------------------------------- /spec/marker-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/marker-manager-spec.js -------------------------------------------------------------------------------- /spec/opener-registry-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/opener-registry-spec.js -------------------------------------------------------------------------------- /spec/parsers/fdb-parser-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/parsers/fdb-parser-spec.js -------------------------------------------------------------------------------- /spec/parsers/log-parser-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/parsers/log-parser-spec.js -------------------------------------------------------------------------------- /spec/parsers/magic-parser-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/parsers/magic-parser-spec.js -------------------------------------------------------------------------------- /spec/process-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/process-manager-spec.js -------------------------------------------------------------------------------- /spec/spec-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/spec-helpers.js -------------------------------------------------------------------------------- /spec/stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/spec/stubs.js -------------------------------------------------------------------------------- /styles/latex.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/styles/latex.less -------------------------------------------------------------------------------- /styles/markers.atom-text-editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjo/atom-latex/HEAD/styles/markers.atom-text-editor.less --------------------------------------------------------------------------------