forked from coalton-lang/coalton-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add semantic tokens to server capabilities response
- Loading branch information
Showing
8 changed files
with
190 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
;;;; helpers for interactive development: starting network server, | ||
;;;; changing logging options | ||
|
||
(defpackage #:coalton-lsp-user | ||
(:use #:cl | ||
#:coalton-lsp)) | ||
|
||
(in-package #:coalton-lsp-user) | ||
|
||
(defun restart-server () | ||
(when *server* | ||
(stop-server)) | ||
(start-server *server-port*)) | ||
|
||
;;; (restart-server) | ||
|
||
(defun enable-debugging () | ||
(set-log-level :debug)) | ||
|
||
(defun enable-worker-debugging () | ||
(setf coalton-lsp::*worker-debug* t)) | ||
|
||
(defun enable-file-logger () | ||
(set-log-file "~/git/coalton-mode/rpc.log")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters