Skip to content

Commit

Permalink
Update README (#4102)
Browse files Browse the repository at this point in the history
This commit updates manual installation hints by removing ST3 version number.
  • Loading branch information
deathaxe authored Nov 29, 2024
1 parent 65bf9f0 commit 9f08e35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ To make changes to these packages and test them locally, fork this repository. T

```bash
$ git clone https://github.com/sublimehq/Packages.git
$ ln -s `pwd`/Packages/Python ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/
$ ln -s `pwd`/Packages/Python ~/Library/Application\ Support/Sublime\ Text/Packages/
```

### Linux

```bash
$ git clone https://github.com/sublimehq/Packages.git
$ ln -s `pwd`/Packages/Python ~/.config/sublime-text-3/Packages/
$ ln -s `pwd`/Packages/Python ~/.config/sublime-text/Packages/
```

### Windows
Expand All @@ -33,7 +33,7 @@ On Windows, you can use directory junctions instead of symlinks (symlinks requir
```powershell
# Using PowerShell
PS> git clone https://github.com/sublimehq/Packages.git
PS> cmd /c mklink /J "$env:APPDATA/Sublime Text 3/Packages/Python" (convert-path ./Packages/Python)
PS> cmd /c mklink /J "$env:APPDATA/Sublime Text/Packages/Python" (convert-path ./Packages/Python)
```

Alternatively, download the portable version and clone this repository directly as a subdirectory of the `Data` folder.
Expand Down

0 comments on commit 9f08e35

Please sign in to comment.