@@ -1635,10 +1635,10 @@ actual language server executable. ARGS is a list of arguments to
1635
1635
give to FIND-COMMAND to find the language server. Returns the
1636
1636
output of FIND-COMMAND if it exits successfully, nil otherwise.
1637
1637
1638
- Typical uses include finding an executable by invoking ' find' in
1639
- a project, finding LLVM commands on macOS with ' xcrun', or
1638
+ Typical uses include finding an executable by invoking ` find' in
1639
+ a project, finding LLVM commands on macOS with ` xcrun', or
1640
1640
looking up project-specific language servers for projects written
1641
- in the various dynamic languages, e.g. ' nvm', ' pyenv' and ' rbenv'
1641
+ in the various dynamic languages, e.g. ` nvm', ` pyenv' and ` rbenv'
1642
1642
etc."
1643
1643
(when-let* ((find-command-path (executable-find find-command))
1644
1644
(executable-path
@@ -3108,7 +3108,7 @@ If WORKSPACE is not provided current workspace will be used."
3108
3108
(defun lsp--make-log-entry (method id body type &optional process-time)
3109
3109
"Create an outgoing log object from BODY with method METHOD and id ID.
3110
3110
If ID is non-nil, then the body is assumed to be a notification.
3111
- TYPE can either be ' incoming or ' outgoing"
3111
+ TYPE can either be ` incoming' or ` outgoing' "
3112
3112
(cl-assert (memq type '(incoming-req outgoing-req incoming-notif
3113
3113
outgoing-notif incoming-resp
3114
3114
outgoing-resp)))
@@ -4134,7 +4134,7 @@ yet."
4134
4134
(point-max)))))
4135
4135
4136
4136
(defun lsp--text-document-did-open ()
4137
- "' document/didOpen' event."
4137
+ "` document/didOpen' event."
4138
4138
(run-hooks 'lsp-before-open-hook)
4139
4139
(when (and lsp-auto-touch-files
4140
4140
(not (f-exists? (lsp--uri-to-path (lsp--buffer-uri)))))
@@ -4199,7 +4199,7 @@ yet."
4199
4199
"The active region or the current line."
4200
4200
(if (use-region-p)
4201
4201
(lsp--region-to-range (region-beginning) (region-end))
4202
- (lsp--region-to-range (point-at-bol ) (point-at-eol ))))
4202
+ (lsp--region-to-range (line-beginning-position ) (line-end-position ))))
4203
4203
4204
4204
(defun lsp--check-document-changes-version (document-changes)
4205
4205
"Verify that DOCUMENT-CHANGES have the proper version."
@@ -4478,7 +4478,7 @@ OPERATION is symbol representing the source of this text edit."
4478
4478
4479
4479
(defun lsp--create-apply-text-edits-handlers ()
4480
4480
"Create (handler cleanup-fn) for applying text edits in async request.
4481
- Only works when mode is ' tick or ' alive."
4481
+ Only works when mode is ` tick or ` alive."
4482
4482
(let* (first-edited
4483
4483
(func (lambda (start &rest _)
4484
4484
(setq first-edited (if first-edited
@@ -5477,7 +5477,7 @@ When language is nil render as markup if `markdown-mode' is loaded."
5477
5477
(car (s-lines (s-trim (lsp--render-element contents)))))
5478
5478
5479
5479
(defun lsp--render-on-hover-content (contents render-all)
5480
- "Render the content received from ' document/onHover' request.
5480
+ "Render the content received from ` document/onHover' request.
5481
5481
CONTENTS - MarkedString | MarkedString[] | MarkupContent
5482
5482
RENDER-ALL - nil if only the signature should be rendered."
5483
5483
(cond
@@ -6005,7 +6005,7 @@ execute a CODE-ACTION-KIND action."
6005
6005
6006
6006
(defun lsp--document-highlight-callback (highlights)
6007
6007
"Create a callback to process the reply of a
6008
- ' textDocument/documentHighlight' message for the buffer BUF.
6008
+ ` textDocument/documentHighlight' message for the buffer BUF.
6009
6009
A reference is highlighted only if it is visible in a window."
6010
6010
(lsp--remove-overlays 'lsp-highlight)
6011
6011
@@ -6436,7 +6436,7 @@ The command is executed via `workspace/executeCommand'"
6436
6436
command err))))
6437
6437
6438
6438
(defun lsp-send-execute-command (command &optional args)
6439
- "Create and send a ' workspace/executeCommand' message having command COMMAND
6439
+ "Create and send a ` workspace/executeCommand' message having command COMMAND
6440
6440
and optional ARGS."
6441
6441
(lsp-workspace-command-execute command args))
6442
6442
@@ -7692,14 +7692,14 @@ DEPENDENCY is found by locating it on the system path using
7692
7692
You can explicitly call lsp-dependency in your environment to
7693
7693
specify the absolute path to the DEPENDENCY. For example, the
7694
7694
typescript-language-server requires both the server and the
7695
- typescript compiler. If you've installed them in a team shared
7695
+ typescript compiler. If you have installed them in a team shared
7696
7696
read-only location, you can instruct lsp-mode to use them via
7697
7697
7698
- (eval-after-load ' lsp-mode
7699
- ' (progn
7700
- (require ' lsp-javascript)
7701
- (lsp-dependency ' typescript-language-server ` (:system ,tls-exe))
7702
- (lsp-dependency ' typescript ` (:system ,ts-js))))
7698
+ (eval-after-load ` lsp-mode
7699
+ ` (progn
7700
+ (require lsp-javascript)
7701
+ (lsp-dependency typescript-language-server (:system ,tls-exe))
7702
+ (lsp-dependency typescript (:system ,ts-js))))
7703
7703
7704
7704
where tls-exe is the absolute path to the typescript-language-server
7705
7705
executable and ts-js is the absolute path to the typescript compiler
@@ -8334,7 +8334,7 @@ function or lambda function to be called without arguments; BOOLEAN? is an
8334
8334
optional flag that should be non-nil for boolean settings, when it is nil the
8335
8335
property will be ignored if the VALUE is nil.
8336
8336
8337
- Example: `(lsp-register-custom-settings ' ((\"foo.bar.buzz.enabled\" t t)))'
8337
+ Example: `(lsp-register-custom-settings ` ((\"foo.bar.buzz.enabled\" t t)))'
8338
8338
\(note the double parentheses)"
8339
8339
(let ((-compare-fn #'lsp--compare-setting-path))
8340
8340
(setq lsp-client-settings (-uniq (append props lsp-client-settings)))))
@@ -9257,8 +9257,8 @@ This avoids overloading the server with many files when starting Emacs."
9257
9257
(defun lsp--move-point-in-indentation (point indentation)
9258
9258
(save-excursion
9259
9259
(goto-char point)
9260
- (if (<= point (+ (point-at-bol ) indentation))
9261
- (point-at-bol )
9260
+ (if (<= point (+ (line-beginning-position ) indentation))
9261
+ (line-beginning-position )
9262
9262
point)))
9263
9263
9264
9264
(declare-function flycheck-checker-supports-major-mode-p "ext:flycheck")
@@ -9275,7 +9275,7 @@ This avoids overloading the server with many files when starting Emacs."
9275
9275
9276
9276
(defun lsp-progress-spinner-type ()
9277
9277
"Retrive the spinner type value, if value is not a symbol of `spinner-types
9278
- defaults to ' progress-bar."
9278
+ defaults to ` progress-bar."
9279
9279
(or (car (assoc lsp-progress-spinner-type spinner-types)) 'progress-bar))
9280
9280
9281
9281
(defun lsp-org ()
@@ -9348,8 +9348,8 @@ defaults to 'progress-bar."
9348
9348
9349
9349
(goto-char (point-min))
9350
9350
(while (not (eobp))
9351
- (delete-region (point) (if (> (+ (point) indentation) (point-at-eol ))
9352
- (point-at-eol )
9351
+ (delete-region (point) (if (> (+ (point) indentation) (line-end-position ))
9352
+ (line-end-position )
9353
9353
(+ (point) indentation)))
9354
9354
(forward-line))
9355
9355
(buffer-substring-no-properties (point-min)
0 commit comments