mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-15 06:40:17 +00:00
176f63e86e
This PR adds the ability to copy the permalink to a line from within
Zed.
This functionality is available through the `editor: copy permalink to
line` action in the command palette:
<img width="589" alt="Screenshot 2024-01-30 at 7 07 46 PM"
src="https://github.com/zed-industries/zed/assets/1486634/332282cb-211f-4f16-9eb1-415bcfee9b7b">
Executing this action will create a permalink to the currently selected
line(s) and copy it to the clipboard.
Here is an example line:
```
56c80e8011/src/lib.rs (L25)
```
Currently, both GitHub and GitLab are supported.
### Notes and known limitations
- In order to determine where to permalink to, we read the URL of the
`origin` remote in Git. This feature will not work if the `origin`
remote is not present.
- Attempting to permalink to a ref that is not pushed to the origin will
result in the link 404ing.
- Attempting to permalink when Git is in a dirty state may not generate
the right link.
- For instance, modifying a file (e.g., adding new lines) and grabbing a
permalink to it will result in incorrect line numbers.
Release Notes:
- Added the ability to copy a permalink to a line
([#6777](https://github.com/zed-industries/zed/issues/6777)).
- Available via the `editor: copy permalink to line` action in the
command palette.
40 lines
795 B
TOML
40 lines
795 B
TOML
[package]
|
|
name = "util"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
|
|
[lib]
|
|
path = "src/util.rs"
|
|
doctest = true
|
|
|
|
[features]
|
|
test-support = ["tempfile", "git2"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
backtrace = "0.3"
|
|
globset.workspace = true
|
|
log.workspace = true
|
|
lazy_static.workspace = true
|
|
futures.workspace = true
|
|
isahc.workspace = true
|
|
smol.workspace = true
|
|
url.workspace = true
|
|
rand.workspace = true
|
|
rust-embed.workspace = true
|
|
tempfile = { workspace = true, optional = true }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
git2 = { workspace = true, optional = true }
|
|
dirs = "3.0"
|
|
take-until = "0.2.0"
|
|
parking_lot.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
tendril = "0.4.3"
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|
|
git2.workspace = true
|