Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Live share integration #4308

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 86 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 15 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,11 @@
}
],
"commands": [
{
"command": "latex-workshop.hostPort",
"title": "%command.hostPort%",
"category": "LaTeX Workshop"
},
{
"command": "latex-workshop.navigate-envpair",
"title": "%command.navigate-envpair%",
Expand Down Expand Up @@ -357,8 +362,7 @@
"command": "latex-workshop.view",
"title": "%command.view%",
"category": "LaTeX Workshop",
"icon": "$(open-preview)",
"enablement": "!virtualWorkspace"
"icon": "$(open-preview)"
},
{
"command": "latex-workshop.tab",
Expand All @@ -368,8 +372,7 @@
{
"command": "latex-workshop.viewInBrowser",
"title": "%command.viewInBrowser%",
"category": "LaTeX Workshop",
"enablement": "!virtualWorkspace"
"category": "LaTeX Workshop"
},
{
"command": "latex-workshop.viewExternal",
Expand All @@ -391,8 +394,7 @@
{
"command": "latex-workshop.synctex",
"title": "%command.synctex%",
"category": "LaTeX Workshop",
"enablement": "!virtualWorkspace"
"category": "LaTeX Workshop"
},
{
"command": "latex-workshop.clean",
Expand All @@ -403,8 +405,7 @@
{
"command": "latex-workshop.citation",
"title": "%command.citation%",
"category": "LaTeX Workshop",
"enablement": "!virtualWorkspace"
"category": "LaTeX Workshop"
},
{
"command": "latex-workshop.addtexroot",
Expand Down Expand Up @@ -541,13 +542,13 @@
"key": "ctrl+l alt+v",
"mac": "cmd+l alt+v",
"command": "latex-workshop.view",
"when": "editorLangId =~ /^latex$|^latex-expl3$|^doctex$|^rsweave$|^jlweave$|^pweave$/ && config.latex-workshop.bind.altKeymap.enabled && !virtualWorkspace"
"when": "editorLangId =~ /^latex$|^latex-expl3$|^doctex$|^rsweave$|^jlweave$|^pweave$/ && config.latex-workshop.bind.altKeymap.enabled"
},
{
"key": "ctrl+l alt+j",
"mac": "cmd+l alt+j",
"command": "latex-workshop.synctex",
"when": "editorTextFocus && editorLangId =~ /^latex$|^latex-expl3$|^doctex$/ && config.latex-workshop.bind.altKeymap.enabled && !virtualWorkspace"
"when": "editorTextFocus && editorLangId =~ /^latex$|^latex-expl3$|^doctex$/ && config.latex-workshop.bind.altKeymap.enabled"
},
{
"key": "ctrl+l alt+x",
Expand Down Expand Up @@ -577,13 +578,13 @@
"key": "ctrl+alt+v",
"mac": "cmd+alt+v",
"command": "latex-workshop.view",
"when": "editorLangId =~ /^latex$|^latex-expl3$|^doctex$|^rsweave$|^jlweave$|^pweave$/ && !config.latex-workshop.bind.altKeymap.enabled && !virtualWorkspace"
"when": "editorLangId =~ /^latex$|^latex-expl3$|^doctex$|^rsweave$|^jlweave$|^pweave$/ && !config.latex-workshop.bind.altKeymap.enabled"
},
{
"key": "ctrl+alt+j",
"mac": "cmd+alt+j",
"command": "latex-workshop.synctex",
"when": "editorTextFocus && editorLangId =~ /^latex$|^latex-expl3$|^doctex$/ && !config.latex-workshop.bind.altKeymap.enabled && !virtualWorkspace"
"when": "editorTextFocus && editorLangId =~ /^latex$|^latex-expl3$|^doctex$/ && !config.latex-workshop.bind.altKeymap.enabled"
},
{
"key": "ctrl+alt+x",
Expand Down Expand Up @@ -2493,7 +2494,7 @@
],
"editor/title": [
{
"when": "editorLangId =~ /^latex$|^latex-expl3$|^doctex$|^rsweave$|^jlweave$|^pweave$/ && !virtualWorkspace",
"when": "editorLangId =~ /^latex$|^latex-expl3$|^doctex$|^rsweave$|^jlweave$|^pweave$/",
"command": "latex-workshop.view",
"group": "navigation@2"
},
Expand Down Expand Up @@ -2570,6 +2571,7 @@
"micromatch": "4.0.5",
"pdfjs-dist": "4.3.136",
"tmp": "0.2.3",
"vsls": "1.0.4753",
"workerpool": "9.1.1",
"ws": "8.17.1"
},
Expand Down
1 change: 1 addition & 0 deletions package.nls.bg.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "Споделяне (на хоста) / Придобиване (на госта) на порт за споделяне на живо на хоста",
"command.navigate-envpair": "Навигирай до съвпадение на \\begin{}/\\end{}",
"command.select-envname": "Избери името на текущото среда",
"command.select-envcontent": "Избери съдържанието на текущото среда",
Expand Down
1 change: 1 addition & 0 deletions package.nls.cs.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "Sdílet (na hostiteli) / Získat (na hostu) port pro Live Share hostitele",
"command.navigate-envpair": "Přejít k odpovídajícímu \\begin{}/\\end{}",
"command.select-envname": "Vybrat název aktuálního prostředí",
"command.select-envcontent": "Vybrat obsah aktuálního prostředí",
Expand Down
1 change: 1 addition & 0 deletions package.nls.de.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "Teilen (auf Host) / Erwerben (auf Gast) Live Share Host-Port",
"command.navigate-envpair": "Zu passendem \\begin{}/\\end{} navigieren",
"command.select-envname": "Aktuellen Umgebungsnamen auswählen",
"command.select-envcontent": "Aktuellen Umgebungsinhalt auswählen",
Expand Down
1 change: 1 addition & 0 deletions package.nls.es.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "Compartir (en anfitrión) / Adquirir (en invitado) puerto de anfitrión de Live Share",
"command.navigate-envpair": "Navegar al \\begin{}/\\end{} correspondiente",
"command.select-envname": "Seleccionar el nombre del entorno actual",
"command.select-envcontent": "Seleccionar el contenido del entorno actual",
Expand Down
1 change: 1 addition & 0 deletions package.nls.fr.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "Partager (sur l'hôte) / Acquérir (sur l'invité) le port de l'hôte Live Share",
"command.navigate-envpair": "Naviguer vers \\begin{}/\\end{} correspondant",
"command.select-envname": "Sélectionner le nom de l'environnement actuel",
"command.select-envcontent": "Sélectionner le contenu de l'environnement actuel",
Expand Down
1 change: 1 addition & 0 deletions package.nls.hu.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "Megosztás (a gazdagépen) / Megszerzés (a vendégen) Live Share gazdagép port",
"command.navigate-envpair": "\\begin{}/\\end{} párok közötti navigáció",
"command.select-envname": "Jelenlegi környezet nevének kijelölése",
"command.select-envcontent": "Jelenlegi környezet tartalmának kijelölése",
Expand Down
1 change: 1 addition & 0 deletions package.nls.it.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "Condividi (su host) / Acquisisci (su guest) porta dell'host Live Share",
"command.navigate-envpair": "Vai alla coppia corrispondente \\begin{}/\\end{}",
"command.select-envname": "Seleziona il nome dell'ambiente corrente",
"command.select-envcontent": "Seleziona il contenuto dell'ambiente corrente",
Expand Down
1 change: 1 addition & 0 deletions package.nls.ja.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "共有 (ホスト側) / 取得 (ゲスト側) Live Share ホストポート",
"command.navigate-envpair": "\\begin{}/\\end{}に移動",
"command.select-envname": "現在の環境名を選択",
"command.select-envcontent": "現在の環境内容を選択",
Expand Down
1 change: 1 addition & 0 deletions package.nls.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "Share (on host) / Acquire (on guest) Live Share host port",
"command.navigate-envpair": "Navigate to matching \\begin{}/\\end{}",
"command.select-envname": "Select the current environment name",
"command.select-envcontent": "Select the current environment content",
Expand Down
1 change: 1 addition & 0 deletions package.nls.ko.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "공유 (호스트) / 획득 (게스트) Live Share 호스트 포트",
"command.navigate-envpair": "\\begin{}/\\end{}와 일치하는 곳으로 이동",
"command.select-envname": "현재 환경 이름 선택",
"command.select-envcontent": "현재 환경 내용 선택",
Expand Down
1 change: 1 addition & 0 deletions package.nls.pl.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "Udostępnij (na hoście) / Uzyskaj (na gościu) port hosta Live Share",
"command.navigate-envpair": "Przejdź do pasującego \\begin{}/\\end{}",
"command.select-envname": "Wybierz nazwę bieżącego środowiska",
"command.select-envcontent": "Wybierz zawartość bieżącego środowiska",
Expand Down
1 change: 1 addition & 0 deletions package.nls.pt-br.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "Compartilhar (no host) / Adquirir (no guest) porta do host do Live Share",
"command.navigate-envpair": "Navegar para correspondência \\begin{}/\\end{}",
"command.select-envname": "Selecionar o nome do ambiente atual",
"command.select-envcontent": "Selecionar o conteúdo do ambiente atual",
Expand Down
1 change: 1 addition & 0 deletions package.nls.ru.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "Поделиться (на хосте) / Получить (на госте) порт хоста Live Share",
"command.navigate-envpair": "Перейти к соответствующему \\begin{}/\\end{}",
"command.select-envname": "Выбрать имя текущего окружения",
"command.select-envcontent": "Выбрать содержимое текущего окружения",
Expand Down
1 change: 1 addition & 0 deletions package.nls.tr.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "Paylaş (ev sahibinde) / Al (misafirde) Live Share ev sahibi portu",
"command.navigate-envpair": "\\begin{}/\\end{} eşleşmesine git",
"command.select-envname": "Geçerli ortam adını seç",
"command.select-envcontent": "Geçerli ortam içeriğini seç",
Expand Down
1 change: 1 addition & 0 deletions package.nls.zh-cn.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "共享(在主机上)/ 获取(在客户端)Live Share 主机端口",
"command.navigate-envpair": "导航到匹配的 \\begin{}/\\end{}",
"command.select-envname": "选择当前环境名称",
"command.select-envcontent": "选择当前环境内容",
Expand Down
1 change: 1 addition & 0 deletions package.nls.zh-tw.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"command.hostPort": "共享(在主機上)/ 獲取(在客戶端)Live Share 主機端口",
"command.navigate-envpair": "導航至匹配的 \\begin{}/\\end{}",
"command.select-envname": "選擇當前環境名稱",
"command.select-envcontent": "選擇當前環境內容",
Expand Down
Loading