Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fannheyward/coc-sql

SQL extension for coc.nvim
https://github.com/fannheyward/coc-sql

coc coc-nvim sql

Last synced: about 2 months ago
JSON representation

SQL extension for coc.nvim

Awesome Lists containing this project

README

        

# coc-sql

SQL extension for coc.nvim

## Features

- Format by [sql-formatter](https://github.com/zeroturnaround/sql-formatter)
- Lint by [node-sql-parser](https://github.com/taozhi8833998/node-sql-parser)

## Install

`:CocInstall coc-sql`

## Commands

- `sql.Format` for current file

## Configuration

- `sql.lintOnOpen`: Lint sql file on opening, default `true`
- `sql.lintOnChange`: Lint sql file on change, default `true`
- `sql.lintOnSave`: Lint sql file on save, default `true`
- `sql.database`: Choose the database syntax flavor, default to `guess`, valid values: `db2`, `hive`, `mysql`, `mariadb`, `bigquery`, `postgresql`, `transactsql`
- `sql.formatOptions`: Format options passed to `sql-formatter`, checkout

## Usage

### Format document

- `:call CocAction('format')`
- `:CocCommand sql.Format`

### Format selected content

```vim
xmap f (coc-format-selected)
nmap f (coc-format-selected)
```

## License

MIT