Skip to content

Commit

Permalink
; Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
skangas committed Jan 8, 2022
1 parent 2410637 commit b197e09
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# (upcoming)

##### Multiple servers supported out-of-box for same major mdoe ([#688][github#688])
##### Multiple servers supported out-of-box for same major mode ([#688][github#688])

In practice, this removes the need for Eglot to "officially" bless one
server over another. Thanks to Felicián Németh for the original idea.
Expand All @@ -15,7 +15,7 @@ Thanks to Brian Cully for the minimalist approach.
##### `eglot-ignored-server-capabilities` now correctly spelled ([#724][github#724])

This user-visible variable used to be spelled
`eglot-ignored-server-capabilites`, which is still an valid but
`eglot-ignored-server-capabilites`, which is still a valid but
obsolete name.

##### Manage cross-referenced files outside project ([#76][github#76], ([#686][github#686], ([#695][github#695])
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ You can also do:
(add-hook 'foo-mode-hook 'eglot-ensure)
```

, to attempt to start an eglot session automatically everytime a
, to attempt to start an eglot session automatically every time a
`foo-mode` buffer is visited.

## Connecting via TCP
Expand Down
6 changes: 3 additions & 3 deletions eglot.el
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
;;
;; (add-hook 'foo-mode-hook 'eglot-ensure)
;;
;; To attempt to start an eglot session automatically everytime a
;; To attempt to start an eglot session automatically every time a
;; foo-mode buffer is visited.
;;
;;; Code:
Expand Down Expand Up @@ -1490,7 +1490,7 @@ against a variable's name. Examples include the string
\"company\" or the symbol `xref'.
Before Eglot starts \"managing\" a particular buffer, it
opinionatedly sets some peripheral Emacs facilites, such as
opinionatedly sets some peripheral Emacs facilities, such as
Flymake, Xref and Company. These overriding settings help ensure
consistent Eglot behaviour and only stay in place until
\"managing\" stops (usually via `eglot-shutdown'), whereupon the
Expand Down Expand Up @@ -1695,7 +1695,7 @@ Uses THING, FACE, DEFS and PREPEND."
`("/" ,(eglot--mode-line-props
"error" 'compilation-mode-line-fail
'((mouse-3 eglot-clear-status "clear this status"))
(format "An error occured: %s\n" (plist-get last-error
(format "An error occurred: %s\n" (plist-get last-error
:message)))))
,@(when (and doing (not done-p))
`("/" ,(eglot--mode-line-props doing
Expand Down

0 comments on commit b197e09

Please sign in to comment.