Skip to content
This repository was archived by the owner on Sep 30, 2025. It is now read-only.
Merged
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
1 change: 0 additions & 1 deletion .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:

- name: Package VSIX (+ checksum)
id: pkg
shell: bash
run: |
SHORT_SHA=$(git rev-parse --short HEAD)
BASE_VERSION=$(jq -r '.version' package.json)
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ out

**/vendor/**

.DS_Store
.DS_Store

*.sha256
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Open Overleaf (ShareLatex) projects in VSCode, with full collaboration support.

## NOTE
This is a forked version of the excellent [Overleaf Workshop](https://github.com/iamhyc/Overleaf-Workshop) project that [iamhyc](https://github.com/iamhyc/Overleaf-Workshop) started. The core difference that this version has more robust conflict resolution to better suit my use-case. More specifically, it invokes the `git` and `code` CLIs for detecting merge conflicts and launching a 3-way merge editor respectively.
This is a forked version of the excellent [Overleaf Workshop](https://github.com/iamhyc/Overleaf-Workshop) project that [iamhyc](https://github.com/iamhyc/Overleaf-Workshop) started. The core difference is that this version has more robust conflict resolution to better suit my use-case. More specifically, it invokes the `git` and `code` CLIs for detecting merge conflicts and launching a 3-way merge editor respectively.

## Fetching New Latest Version
**macOS**
Expand All @@ -22,7 +22,7 @@ curl -L -O https://github.com/dyld-w/Overleaf-Workshop/releases/latest/download/
shasum -a 256 -c overleaf-workshop-enhanced.vsix.sha256

# Install into VS Code (use full path to `code` if needed)
code --install-extension overleaf-workshop-enhanced.vsix
code --install-extension overleaf-workshop-enhanced.vsix --force
```

**Linux**
Expand All @@ -35,7 +35,7 @@ curl -L -O https://github.com/dyld-w/Overleaf-Workshop/releases/latest/download/
sha256sum -c overleaf-workshop-enhanced.vsix.sha256

# Install into VS Code
code --install-extension overleaf-workshop-enhanced.vsix
code --install-extension overleaf-workshop-enhanced.vsix --force
```

**Windows (PowerShell)**
Expand All @@ -60,9 +60,16 @@ Get-FileHash overleaf-workshop-enhanced.vsix -Algorithm SHA256 | ForEach-Object
}

# Install into VS Code
code --install-extension .\overleaf-workshop-enhanced.vsix
code --install-extension .\overleaf-workshop-enhanced.vsix --force
```



---

## iamhyc's Documentation
While most of the below is still accurate, I can't guarantee it'll all be accurate as documentation falls at much lower priority than functionality for my fork.

### User Guide

The full user guide is available at [GitHub Wiki](https://github.com/iamhyc/Overleaf-Workshop/wiki).
Expand Down
Loading