raml-suggestions
v0.0.53
Published
[![Build Status](https://travis-ci.org/raml-org/raml-suggestions.svg?branch=master)](https://travis-ci.org/raml-org/raml-suggestions)
Downloads
1,224
Readme
RAML Suggestions (beta)
This module provides auto-completion suggestions for RAML. See http://raml.org for more information about RAML.
Usage
Implement IEditorStateProvider
interface to create editor state provider
getText
method should return text of the document opened in the editorgetPath
method should return full path to the document opened in the editorgetBaseName
method should return file name of the document opened in the editorgetOffset
method should return editor cursor offset
Implement IFSProvider
interface to create File System data provider.
contentDirName
method should return directory name of the file, opened in the specific editordirName
method should directory name by full pathexists
method should check whether an item exists by full pathresolve
method should resolves one path against anotherisDirectory
method should check whether the path points to a directoryreadDir
method should return return directory content list
Set default IEditorStateProvider
and IFSProvider
using setDefaultEditorStateProvider
and setDefaultFSProvider
methods.
Call suggestDefault
method to get default suggestions list using default providers or call suggest
method taking IEditorStateProvider
and IFSProvider
as arguments.
Suggestions are categorized (optional field "category" in suggestion) as described in "resources/categories.json" file.