package lsp
Install
Dune Dependency
Authors
-
AAndrey Popp <8mayday@gmail.com>
-
RRusty Key <iam@stfoo.ru>
-
LLouis Roché <louis@louisroche.net>
-
OOleksiy Golovko <alexei.golovko@gmail.com>
-
RRudi Grinberg <me@rgrinberg.com>
-
SSacha Ayoun <sachaayoun@gmail.com>
-
Ccannorin <cannorin@gmail.com>
-
UUlugbek Abdullaev <ulugbekna@gmail.com>
-
Thibaut Mattio
-
MMax Lantas <mnxndev@outlook.com>
Maintainers
Sources
sha256=a3ac1073b0728b94f4bdb0111772c0abaf7ff70324399450eab7156bfac151f1
sha512=bed6ddbde28088e43db0d40ab27056ba22537d19ffe8117a3da4c77676948f18708b06937dd2c972dce5c5822ea751c9c85cfa1ce3c1b3739460d4a24ebc2282
doc/lsp.stdune/Stdune/Console/index.html
Module Stdune.Console
Source
Manages the console
The console is a system than can report messages and a status to the user. It is usually the terminal the application is connected to, however it could be something else. This module allow to set a global backend for the application as well as composing backends.
The main backend for the application
include Backend.S
Format and print a user message to the console
Change the status line
Print a message if the backend does not display the status line. This is needed so that the important status changes show up even when a dumb
terminal backend is used.
Reset the log output
print paragraphs
is a short-hand for:
print_user_message (User_message.make paragraphs)
printf fmt
is a convenient function for debugging. It formats a string and then print it raw followed by a newline. It is the same as:
print [Pp.verbatim (sprintf fmt ...)]
.
For properly formatted output you should use print
.
Status line management