Query commands are:
-start <position> Where analysis starts
-end <position> Where analysis ends
When the range determined by (-start, -end) positions is an expression,
this command replaces it with [match expr with _] expression where a branch is introduced for each immediate value constructor of the type that was determined for expr.
When it is a variable pattern, it is further expanded and new branches are introduced for each possible immediate constructor of this variable.
The return value has the shape [{'start': position, 'end': position}, content]
, where content is string.
complete-prefix -position <position> [ -doc <bool> ] -prefix <string> [ -types <bool> ] [ -kind <completion-kind> ]
-position <position> Position to complete
-doc <bool> Add docstring to entries (default is false)
-prefix <string> Prefix to complete
-types <bool> Report type information (default is true)
-kind Namespace to complete (value, constructor, type, variant, label, module, module-type). Default is decided by cursor context
This functions completes an identifier that the user started to type. It returns a list of possible completions. With '-types y' (default), each completion comes with type information. With '-doc y' it tries to lookup OCamldoc, which is slightly more time consuming.
The result has the form:
{
'context': (null | ['application',{'argument_type': string, 'labels': [{'name':string,'type':string}]}]),
'entries': [{'name':string,'kind':string,'desc':string,'info':string}]
}
Context describe where completion is occurring. Only application is distinguished now: that's when one is completing the arguments to a function call. In this case, one gets the type expected at the cursor as well as the other labels.
Entries is the list of possible completion. Each entry is made of:
- a name, the text that should be put in the buffer if selected
- a kind, one of
'value'
,'variant'
,'constructor'
,'label'
,'module'
,'signature'
,'type'
,'method'
,'#'
(for method calls),'exn'
,'class'
- a description, most of the time a type or a definition line, to be put next to the name in completion box
- optional informations which might not fit in the completion box, like signatures for modules or documentation string.
-position <position> Position to complete
-identifier <string> Identifier
Returns OCamldoc documentation as a string.
If -identifier ident
is specified, documentation for this ident is looked up from environment at -position
.
Otherwise, Merlin looks for the documentation for the entity under the cursor (at -position
).
-position <position> Position to complete
Returns a list of locations {'start': position, 'end': position}
in increasing size of all entities surrounding the position.
(In a lisp, this would be the locations of all s-exps that contain the cursor.)
Returns a list of errors in current buffer. The value is a list where each item as the shape:
{
'start' : position,
'end' : position,
'valid' : bool,
'message' : string,
'type' : ('type'|'parser'|'env'|'warning'|'unkown')
}
start
and end
are omitted if error has no location (e.g. wrong file format), otherwise the editor should probably highlight / mark this range.
type
is an attempt to classify the error.
valid
is here mostly for informative purpose. It reflects whether Merlin was expecting such an error to be possible or not, and is useful for debugging purposes.
message
is the error description to be shown to the user.
-position <position> Position to complete
-prefix <string> Prefix to complete
-types <bool> Report type information (default is false)
-kind Namespace to complete (value, constructor, type, variant, label, module, module-type). Default is decided by cursor context
The function behaves like complete-prefix
, but it also handles partial, incorrect, or wrongly spelled prefixes (as determined by some heuristic).
For instance, L.ma
can get expanded to List.map
. This function is a useful fallback if normal completion gave no results.
Be careful that it always return fully qualified paths, whereas normal completion only completes an identifier (last part of a module path).
-status <all|enabled|disabled> Filter extensions
List all known / currently enabled / currently disabled extensions as a list of strings.
Returns all known findlib packages as a list of string.
Returns supported compiler flags.The purpose of this command is to implement interactive completion of compiler settings in an IDE.
-target <string> Entity to jump to
-position <position> Position to complete
This command can be used to assist navigation in a source code buffer. Target is a string that can contain one or more of the 'fun', 'let', 'module' and 'match' words. It returns the starting position of the function, let definition, module or match expression that contains the cursor
-target <next|prev> Entity to jump to
-position <position> Position to complete
Returns the position of the next or previous phrase (top-level definition or module definition).
-ext <extension> file extensions to look for
Looks into project source paths for files with an extension matching and prints the corresponding module name.
-prefix <string> Prefix to complete
-position <position> Position to complete
-look-for <interface|implementation> Prefer opening interface or implementation
Finds the declaration of entity at the specified position, Or referred to by specified string. Returns either:
- if location failed, a
string
describing the reason to the user, {'pos': position}
if the location is in the current buffer,{'file': string, 'pos': position}
if definition is located in a different file.
-identifier-at Position to complete
Returns a list of locations {'start': position, 'end': position}
of all occurrences in current buffer of the entity at the specified position.
Returns a tree of objects {'start': position, 'end': position, 'name': string, 'kind': string, 'children': subnodes}
describing the content of the buffer.
-file <filename> filename to look for in project paths
Looks for first file with a matching name in the project source and build paths
-position <position> Position to complete
-action <qualify|unqualify> Direction of rewriting
search-by-polarity -position pos -action <qualify|unqualify> TODO
-position <position> Position to complete
-query <string> Query of the form TODO
search-by-polarity -position pos -query ident TODO
-position <position> Position
This command can be used to assist navigation in a source code buffer. It returns a tree of all relevant locations around the cursor. It is similar to outline without telling any information about the entity at a given location.
shape =
{
'start' : position,
'end' : position,
'children' : [shape]
}
-position <position> Position to complete
-expression <string> Expression to type
-cursor <int> Position of the cursor inside expression
-index <int> Only print type of <index>'th result
Returns a list of type information for all expressions at given position, sorted by increasing size.
That is asking for type enlosing around 2
in string_of_int 2
will return the types of 2 : int
and string_of_int 2 : string
.
If -expression
and -cursor
are specified, the first result will be the type
relevant to the prefix ending at the cursor
offset.
-index
can be used to print only one type information. This is useful to
query the types lazily: normally, Merlin would return the signature of all
enclosing modules, which can be very expensive.
The result is returned as a list of:
{
'start': position,
'end': position,
'type': string,
// is this expression not in tail position, in tail position, or even a tail call?
'tail': ('no' | 'position' | 'call')
}
-position <position> Position to complete
-expression <string> Expression to type
Returns the type of the expression when typechecked in the environment around the specified position.
This command checks that merlin project and options are correct. The return value has the shape:
{
'dot_merlins': [path], // a list of string
'failures': [message] // a list of string
}
-what <parsetree|printast|env|fullenv|browse|tokens|flags|warnings|exn|paths> Information to dump ()
Not for the casual user, used for debugging merlin
Not for the casual user, used for merlin tests