package vcaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Unshadow_buffer := Buffer
module Unshadow_command := Command
module Buffer := Unshadow_buffer
module Command := Unshadow_command
module Type := Nvim_internal.Phantom
module Luaref := Nvim_internal.Luaref
val command : string -> unit Api_call.Or_error.t
val source : string -> string Api_call.Or_error.t
val get_channel_info : int -> Channel_info.t Api_call.Or_error.t
val list_bufs : Buffer.t list Api_call.Or_error.t
val get_current_buf : Buffer.t Api_call.Or_error.t
val set_current_buf : Buffer.t -> unit Api_call.Or_error.t
val get_current_win : Window.t Api_call.Or_error.t
val set_current_win : Window.t -> unit Api_call.Or_error.t
val list_wins : Window.t list Api_call.Or_error.t
val eval : string -> result_type:'a Type.t -> 'a Api_call.Or_error.t
type keys_with_replaced_keycodes = private string
val replace_termcodes_only : string -> string Api_call.Or_error.t
val replace_termcodes_and_keycodes : string -> keys_with_replaced_keycodes Api_call.Or_error.t
val feedkeys : [ `Escape_k_special_bytes of string | `Already_escaped of keys_with_replaced_keycodes ] -> mode:string -> unit Api_call.Or_error.t
val set_client_info : ?version:Client_info.Version.t -> ?methods:Client_info.Client_method.t Core.String.Map.t -> ?attributes:string Core.String.Map.t -> name:string -> type_:Client_info.Client_type.t -> unit -> unit Api_call.Or_error.t
val get_color_by_name : string -> Color.True_color.t Api_call.Or_error.t
val get_hl_by_name : string -> color:'a Color.Kind.t -> 'a Color.Highlight.t Api_call.Or_error.t
val get_hl_by_id : int -> color:'a Color.Kind.t -> 'a Color.Highlight.t Api_call.Or_error.t
val get_var : string -> type_:'a Type.t -> 'a Api_call.Or_error.t
val set_var : string -> type_:'a Type.t -> value:'a -> unit Api_call.Or_error.t
val list_runtime_paths : string list Api_call.Or_error.t
val out_write : string -> unit Api_call.Or_error.t
val out_writeln : string -> unit Api_call.Or_error.t
val err_write : string -> unit Api_call.Or_error.t
val err_writeln : string -> unit Api_call.Or_error.t
val echo : Highlighted_text.t -> add_to_history:bool -> unit Api_call.Or_error.t
val echo_in_rpcrequest : string -> unit Api_call.Or_error.t

As of this writing messages echoed during an rpcrequest are not displayed until the request completes. This function hacks around that limitation. A side-effect of this hack is that if the user mashes the keyboard during the rpcrequest those keys will be printed after the message. inputsave + inputrestore does not seem to help mitigate this. For more details about this echoing limitation, see https://github.com/neovim/neovim/issues/14449.

Note that err_write and err_writeln do work inside rpcrequest but the error message is treated as an exception, so they aren't suitable for regular echoing purposes.

module Mouse : sig ... end
module Key_modifier : sig ... end
module Fast : sig ... end

These API functions are served immediately without waiting in the input queue.

module Untested : sig ... end
OCaml

Innovation. Community. Security.