Skip to content
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

Adds mint language server #750

Merged
merged 1 commit into from
Jan 8, 2022
Merged

Adds mint language server #750

merged 1 commit into from
Jan 8, 2022

Conversation

jgarte
Copy link
Contributor

@jgarte jgarte commented Oct 2, 2021

Hi, this is a WIP. I wanted to open the pull request in case anyone would like to help out with testing this language server.

mint ls was merged into nvim-lspconfig recently.

I thought it would be nice to add it to eglot also :)

Mint's language server is built into the cli interface of mint itself.

Here are the features that are currently supported by the mint language server:

https://github.com/mint-lang/mint/blob/master/src/ls/README.md

Let me know if you would like me to debug anything in particular.

I'll report back once I fully test all the features that are/are not working.

mint-loves-eglot

@jgarte
Copy link
Contributor Author

jgarte commented Oct 3, 2021

eglot-format debug output

[client-request] (id:1) Sun Oct  3 18:11:46 2021:
(:jsonrpc "2.0" :id 1 :method "initialize" :params
	  (:processId 22757 :rootPath "/home/jgart/" :rootUri "file:///home/jgart" :initializationOptions #s(hash-table size 65 test eql rehash-size 1.5 rehash-threshold 0.8125 data
															())
		      :capabilities
		      (:workspace
		       (:applyEdit t :executeCommand
				   (:dynamicRegistration :json-false)
				   :workspaceEdit
				   (:documentChanges :json-false)
				   :didChangeWatchedFiles
				   (:dynamicRegistration t)
				   :symbol
				   (:dynamicRegistration :json-false)
				   :configuration t)
		       :textDocument
		       (:synchronization
			(:dynamicRegistration :json-false :willSave t :willSaveWaitUntil t :didSave t)
			:completion
			(:dynamicRegistration :json-false :completionItem
					      (:snippetSupport :json-false)
					      :contextSupport t)
			:hover
			(:dynamicRegistration :json-false :contentFormat
					      ["plaintext"])
			:signatureHelp
			(:dynamicRegistration :json-false :signatureInformation
					      (:parameterInformation
					       (:labelOffsetSupport t)
					       :activeParameterSupport t))
			:references
			(:dynamicRegistration :json-false)
			:definition
			(:dynamicRegistration :json-false :linkSupport t)
			:declaration
			(:dynamicRegistration :json-false :linkSupport t)
			:implementation
			(:dynamicRegistration :json-false :linkSupport t)
			:typeDefinition
			(:dynamicRegistration :json-false :linkSupport t)
			:documentSymbol
			(:dynamicRegistration :json-false :hierarchicalDocumentSymbolSupport t :symbolKind
					      (:valueSet
					       [1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26]))
			:documentHighlight
			(:dynamicRegistration :json-false)
			:codeAction
			(:dynamicRegistration :json-false :codeActionLiteralSupport
					      (:codeActionKind
					       (:valueSet
						["quickfix" "refactor" "refactor.extract" "refactor.inline" "refactor.rewrite" "source" "source.organizeImports"]))
					      :isPreferredSupport t)
			:formatting
			(:dynamicRegistration :json-false)
			:rangeFormatting
			(:dynamicRegistration :json-false)
			:rename
			(:dynamicRegistration :json-false)
			:publishDiagnostics
			(:relatedInformation :json-false))
		       :experimental #s(hash-table size 65 test eql rehash-size 1.5 rehash-threshold 0.8125 data
						   ()))))
[server-reply] (id:1) Sun Oct  3 18:11:46 2021:
(:jsonrpc "2.0" :result
	  (:capabilities
	   (:textDocumentSync
	    (:openClose t :change 1 :willSave :json-false :willSaveWaitUntil t :save
			(:includeText :json-false))
	    :hoverProvider t :completionProvider
	    (:resolveProvider t :triggerCharacters
			      [])
	    :signatureHelpProvider
	    (:triggerCharacters
	     [":"])
	    :definitionProvider :json-false :typeDefinitionProvider :json-false :implementationProvider :json-false :referencesProvider :json-false :documentHighlightProvider :json-false :documentSymbolProvider :json-false :workspaceSymbolProvider :json-false :codeActionProvider :json-false :codeLensProvider
	    (:resolveProvider :json-false)
	    :documentFormattingProvider t :documentRangeFormattingProvider :json-false :documentOnTypeFormattingProvider
	    (:firstTriggerCharacter "" :moreTriggerCharacter
				    [])
	    :renameProvider :json-false :documentLinkProvider
	    (:resolveProvider :json-false)
	    :colorProvider :json-false :foldingRangeProvider :json-false :declarationProvider :json-false :executeCommandProvider
	    (:commands
	     [])
	    :workspace
	    (:workspaceFolders
	     (:supported :json-false :changeNotifications :json-false))))
	  :id 1)
[client-notification] Sun Oct  3 18:11:46 2021:
(:jsonrpc "2.0" :method "initialized" :params #s(hash-table size 65 test eql rehash-size 1.5 rehash-threshold 0.8125 data
							    ()))
[client-notification] Sun Oct  3 18:11:46 2021:
(:jsonrpc "2.0" :method "textDocument/didOpen" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint" :version 0 :languageId "mint" :text "component Main {\n  fun render : Html {\n      <div>\"Hello World!\"</div>\n        }\n        }\n")))
[client-notification] Sun Oct  3 18:11:46 2021:
(:jsonrpc "2.0" :method "workspace/didChangeConfiguration" :params
	  (:settings nil))
[client-request] (id:2) Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :id 2 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 0 :character 0)))
[client-request] (id:3) Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :id 3 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 0 :character 0)))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:11:49 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[client-request] (id:4) Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :id 4 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 9)))
[client-request] (id:5) Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :id 5 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 9)))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:11:54 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[internal] (id:6) Sun Oct  3 18:11:55 2021:
(:deferring :textDocument/signatureHelp :id 6 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 8)))
[internal] (id:7) Sun Oct  3 18:11:55 2021:
(:deferring :textDocument/hover :id 7 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 8)))
[client-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "textDocument/didChange" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint" :version 1)
	   :contentChanges
	   [(:text "component Main {\n  fun render : Html {\n      <div>\"Hello World!\"</div>\n        }\n        \n")]))
[internal] Sun Oct  3 18:11:55 2021:
(:maybe-run-deferred
 (6 7))
[client-request] (id:6) Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :id 6 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 8)))
[client-request] (id:7) Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :id 7 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 8)))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:11:55 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[internal] (id:2) Sun Oct  3 18:11:59 2021:
(:timed-out :textDocument/signatureHelp :id 2 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 0 :character 0)))
[internal] (id:3) Sun Oct  3 18:11:59 2021:
(:timed-out :textDocument/hover :id 3 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 0 :character 0)))
[client-request] (id:8) Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :id 8 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 3 :character 8)))
[client-request] (id:9) Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :id 9 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 3 :character 8)))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:00 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[client-request] (id:10) Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :id 10 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 1 :character 8)))
[client-request] (id:11) Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :id 11 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 1 :character 8)))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:01 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[client-request] (id:12) Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :id 12 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 8)))
[client-request] (id:13) Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :id 13 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 8)))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:02 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[internal] (id:14) Sun Oct  3 18:12:04 2021:
(:deferring :textDocument/signatureHelp :id 14 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:15) Sun Oct  3 18:12:04 2021:
(:deferring :textDocument/hover :id 15 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[client-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "textDocument/didChange" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint" :version 3)
	   :contentChanges
	   [(:text "component Main {\n  fun render : Html {\n      <div>\"Hello World!\"</div>\n        }\n}\n")]))
[internal] Sun Oct  3 18:12:04 2021:
(:maybe-run-deferred
 (15 14))
[client-request] (id:15) Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :id 15 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 1)))
[client-request] (id:14) Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :id 14 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 1)))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:04 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[internal] (id:4) Sun Oct  3 18:12:04 2021:
(:timed-out :textDocument/signatureHelp :id 4 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 9)))
[internal] (id:5) Sun Oct  3 18:12:04 2021:
(:timed-out :textDocument/hover :id 5 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 9)))
[internal] (id:6) Sun Oct  3 18:12:05 2021:
(:timed-out :textDocument/signatureHelp :id 6 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 8)))
[internal] (id:7) Sun Oct  3 18:12:05 2021:
(:timed-out :textDocument/hover :id 7 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 8)))
[internal] (id:6) Sun Oct  3 18:12:05 2021:
(:timed-out :textDocument/signatureHelp :id 6 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 8)))
[internal] (id:7) Sun Oct  3 18:12:05 2021:
(:timed-out :textDocument/hover :id 7 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 8)))
[internal] (id:16) Sun Oct  3 18:12:08 2021:
(:deferring :textDocument/signatureHelp :id 16 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 0)))
[internal] (id:17) Sun Oct  3 18:12:08 2021:
(:deferring :textDocument/hover :id 17 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 0)))
[client-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "textDocument/didChange" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint" :version 4)
	   :contentChanges
	   [(:text "component Main {\n  fun render : Html {\n      <div>\"Hello World!\"</div>\n        }\n\n")]))
[internal] Sun Oct  3 18:12:08 2021:
(:maybe-run-deferred
 (17 16))
[client-request] (id:17) Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :id 17 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 0)))
[client-request] (id:16) Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :id 16 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 0)))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:08 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[internal] (id:18) Sun Oct  3 18:12:09 2021:
(:deferring :textDocument/signatureHelp :id 18 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:19) Sun Oct  3 18:12:09 2021:
(:deferring :textDocument/hover :id 19 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[client-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "textDocument/didChange" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint" :version 5)
	   :contentChanges
	   [(:text "component Main {\n  fun render : Html {\n      <div>\"Hello World!\"</div>\n        }\n \n")]))
[internal] Sun Oct  3 18:12:09 2021:
(:maybe-run-deferred
 (19 18))
[client-request] (id:19) Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :id 19 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 1)))
[client-request] (id:18) Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :id 18 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 1)))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:09 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[internal] (id:8) Sun Oct  3 18:12:10 2021:
(:timed-out :textDocument/signatureHelp :id 8 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 8)))
[internal] (id:9) Sun Oct  3 18:12:10 2021:
(:timed-out :textDocument/hover :id 9 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 8)))
[client-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "textDocument/didChange" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint" :version 20)
	   :contentChanges
	   [(:text "component Main {\n  fun render : Html {\n      <div>\"Hello World!\"</div>\n        }\n                \n")]))
[client-request] (id:20) Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :id 20 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 16)))
[client-request] (id:21) Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :id 21 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 16)))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:10 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[internal] (id:10) Sun Oct  3 18:12:11 2021:
(:timed-out :textDocument/signatureHelp :id 10 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 1 :character 8)))
[internal] (id:11) Sun Oct  3 18:12:11 2021:
(:timed-out :textDocument/hover :id 11 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 1 :character 8)))
[internal] (id:22) Sun Oct  3 18:12:12 2021:
(:deferring :textDocument/signatureHelp :id 22 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:23) Sun Oct  3 18:12:12 2021:
(:deferring :textDocument/hover :id 23 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[client-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "textDocument/didChange" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint" :version 22)
	   :contentChanges
	   [(:text "component Main {\n  fun render : Html {\n      <div>\"Hello World!\"</div>\n        }\n}\n")]))
[internal] Sun Oct  3 18:12:12 2021:
(:maybe-run-deferred
 (23 22))
[client-request] (id:23) Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :id 23 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 1)))
[client-request] (id:22) Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :id 22 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 4 :character 1)))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:12 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[internal] (id:12) Sun Oct  3 18:12:12 2021:
(:timed-out :textDocument/signatureHelp :id 12 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 8)))
[internal] (id:13) Sun Oct  3 18:12:12 2021:
(:timed-out :textDocument/hover :id 13 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 8)))
[client-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "textDocument/didChange" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint" :version 23)
	   :contentChanges
	   [(:text "component Main {\n  fun render : Html {\n      <div>\"Hello World!\"</div>\n        \n}\n")]))
[client-request] (id:24) Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :id 24 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 3 :character 8)))
[client-request] (id:25) Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :id 25 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 3 :character 8)))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[internal] (id:14) Sun Oct  3 18:12:14 2021:
(:timed-out :textDocument/signatureHelp :id 14 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:15) Sun Oct  3 18:12:14 2021:
(:timed-out :textDocument/hover :id 15 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:15) Sun Oct  3 18:12:14 2021:
(:timed-out :textDocument/hover :id 15 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:14) Sun Oct  3 18:12:14 2021:
(:timed-out :textDocument/signatureHelp :id 14 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:26) Sun Oct  3 18:12:14 2021:
(:deferring :textDocument/signatureHelp :id 26 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 9)))
[internal] (id:27) Sun Oct  3 18:12:14 2021:
(:deferring :textDocument/hover :id 27 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 9)))
[client-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "textDocument/didChange" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint" :version 24)
	   :contentChanges
	   [(:text "component Main {\n  fun render : Html {\n      <div>\"Hello World!\"</div>\n         \n}\n")]))
[internal] Sun Oct  3 18:12:14 2021:
(:maybe-run-deferred
 (27 26))
[client-request] (id:27) Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :id 27 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 3 :character 9)))
[client-request] (id:26) Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :id 26 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 3 :character 9)))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:14 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[client-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "textDocument/didChange" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint" :version 43)
	   :contentChanges
	   [(:text "component Main {\n  fun render : Html {\n      <div>\"Hello World!\"</div>\n                            \n}\n")]))
[client-request] (id:28) Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :id 28 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 3 :character 28)))
[client-request] (id:29) Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :id 29 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 3 :character 28)))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:16 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[internal] (id:30) Sun Oct  3 18:12:17 2021:
(:deferring :textDocument/signatureHelp :id 30 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 3)))
[internal] (id:31) Sun Oct  3 18:12:17 2021:
(:deferring :textDocument/hover :id 31 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 3)))
[client-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "textDocument/didChange" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint" :version 45)
	   :contentChanges
	   [(:text "component Main {\n  fun render : Html {\n      <div>\"Hello World!\"</div>\n  }\n}\n")]))
[internal] Sun Oct  3 18:12:17 2021:
(:maybe-run-deferred
 (31 30))
[client-request] (id:31) Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :id 31 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 3 :character 3)))
[client-request] (id:30) Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :id 30 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 3 :character 3)))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:17 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[internal] (id:16) Sun Oct  3 18:12:18 2021:
(:timed-out :textDocument/signatureHelp :id 16 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 0)))
[internal] (id:17) Sun Oct  3 18:12:18 2021:
(:timed-out :textDocument/hover :id 17 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 0)))
[internal] (id:17) Sun Oct  3 18:12:18 2021:
(:timed-out :textDocument/hover :id 17 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 0)))
[internal] (id:16) Sun Oct  3 18:12:18 2021:
(:timed-out :textDocument/signatureHelp :id 16 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 0)))
[internal] (id:18) Sun Oct  3 18:12:19 2021:
(:timed-out :textDocument/signatureHelp :id 18 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:19) Sun Oct  3 18:12:19 2021:
(:timed-out :textDocument/hover :id 19 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:19) Sun Oct  3 18:12:19 2021:
(:timed-out :textDocument/hover :id 19 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:18) Sun Oct  3 18:12:19 2021:
(:timed-out :textDocument/signatureHelp :id 18 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:20) Sun Oct  3 18:12:20 2021:
(:timed-out :textDocument/signatureHelp :id 20 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 16)))
[internal] (id:21) Sun Oct  3 18:12:20 2021:
(:timed-out :textDocument/hover :id 21 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 16)))
[internal] (id:22) Sun Oct  3 18:12:22 2021:
(:timed-out :textDocument/signatureHelp :id 22 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:23) Sun Oct  3 18:12:22 2021:
(:timed-out :textDocument/hover :id 23 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:23) Sun Oct  3 18:12:22 2021:
(:timed-out :textDocument/hover :id 23 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:22) Sun Oct  3 18:12:22 2021:
(:timed-out :textDocument/signatureHelp :id 22 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 4 :character 1)))
[internal] (id:24) Sun Oct  3 18:12:24 2021:
(:timed-out :textDocument/signatureHelp :id 24 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 8)))
[internal] (id:25) Sun Oct  3 18:12:24 2021:
(:timed-out :textDocument/hover :id 25 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 8)))
[internal] (id:26) Sun Oct  3 18:12:24 2021:
(:timed-out :textDocument/signatureHelp :id 26 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 9)))
[internal] (id:27) Sun Oct  3 18:12:24 2021:
(:timed-out :textDocument/hover :id 27 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 9)))
[internal] (id:27) Sun Oct  3 18:12:24 2021:
(:timed-out :textDocument/hover :id 27 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 9)))
[internal] (id:26) Sun Oct  3 18:12:24 2021:
(:timed-out :textDocument/signatureHelp :id 26 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 9)))
[internal] (id:28) Sun Oct  3 18:12:26 2021:
(:timed-out :textDocument/signatureHelp :id 28 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 28)))
[internal] (id:29) Sun Oct  3 18:12:26 2021:
(:timed-out :textDocument/hover :id 29 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 28)))
[internal] (id:30) Sun Oct  3 18:12:27 2021:
(:timed-out :textDocument/signatureHelp :id 30 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 3)))
[internal] (id:31) Sun Oct  3 18:12:27 2021:
(:timed-out :textDocument/hover :id 31 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 3)))
[internal] (id:31) Sun Oct  3 18:12:27 2021:
(:timed-out :textDocument/hover :id 31 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 3)))
[internal] (id:30) Sun Oct  3 18:12:27 2021:
(:timed-out :textDocument/signatureHelp :id 30 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 3)))
[client-request] (id:32) Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :id 32 :method "textDocument/formatting" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :options
	   (:tabSize 8 :insertSpaces :json-false)))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:35 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[client-request] (id:33) Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :id 33 :method "textDocument/signatureHelp" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 3 :character 3)))
[client-request] (id:34) Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :id 34 :method "textDocument/hover" :params
	  (:textDocument
	   (:uri "file:///home/jgart/hello.mint")
	   :position
	   (:line 3 :character 3)))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "Invalid workspace!" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__crystal_main" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "main" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "__libc_start_main" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "_start" :type 4))
[server-notification] Sun Oct  3 18:12:46 2021:
(:jsonrpc "2.0" :method "window/logMessage" :params
	  (:message "???" :type 4))
[internal] (id:33) Sun Oct  3 18:12:56 2021:
(:timed-out :textDocument/signatureHelp :id 33 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 3)))
[internal] (id:34) Sun Oct  3 18:12:56 2021:
(:timed-out :textDocument/hover :id 34 :params
	    (:textDocument
	     (:uri "file:///home/jgart/hello.mint")
	     :position
	     (:line 3 :character 3)))

* eglot.el (eglot-server-programs): Add support for the mint language server.
* README.md: Document the above change.

Copyright-paperwork-exempt: Yes
@skangas skangas merged commit 6d25387 into joaotavora:master Jan 8, 2022
@skangas
Copy link
Collaborator

skangas commented Jan 8, 2022

Now merged into master. Thank you for your contribution!

@jgarte jgarte deleted the jgart-mint-ls-patch branch February 4, 2022 06:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants