Skip to content

Commit

Permalink
README.md: Version bump + small table layout fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ueffel committed Oct 27, 2020
1 parent eea7f87 commit a2a8258
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ commands to install, update and remove third party packages.

All commands are prefixed with `PackageControl:`.

| command | function |
|-------------------------|-----------------------------------------------------------------------------------------------------------|
| Install Package | Downloads the new package and installs it |
| Update Package | Checks if a new version of the package is available and updates if so |
| Update All Packages | Does the Update Package command for all installed packages |
| Remove Package | Deinstalls the package (configurations are untouched) |
| Reinstall Package | Deinstalls the package and installs it again (configurations are untouched) |
| Reinstall Untracked | Reinstalls a already installed package, that was not installed through PackageControl (untracked package) |
| Reinstall All Untracked | Does the Reinstall Untracked command for all untracked packages |
| Update Repository List | Downloads the list of available package again |
| command | function |
|-------------------------|--------------------------------------------------------------------------------------------------------------|
| Install Package | Downloads the new package and installs it |
| Update Package | Checks if a new version of the package is available and updates if so |
| Update All Packages | Does the Update Package command for all installed packages |
| Remove Package | Deinstalls the package (configurations are untouched) |
| Reinstall Package | Deinstalls the package and installs it again (configurations are untouched) |
| Reinstall Untracked | Reinstalls a already installed package, that was not installed<br>through PackageControl (untracked package) |
| Reinstall All Untracked | Does the Reinstall Untracked command for all untracked packages |
| Update Repository List | Downloads the list of available package again |

![Usage](usage.gif)

Expand All @@ -28,7 +28,7 @@ All commands are prefixed with `PackageControl:`.
* Enter the following:

```python
import keypirinha as kp,keypirinha_net as kpn,os;p="PackageControl.keypirinha-package";d=kpn.build_urllib_opener().open("https://github.com/ueffel/Keypirinha-PackageControl/releases/download/1.0.2/"+p);pb=d.read();d.close();f=open(os.path.join(kp.installed_package_dir(),p),"wb");f.write(pb);f.close()
import keypirinha as kp,keypirinha_net as kpn,os;p="PackageControl.keypirinha-package";d=kpn.build_urllib_opener().open("https://github.com/ueffel/Keypirinha-PackageControl/releases/download/1.0.3/"+p);pb=d.read();d.close();f=open(os.path.join(kp.installed_package_dir(),p),"wb");f.write(pb);f.close()
```

### Manually
Expand Down

0 comments on commit a2a8258

Please sign in to comment.