Skip to content

Commit

Permalink
Merge branch 'master' into 0.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
curlpipe authored Nov 22, 2020
2 parents 6790b13 + 7712269 commit 5bf2c20
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Deploy
on:
push:
tags:
- "v*"

jobs:
homebrew:
name: Bump Homebrew formula
runs-on: ubuntu-latest
steps:
- uses: mislav/[email protected]
if: "!contains(github.ref, '-')" # skip prereleases
with:
formula-name: ox
env:
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,15 @@ Install `ox` from Homebrew core tap.
brew install ox
```

#### MacPorts

On macOS, you can install `ox` via [MacPorts](https://www.macports.org)

```sh
sudo port selfupdate
sudo port install ox
```

<!-- USAGE EXAMPLES -->
## Usage

Expand Down Expand Up @@ -177,6 +186,8 @@ Ox is controlled via your keyboard shortcuts. Here are the default shortcuts tha
| `Ctrl + A` | Carries out a batch replace option. It will prompt you for a target to replace and what you want to replace it with and will then replace every occurance in the document. Note: this allows you to use regular expressions. |
| `Ctrl + Left` | Navigates to the previous tab. |
| `Ctrl + Right` | Navigates to the next tab. |
| `Alt + A` | Focuses the command line. |


#### Configuring Ox

Expand Down Expand Up @@ -211,7 +222,7 @@ Here is the current summary
- [X] Replacing text (0.2.3) [1549 lines]
- [X] Syntax highlighting (0.2.4) [1894 lines]
- [X] Tabs for multitasking (0.2.5) [2050 lines]
- [X] Macros (0.2.6) [2633 lines]
- [X] Macros (0.2.6) [3414 lines]
- [X] Tweaks (0.2.7) [3241 lines]
- [ ] Mouse support (0.2.8)
- [ ] Auto indentation (0.3.0)
Expand Down
Loading

0 comments on commit 5bf2c20

Please sign in to comment.