Skip to content

backfill missing authorship #213

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

Merged
merged 1 commit into from
Dec 27, 2023
Merged
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
1 change: 1 addition & 0 deletions blog/_posts/2023-07-24-durable-incrementality.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
= Durable Incrementality
@matklad
:sectanchors:
:page-layout: post

Expand Down
3 changes: 2 additions & 1 deletion blog/_posts/2023-12-26-the-heart-of-a-language-server.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
= The Heart of a Language Server
@matklad
:sectanchors:
:page-layout: post

Expand All @@ -17,7 +18,7 @@ Here's a seemingly random grab bag of IDE features:

What's common among them all?
All these features are relative to the _current position_ of the cursor!
The input is not only the state of the code at a give point in time, but a specific location in the source of a project, like `src/main.rs:90:2`.
The input is not only the state of the code at a given point in time, but a specific location in the source of a project, like `src/main.rs:90:2`.

And the first thing a language server needs to do for any of the above features is to understand what is located at the given offset, semantically speaking.
Is it an operator, like `+`?
Expand Down