mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
05825e9804
Add a "Preview Markdown" button to the quick action bar when in a markdown editor. While it isn't my favorite, I went with the basic eye icon to be a bit more generic so we can extend this control to allow opening other previews such as SVGs like @jansol mentioned. ![CleanShot 2024-07-26 at 11 02 16@2x](https://github.com/user-attachments/assets/415963ce-d19e-432d-b8c2-37e7c6e52683) https://github.com/user-attachments/assets/5980272c-eab9-4f69-86b6-0c593c25b525 --- Release Notes: - Added a button to preview Markdown files in the toolbar. `Option|Alt+Click` will open the preview to the side.
32 lines
689 B
TOML
32 lines
689 B
TOML
[package]
|
|
name = "quick_action_bar"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/quick_action_bar.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
assistant.workspace = true
|
|
editor.workspace = true
|
|
gpui.workspace = true
|
|
markdown_preview.workspace = true
|
|
repl.workspace = true
|
|
search.workspace = true
|
|
settings.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
workspace.workspace = true
|
|
zed_actions.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
workspace = { workspace = true, features = ["test-support"] }
|