Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bookmark: Add bookmark support #17700

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ members = [
"crates/assistant_tool",
"crates/audio",
"crates/auto_update",
"crates/bookmarks",
"crates/breadcrumbs",
"crates/call",
"crates/channel",
Expand Down Expand Up @@ -185,6 +186,7 @@ assistant_slash_command = { path = "crates/assistant_slash_command" }
assistant_tool = { path = "crates/assistant_tool" }
audio = { path = "crates/audio" }
auto_update = { path = "crates/auto_update" }
bookmarks = { path = "crates/bookmarks" }
breadcrumbs = { path = "crates/breadcrumbs" }
call = { path = "crates/call" }
channel = { path = "crates/channel" }
Expand Down
1 change: 1 addition & 0 deletions assets/icons/bookmark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions crates/bookmarks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[package]
name = "bookmarks"
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0-or-later"

[lints]
workspace = true

[lib]
path = "src/bookmarks.rs"
doctest = false

[dependencies]
collections.workspace = true
editor.workspace = true
language.workspace = true
menu.workspace = true
gpui.workspace = true
picker.workspace = true
project.workspace = true
serde.workspace = true
serde_json.workspace = true
text.workspace = true
ui.workspace = true
util.workspace = true
workspace.workspace = true
1 change: 1 addition & 0 deletions crates/bookmarks/LICENSE-GPL
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
../../LICENSE-GPL
Loading
Loading