Skip to content

Commit f732123

Browse files
committed
Show git diff signs in gutter
1 parent 9bfb0ca commit f732123

File tree

11 files changed

+430
-4
lines changed

11 files changed

+430
-4
lines changed

Cargo.lock

+112
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ members = [
77
"helix-syntax",
88
"helix-lsp",
99
"helix-dap",
10+
"helix-vcs",
1011
"xtask",
1112
]
1213

helix-term/src/commands.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2203,6 +2203,7 @@ pub mod cmd {
22032203
if doc.path().is_none() {
22042204
bail!("cannot write a buffer without a filename");
22052205
}
2206+
22062207
let fmt = doc.auto_format().map(|fmt| {
22072208
let shared = fmt.shared();
22082209
let callback = make_format_callback(

helix-vcs/Cargo.toml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[package]
2+
name = "helix-vcs"
3+
version = "0.6.0"
4+
authors = ["Blaž Hrastnik <[email protected]>"]
5+
edition = "2021"
6+
license = "MPL-2.0"
7+
categories = ["editor"]
8+
repository = "https://github.com/helix-editor/helix"
9+
homepage = "https://helix-editor.com"
10+
11+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
12+
13+
[dependencies]
14+
git2 = { version = "0.13", default-features = false }
15+
similar = "2.1"
16+
17+
[dev-dependencies]
18+
tempfile = "3.3"

0 commit comments

Comments
 (0)