Skip to content

Commit 28e1b02

Browse files
authored
Merge pull request micro-editor#3971 from JoeKar/fix/repository-url
Change `zyedidia/micro` to `micro-editor/micro`
2 parents 0a4e15b + ab8c242 commit 28e1b02

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+262
-262
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ HASH = $(shell git rev-parse --short HEAD)
66
DATE = $(shell GOOS=$(shell go env GOHOSTOS) GOARCH=$(shell go env GOHOSTARCH) \
77
go run tools/build-date.go)
88
GOBIN ?= $(shell go env GOPATH)/bin
9-
GOVARS = -X github.com/zyedidia/micro/v2/internal/util.Version=$(VERSION) -X github.com/zyedidia/micro/v2/internal/util.CommitHash=$(HASH) -X 'github.com/zyedidia/micro/v2/internal/util.CompileDate=$(DATE)'
10-
DEBUGVAR = -X github.com/zyedidia/micro/v2/internal/util.Debug=ON
9+
GOVARS = -X github.com/micro-editor/micro/v2/internal/util.Version=$(VERSION) -X github.com/micro-editor/micro/v2/internal/util.CommitHash=$(HASH) -X 'github.com/micro-editor/micro/v2/internal/util.CompileDate=$(DATE)'
10+
DEBUGVAR = -X github.com/micro-editor/micro/v2/internal/util.Debug=ON
1111
VSCODE_TESTS_BASE_URL = 'https://raw.githubusercontent.com/microsoft/vscode/e6a45f4242ebddb7aa9a229f85555e8a3bd987e2/src/vs/editor/test/common/model/'
1212
CGO_ENABLED := $(if $(CGO_ENABLED),$(CGO_ENABLED),0)
1313

README.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<img alt="micro logo" src="./assets/micro-logo-drop.svg" width="500px"/>
22

3-
![Test Workflow](https://github.com/zyedidia/micro/actions/workflows/test.yaml/badge.svg)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/zyedidia/micro/v2)](https://goreportcard.com/report/github.com/zyedidia/micro/v2)
5-
[![Release](https://img.shields.io/github/release/zyedidia/micro.svg?label=Release)](https://github.com/zyedidia/micro/releases)
6-
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/zyedidia/micro/blob/master/LICENSE)
3+
![Test Workflow](https://github.com/micro-editor/micro/actions/workflows/test.yaml/badge.svg)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/micro-editor/micro/v2)](https://goreportcard.com/report/github.com/micro-editor/micro/v2)
5+
[![Release](https://img.shields.io/github/release/micro-editor/micro.svg?label=Release)](https://github.com/micro-editor/micro/releases)
6+
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/micro-editor/micro/blob/master/LICENSE)
77
[![Join the chat at https://gitter.im/zyedidia/micro](https://badges.gitter.im/zyedidia/micro.svg)](https://gitter.im/zyedidia/micro?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
88
[![Snap Status](https://snapcraft.io/micro/badge.svg)](https://snapcraft.io/micro)
99

@@ -57,18 +57,18 @@ You can also check out the website for Micro at https://micro-editor.github.io.
5757

5858
## Installation
5959

60-
To install micro, you can download a [prebuilt binary](https://github.com/zyedidia/micro/releases), or you can build it from source.
60+
To install micro, you can download a [prebuilt binary](https://github.com/micro-editor/micro/releases), or you can build it from source.
6161

62-
If you want more information about ways to install micro, see this [wiki page](https://github.com/zyedidia/micro/wiki/Installing-Micro).
62+
If you want more information about ways to install micro, see this [wiki page](https://github.com/micro-editor/micro/wiki/Installing-Micro).
6363

6464
Use `micro -version` to get the version information after installing. It is only guaranteed that you are installing the most recent
6565
stable version if you install from the prebuilt binaries, Homebrew, or Snap.
6666

67-
A desktop entry file and man page can be found in the [assets/packaging](https://github.com/zyedidia/micro/tree/master/assets/packaging) directory.
67+
A desktop entry file and man page can be found in the [assets/packaging](https://github.com/micro-editor/micro/tree/master/assets/packaging) directory.
6868

6969
### Pre-built binaries
7070

71-
Pre-built binaries are distributed in [releases](https://github.com/zyedidia/micro/releases).
71+
Pre-built binaries are distributed in [releases](https://github.com/micro-editor/micro/releases).
7272

7373
To uninstall micro, simply remove the binary, and the configuration directory at `~/.config/micro`.
7474

@@ -85,14 +85,14 @@ The script will place the micro binary in the current directory. From there, you
8585
With [Eget](https://github.com/zyedidia/eget) installed, you can easily get a pre-built binary:
8686

8787
```
88-
eget zyedidia/micro
88+
eget micro-editor/micro
8989
```
9090

9191
Use `--tag VERSION` to download a specific tagged version.
9292

9393
```
94-
eget --tag nightly zyedidia/micro # download the nightly version (compiled every day at midnight UTC)
95-
eget --tag v2.0.8 zyedidia/micro # download version 2.0.8 rather than the latest release
94+
eget --tag nightly micro-editor/micro # download the nightly version (compiled every day at midnight UTC)
95+
eget --tag v2.0.8 micro-editor/micro # download version 2.0.8 rather than the latest release
9696
```
9797

9898
You can install `micro` by adding `--to /usr/local/bin` to the `eget` command, or move the binary manually to a directory on your `$PATH` after the download completes.
@@ -109,7 +109,7 @@ brew install micro
109109

110110
**Note for Mac:** All micro keybindings use the control or alt (option) key, not the command
111111
key. By default, macOS terminals do not forward alt key events. To fix this, please see
112-
the section on [macOS terminals](https://github.com/zyedidia/micro#macos-terminal) further below.
112+
the section on [macOS terminals](https://github.com/micro-editor/micro#macos-terminal) further below.
113113

114114
On Linux, you can install micro through [snap](https://snapcraft.io/docs/core/install)
115115

@@ -132,7 +132,7 @@ for other operating systems. These packages are not guaranteed to be up-to-date.
132132
* `eopkg install micro` (Solus).
133133
* `pacstall -I micro` (Pacstall).
134134
* `apt-get install micro` (ALT Linux)
135-
* See [wiki](https://github.com/zyedidia/micro/wiki/Installing-Micro) for details about CRUX, Termux.
135+
* See [wiki](https://github.com/micro-editor/micro/wiki/Installing-Micro) for details about CRUX, Termux.
136136
* distro-agnostic package managers:
137137
* `nix profile install nixpkgs#micro` (with [Nix](https://nixos.org/) and flakes enabled)
138138
* `flox install micro` (with [Flox](https://flox.dev))
@@ -165,7 +165,7 @@ If your operating system does not have a binary release, but does run Go, you ca
165165
Make sure that you have Go version 1.19 or greater and Go modules are enabled.
166166

167167
```
168-
git clone https://github.com/zyedidia/micro
168+
git clone https://github.com/micro-editor/micro
169169
cd micro
170170
make build
171171
sudo mv micro /usr/local/bin # optional
@@ -176,7 +176,7 @@ anywhere you like (for example `/usr/local/bin`).
176176

177177
The command `make install` will install the binary to `$GOPATH/bin` or `$GOBIN`.
178178

179-
You can install directly with `go get` (`go get github.com/zyedidia/micro/cmd/micro`) but this isn't
179+
You can install directly with `go get` (`go get github.com/micro-editor/micro/cmd/micro`) but this isn't
180180
recommended because it doesn't build micro with version information (necessary for the plugin manager),
181181
and doesn't disable debug mode.
182182

@@ -261,14 +261,14 @@ click to enable line selection.
261261
micro has a built-in help system which you can access by pressing <kbd>Ctrl-e</kbd> and typing `help`. Additionally, you can
262262
view the help files here:
263263

264-
- [main help](https://github.com/zyedidia/micro/tree/master/runtime/help/help.md)
265-
- [keybindings](https://github.com/zyedidia/micro/tree/master/runtime/help/keybindings.md)
266-
- [commands](https://github.com/zyedidia/micro/tree/master/runtime/help/commands.md)
267-
- [colors](https://github.com/zyedidia/micro/tree/master/runtime/help/colors.md)
268-
- [options](https://github.com/zyedidia/micro/tree/master/runtime/help/options.md)
269-
- [plugins](https://github.com/zyedidia/micro/tree/master/runtime/help/plugins.md)
264+
- [main help](https://github.com/micro-editor/micro/tree/master/runtime/help/help.md)
265+
- [keybindings](https://github.com/micro-editor/micro/tree/master/runtime/help/keybindings.md)
266+
- [commands](https://github.com/micro-editor/micro/tree/master/runtime/help/commands.md)
267+
- [colors](https://github.com/micro-editor/micro/tree/master/runtime/help/colors.md)
268+
- [options](https://github.com/micro-editor/micro/tree/master/runtime/help/options.md)
269+
- [plugins](https://github.com/micro-editor/micro/tree/master/runtime/help/plugins.md)
270270

271-
I also recommend reading the [tutorial](https://github.com/zyedidia/micro/tree/master/runtime/help/tutorial.md) for
271+
I also recommend reading the [tutorial](https://github.com/micro-editor/micro/tree/master/runtime/help/tutorial.md) for
272272
a brief introduction to the more powerful configuration features micro offers.
273273

274274
There is also an unofficial Discord, which you can join at https://discord.gg/nhWR6armnR.
@@ -277,9 +277,9 @@ There is also an unofficial Discord, which you can join at https://discord.gg/nh
277277

278278
If you find any bugs, please report them! I am also happy to accept pull requests from anyone.
279279

280-
You can use the [GitHub issue tracker](https://github.com/zyedidia/micro/issues)
280+
You can use the [GitHub issue tracker](https://github.com/micro-editor/micro/issues)
281281
to report bugs, ask questions, or suggest new features.
282282

283-
For a more informal setting to discuss the editor, you can join the [Gitter chat](https://gitter.im/zyedidia/micro) or the [Discord](https://discord.gg/nhWR6armnR). You can also use the [Discussions](https://github.com/zyedidia/micro/discussions) section on Github for a forum-like setting or for Q&A.
283+
For a more informal setting to discuss the editor, you can join the [Gitter chat](https://gitter.im/zyedidia/micro) or the [Discord](https://discord.gg/nhWR6armnR). You can also use the [Discussions](https://github.com/micro-editor/micro/discussions) section on Github for a forum-like setting or for Q&A.
284284

285285
Sometimes I am unresponsive, and I apologize! If that happens, please ping me.

assets/packaging/micro.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ which can be accessed from within micro. Micro tells you what key combination to
132132
press to get help in the lower right.
133133
.SH BUGS
134134
A comprehensive list of bugs will not be listed in this manpage. See the Github
135-
page at \fBhttps://github.com/zyedidia/micro/issues\fP for a list of known bugs
135+
page at \fBhttps://github.com/micro-editor/micro/issues\fP for a list of known bugs
136136
and to report any newly encountered bugs you may find. We strive to correct
137137
bugs as swiftly as possible.
138138
.SH COPYRIGHT
139139
Copyright \(co 2020 Zachary Yedidia, et al. MIT license.
140-
See \fBhttps://github.com/zyedidia/micro\fP for details.
140+
See \fBhttps://github.com/micro-editor/micro\fP for details.

cmd/micro/clean.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"sort"
1111
"strings"
1212

13-
"github.com/zyedidia/micro/v2/internal/buffer"
14-
"github.com/zyedidia/micro/v2/internal/config"
15-
"github.com/zyedidia/micro/v2/internal/util"
13+
"github.com/micro-editor/micro/v2/internal/buffer"
14+
"github.com/micro-editor/micro/v2/internal/config"
15+
"github.com/micro-editor/micro/v2/internal/util"
1616
)
1717

1818
func shouldContinue() bool {

cmd/micro/debug.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"log"
55
"os"
66

7-
"github.com/zyedidia/micro/v2/internal/util"
7+
"github.com/micro-editor/micro/v2/internal/util"
88
)
99

1010
// NullWriter simply sends writes into the void

cmd/micro/initlua.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ import (
77
lua "github.com/yuin/gopher-lua"
88
luar "layeh.com/gopher-luar"
99

10-
"github.com/zyedidia/micro/v2/internal/action"
11-
"github.com/zyedidia/micro/v2/internal/buffer"
12-
"github.com/zyedidia/micro/v2/internal/config"
13-
"github.com/zyedidia/micro/v2/internal/display"
14-
ulua "github.com/zyedidia/micro/v2/internal/lua"
15-
"github.com/zyedidia/micro/v2/internal/screen"
16-
"github.com/zyedidia/micro/v2/internal/shell"
17-
"github.com/zyedidia/micro/v2/internal/util"
10+
"github.com/micro-editor/micro/v2/internal/action"
11+
"github.com/micro-editor/micro/v2/internal/buffer"
12+
"github.com/micro-editor/micro/v2/internal/config"
13+
"github.com/micro-editor/micro/v2/internal/display"
14+
ulua "github.com/micro-editor/micro/v2/internal/lua"
15+
"github.com/micro-editor/micro/v2/internal/screen"
16+
"github.com/micro-editor/micro/v2/internal/shell"
17+
"github.com/micro-editor/micro/v2/internal/util"
1818
)
1919

2020
func init() {

cmd/micro/micro.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ import (
1818

1919
"github.com/go-errors/errors"
2020
isatty "github.com/mattn/go-isatty"
21+
"github.com/micro-editor/micro/v2/internal/action"
22+
"github.com/micro-editor/micro/v2/internal/buffer"
23+
"github.com/micro-editor/micro/v2/internal/clipboard"
24+
"github.com/micro-editor/micro/v2/internal/config"
25+
"github.com/micro-editor/micro/v2/internal/screen"
26+
"github.com/micro-editor/micro/v2/internal/shell"
27+
"github.com/micro-editor/micro/v2/internal/util"
2128
"github.com/micro-editor/tcell/v2"
2229
lua "github.com/yuin/gopher-lua"
23-
"github.com/zyedidia/micro/v2/internal/action"
24-
"github.com/zyedidia/micro/v2/internal/buffer"
25-
"github.com/zyedidia/micro/v2/internal/clipboard"
26-
"github.com/zyedidia/micro/v2/internal/config"
27-
"github.com/zyedidia/micro/v2/internal/screen"
28-
"github.com/zyedidia/micro/v2/internal/shell"
29-
"github.com/zyedidia/micro/v2/internal/util"
3030
)
3131

3232
var (
@@ -374,7 +374,7 @@ func main() {
374374
if e, ok := err.(*lua.ApiError); ok {
375375
fmt.Println("Lua API error:", e)
376376
} else {
377-
fmt.Println("Micro encountered an error:", errors.Wrap(err, 2).ErrorStack(), "\nIf you can reproduce this error, please report it at https://github.com/zyedidia/micro/issues")
377+
fmt.Println("Micro encountered an error:", errors.Wrap(err, 2).ErrorStack(), "\nIf you can reproduce this error, please report it at https://github.com/micro-editor/micro/issues")
378378
}
379379
// immediately backup all buffers with unsaved changes
380380
for _, b := range buffer.OpenBuffers {

cmd/micro/micro_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import (
77
"testing"
88

99
"github.com/go-errors/errors"
10+
"github.com/micro-editor/micro/v2/internal/action"
11+
"github.com/micro-editor/micro/v2/internal/buffer"
12+
"github.com/micro-editor/micro/v2/internal/config"
13+
"github.com/micro-editor/micro/v2/internal/screen"
1014
"github.com/micro-editor/tcell/v2"
1115
"github.com/stretchr/testify/assert"
12-
"github.com/zyedidia/micro/v2/internal/action"
13-
"github.com/zyedidia/micro/v2/internal/buffer"
14-
"github.com/zyedidia/micro/v2/internal/config"
15-
"github.com/zyedidia/micro/v2/internal/screen"
1616
)
1717

1818
var tempDir string

data/io.github.zyedidia.micro.metainfo.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@
3939
<screenshots>
4040
<screenshot type="default">
4141
<caption>Micro Text Editor editing its source code</caption>
42-
<image type="source">https://raw.githubusercontent.com/zyedidia/micro/master/assets/micro-solarized.png</image>
42+
<image type="source">https://raw.githubusercontent.com/micro-editor/micro/master/assets/micro-solarized.png</image>
4343
</screenshot>
4444
</screenshots>
4545
<content_rating type="oars-1.1" />
4646
<url type="homepage">https://micro-editor.github.io</url>
47-
<url type="bugtracker">https://github.com/zyedidia/micro/issues</url>
47+
<url type="bugtracker">https://github.com/micro-editor/micro/issues</url>
4848
<url type="faq">https://micro-editor.github.io/about.html</url>
4949
<url type="help">https://micro-editor.github.io/about.html</url>
5050
<url type="contact">https://github.com/zyedidia</url>
51-
<url type="vcs-browser">https://github.com/zyedidia/micro</url>
52-
<url type="contribute">https://github.com/zyedidia/micro#contributing</url>
51+
<url type="vcs-browser">https://github.com/micro-editor/micro</url>
52+
<url type="contribute">https://github.com/micro-editor/micro#contributing</url>
5353
</component>

0 commit comments

Comments
 (0)