aboutsummaryrefslogtreecommitdiff
path: root/alacritty_terminal
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2020-01-11 02:23:13 +0100
committerGitHub <noreply@github.com>2020-01-11 02:23:13 +0100
commitc2c8d6bf371433a3158fda769829714c5b99f62a (patch)
treeef5e8624174aa108de8a7f62f09f0fa18904c2cf /alacritty_terminal
parentc34ec12c309695e4c14d8e50b5f3f54198f70775 (diff)
downloadalacritty-c2c8d6bf371433a3158fda769829714c5b99f62a.tar.gz
alacritty-c2c8d6bf371433a3158fda769829714c5b99f62a.zip
Move Alacritty to organization
This fixes various outdated links pointing to the old jwilm/alacritty repository. Since `copypasta` now has its own github repository at https://github.com/alacritty/copypasta, the sources have been removed from Alacritty.
Diffstat (limited to 'alacritty_terminal')
-rw-r--r--alacritty_terminal/Cargo.toml6
-rw-r--r--alacritty_terminal/src/term/mod.rs2
2 files changed, 4 insertions, 4 deletions
diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml
index 826e260f..7dadca19 100644
--- a/alacritty_terminal/Cargo.toml
+++ b/alacritty_terminal/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "alacritty_terminal"
version = "0.4.2-dev"
-authors = ["Joe Wilm <joe@jwilm.com>"]
+authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"]
license = "Apache-2.0"
description = "Library for writing terminal emulators"
readme = "../README.md"
-homepage = "https://github.com/jwilm/alacritty"
+homepage = "https://github.com/alacritty/alacritty"
edition = "2018"
[dependencies]
@@ -24,7 +24,7 @@ unicode-width = "0.1"
base64 = "0.11.0"
terminfo = "0.6.1"
url = "2"
-copypasta = { path = "../copypasta" }
+copypasta = "0.6.1"
[target.'cfg(unix)'.dependencies]
nix = "0.15.0"
diff --git a/alacritty_terminal/src/term/mod.rs b/alacritty_terminal/src/term/mod.rs
index acd14e7e..3e8d8618 100644
--- a/alacritty_terminal/src/term/mod.rs
+++ b/alacritty_terminal/src/term/mod.rs
@@ -395,7 +395,7 @@ impl<'a, C> Iterator for RenderableCellsIter<'a, C> {
inner: self.grid[self.cursor],
column: self.cursor.col,
// Using `self.cursor.line` leads to inconsitent cursor position when
- // scrolling. See https://github.com/jwilm/alacritty/issues/2570 for more
+ // scrolling. See https://github.com/alacritty/alacritty/issues/2570 for more
// info.
line: self.inner.line(),
};