Skip to content

Commit 24655d9

Browse files
committed
Merge branch 'master' into develop
2 parents 3da421a + 43f3bc4 commit 24655d9

File tree

4 files changed

+75
-40
lines changed

4 files changed

+75
-40
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
### Describe the bug
11+
<!-- A clear and concise description of what the bug is. -->
12+
13+
### To Reproduce
14+
Steps to reproduce the behavior:
15+
16+
<!-- If you are not able to reproduce it by running `zsh -df` and sourcing the plugin manually, it means there that the issue is caused by something in your local config file(s). Temporarily comment out or remove sections of your config and restart `zsh` until you narrow down exactly what is causing the issue. -->
17+
18+
```sh
19+
% zsh -df
20+
% source path/to/zsh-autosuggestions.zsh
21+
% ... # what do you do to reproduce?
22+
```
23+
24+
### Expected behavior
25+
<!-- A clear and concise description of what you expected to happen. -->
26+
27+
### Screenshots
28+
<!-- If applicable, add screenshots to help explain your problem. -->
29+
30+
### Desktop
31+
- OS + distribution: <!-- e.g. Arch Linux 2019.07.01 -->
32+
- Zsh version: <!-- `echo $ZSH_VERSION` -->
33+
- Plugin version: <!-- or git commit hash if installed via git -->
34+
35+
### Additional context
36+
<!-- Add any other context about the problem here. -->
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
### Is your feature request related to a problem? Please describe.
11+
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
12+
13+
### Describe the solution you'd like
14+
<!-- A clear and concise description of what you want to happen. -->
15+
16+
### Describe alternatives you've considered
17+
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
18+
19+
### Additional context
20+
<!-- Add any other context or screenshots about the feature request here. -->

INSTALL.md

Lines changed: 17 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,22 @@
11
# Installation
22

3-
* [Manual](#manual-git-clone)
3+
* [Packages](#packages)
44
* [Antigen](#antigen)
55
* [Oh My Zsh](#oh-my-zsh)
6-
* [Arch Linux](#arch-linux)
7-
* [macOS via Homebrew](#macos-via-homebrew)
8-
9-
## Manual (Git Clone)
10-
11-
1. Clone this repository somewhere on your machine. This guide will assume `~/.zsh/zsh-autosuggestions`.
12-
13-
```sh
14-
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions
15-
```
16-
17-
2. Add the following to your `.zshrc`:
6+
* [Manual](#manual-git-clone)
187

19-
```sh
20-
source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
21-
```
8+
## Packages
229

23-
3. Start a new terminal session.
10+
| System | Package |
11+
| ------------- | ------------- |
12+
| Debian / Ubuntu | [zsh-autosuggestions OBS repository](https://software.opensuse.org/download.html?project=shells%3Azsh-users%3Azsh-autosuggestions&package=zsh-autosuggestions) |
13+
| Fedora / CentOS / RHEL / Scientific Linux | [zsh-autosuggestions OBS repository](https://software.opensuse.org/download.html?project=shells%3Azsh-users%3Azsh-autosuggestions&package=zsh-autosuggestions) |
14+
| OpenSUSE / SLE | [zsh-autosuggestions OBS repository](https://software.opensuse.org/download.html?project=shells%3Azsh-users%3Azsh-autosuggestions&package=zsh-autosuggestions) |
15+
| Arch Linux / Manjaro / Antergos / Hyperbola | [zsh-autosuggestions](https://www.archlinux.org/packages/zsh-autosuggestions), [zsh-autosuggestions-git](https://aur.archlinux.org/packages/zsh-autosuggestions-git) |
16+
| NixOS | [zsh-autosuggestions](https://github.com/NixOS/nixpkgs/blob/master/pkgs/shells/zsh/zsh-autosuggestions/default.nix) |
17+
| Void Linux | [zsh-autosuggestions](https://github.com/void-linux/void-packages/blob/master/srcpkgs/zsh-autosuggestions/template) |
18+
| Mac OS | [homebrew](https://github.com/Homebrew/homebrew-core/blob/master/Formula/zsh-autosuggestions.rb) |
19+
| NetBSD | [pkgsrc](http://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/shells/zsh-autosuggestions/README.html) |
2420

2521
## Antigen
2622

@@ -48,36 +44,18 @@
4844

4945
3. Start a new terminal session.
5046

51-
## Arch Linux
52-
53-
1. Install [`zsh-autosuggestions`](https://www.archlinux.org/packages/community/any/zsh-autosuggestions/) from the `community` repository.
54-
55-
```sh
56-
pacman -S zsh-autosuggestions
57-
```
58-
59-
or, to use a package based on the `master` branch, install [`zsh-autosuggestions-git`](https://aur.archlinux.org/packages/zsh-autosuggestions-git/) from the [AUR](https://wiki.archlinux.org/index.php/Arch_User_Repository).
60-
61-
2. Add the following to your `.zshrc`:
62-
63-
```sh
64-
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
65-
```
66-
67-
3. Start a new terminal session.
68-
69-
## macOS via Homebrew
47+
## Manual (Git Clone)
7048

71-
1. Install the `zsh-autosuggestions` package using [Homebrew](https://brew.sh/).
49+
1. Clone this repository somewhere on your machine. This guide will assume `~/.zsh/zsh-autosuggestions`.
7250

7351
```sh
74-
brew install zsh-autosuggestions
52+
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions
7553
```
7654

7755
2. Add the following to your `.zshrc`:
7856

7957
```sh
80-
source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh
58+
source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
8159
```
8260

8361
3. Start a new terminal session.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ It suggests commands as you type based on history and completions.
66

77
Requirements: Zsh v4.3.11 or later
88

9-
[![CircleCI](https://circleci.com/gh/zsh-users/zsh-autosuggestions.svg?style=svg)](https://circleci.com/gh/zsh-users/zsh-autosuggestions)
9+
[![CircleCI](https://img.shields.io/circleci/build/github/zsh-users/zsh-autosuggestions.svg)](https://circleci.com/gh/zsh-users/zsh-autosuggestions)
10+
[![Chat on Gitter](https://img.shields.io/gitter/room/zsh-users/zsh-autosuggestions.svg)](https://gitter.im/zsh-users/zsh-autosuggestions)
1011

1112
<a href="https://asciinema.org/a/37390" target="_blank"><img src="https://asciinema.org/a/37390.png" width="400" /></a>
1213

0 commit comments

Comments
 (0)