mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
Style crate names in CONTRIBUTING.md
(#6939)
This PR styles the crate names in `CONTRIBUTING.md` using inline code. Release Notes: - N/A
This commit is contained in:
parent
5dec9f7163
commit
e8bf06fc42
@ -43,14 +43,14 @@ We plan to set aside time each week to pair program with contributors on promisi
|
|||||||
|
|
||||||
Zed is made up of several smaller crates - let's go over those you're most likely to interact with:
|
Zed is made up of several smaller crates - let's go over those you're most likely to interact with:
|
||||||
|
|
||||||
- [gpui](/crates/gpui) is a GPU-accelerated UI framework which provides all of the building blocks for Zed. **We recommend familiarizing yourself with the root level GPUI documentation**
|
- [`gpui`](/crates/gpui) is a GPU-accelerated UI framework which provides all of the building blocks for Zed. **We recommend familiarizing yourself with the root level GPUI documentation**
|
||||||
- [editor](/crates/editor) contains the core `Editor` type that drives both the code editor and all various input fields within Zed. It also handles a display layer for LSP features such as Inlay Hints or code completions.
|
- [`editor`](/crates/editor) contains the core `Editor` type that drives both the code editor and all various input fields within Zed. It also handles a display layer for LSP features such as Inlay Hints or code completions.
|
||||||
- [project](/crates/project) manages files and navigation within the filetree. It is also Zed's side of communication with LSP.
|
- [`project`](/crates/project) manages files and navigation within the filetree. It is also Zed's side of communication with LSP.
|
||||||
- [workspace](/crates/workspace) handles local state serialization and groups projects together.
|
- [`workspace`](/crates/workspace) handles local state serialization and groups projects together.
|
||||||
- [vim](/crates/vim) is a thin implementation of Vim workflow over `editor`.
|
- [`vim`](/crates/vim) is a thin implementation of Vim workflow over `editor`.
|
||||||
- [lsp](/crates/lsp) handles communication with external LSP server.
|
- [`lsp`](/crates/lsp) handles communication with external LSP server.
|
||||||
- [language](/crates/language) drives `editor`'s understanding of language - from providing a list of symbols to the syntax map.
|
- [`language`](/crates/language) drives `editor`'s understanding of language - from providing a list of symbols to the syntax map.
|
||||||
- [collab](/crates/collab) is the collaboration server itself, driving the collaboration features such as project sharing.
|
- [`collab`](/crates/collab) is the collaboration server itself, driving the collaboration features such as project sharing.
|
||||||
- [rpc](/crates/rpc) defines messages to be exchanged with collaboration server.
|
- [`rpc`](/crates/rpc) defines messages to be exchanged with collaboration server.
|
||||||
- [theme](/crates/theme) defines the theme system and provides a default theme.
|
- [`theme`](/crates/theme) defines the theme system and provides a default theme.
|
||||||
- [ui](/crates/ui) is a collection of UI components and common patterns used throughout Zed.
|
- [`ui`](/crates/ui) is a collection of UI components and common patterns used throughout Zed.
|
||||||
|
Loading…
Reference in New Issue
Block a user