diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-19 02:55:37 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-19 02:55:37 +0200 |
commit | 5e2607d93f98e0394d1d68b1d6592b2d0a11f52f (patch) | |
tree | 6002f0061b13d1876685aea1469e850cf4aa4ba1 /doc/graphql.txt | |
parent | 3d80a66e7be229a014989b798fc4fad8e579946d (diff) | |
download | vim-polyglot-5e2607d93f98e0394d1d68b1d6592b2d0a11f52f.tar.gz vim-polyglot-5e2607d93f98e0394d1d68b1d6592b2d0a11f52f.zip |
Remove docs so docs of installed plugins are up to date
Diffstat (limited to 'doc/graphql.txt')
-rw-r--r-- | doc/graphql.txt | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/doc/graphql.txt b/doc/graphql.txt deleted file mode 100644 index 868c74d8..00000000 --- a/doc/graphql.txt +++ /dev/null @@ -1,54 +0,0 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'graphql') == -1 - -*graphql.txt* GraphQL plug-in for Vim *graphql* - -CONTENTS *graphql-contents* - -1. Introduction |graphql-intro| -2. JavaScript Support |graphql-javascript| -3. TypeScript Support |graphql-typescript| - - -INTRODUCTION *graphql-intro* - -This plugin provides GraphQL (http://graphql.org/) file detection, syntax -highlighting, and indentation. - - -JAVASCRIPT *graphql-javascript* - -GraphQL syntax support in ES2015 template literals is provided. It works "out -of the box" with Vim 8.2's JavaScript support. The extended syntax provided by -the vim-javascript (https://github.com/pangloss/vim-javascript) plugin is also -supported. - - *graphql-javascript-options* - - *g:graphql_javascript_tags* -|g:graphql_javascript_tags| list of strings - - Default: `["gql", "graphql", "Relay.QL"]` - - This variable lists the ES2015 template tag names that will be recognized as - containing GraphQL template literal strings. - - -TYPESCRIPT *graphql-typescript* - -Like |graphql-javascript|, GraphQL syntax support in ES2015 template literals -is provided. It also works "out of the box" with Vim 8.2's TypeScript support, -which is based on the yats (https://github.com/HerringtonDarkholme/yats.vim) -plugin. For older versions, you can install yats directly. - -TypeScript syntax support also uses |graphql-javascript-options| to customize -the list of recognized template tag names. - -REASONML *graphql-reasonml* - -GraphQL syntax support inside of ReasonML template strings using graphql-ppx -is available. - ------------------------------------------------------------------------------- -vim:tw=78:ft=help:norl: - -endif |