We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
**Description of the ruling When typing inside neovim the autocomplete is not displayed for columns, only for tables.
Reproduce. Steps to reproduce the behavior:
**Expected behavior When I go back to the '*' I expected it to take the available columns for the table. As SQL-Server does
Versions (complete the following information):** ** OS version: [e.g. iOS].
**Additional context.
~/.config/nvim/lua/plugins/lsp.lua local lspconfig = require('lspconfig') local lsp_installer = require('nvim-lsp-installer') lspconfig.html.setup{} lspconfig.ts_ls.setup{} lsp_installer.setup({ automatic_installation = true, ui = { icons = { server_installed = "✓", server_pending = "➜", server_uninstalled = "✗" } } }) lspconfig.sqls.setup({ cmd = {"sqls"}, on_attach = function(client, bufnr) require('sqls').on_attach(client, bufnr) -- require sqls.nvim end, settings = { sqls = { connections = { { driver = 'mssql', dataSourceName = 'sqlserver://<username>:<password>@<server>:<port>?database=<DB_NAME>&encrypt=true&trustServerCertificate=true', }, { driver = 'mssql', dataSourceName = 'sqlserver://<username>:<password>@<server>:<port>?database=<DB_ANOTHER_NAME>&encrypt=true&trustServerCertificate=true', }, }, }, }, })
{ "coc.preferences.formatOnSaveFiletypes": [ "css", "markdown", "php", "python", "html" ], "languageserver": { "sql": { "command": "sqls", "args": ["-config", "$HOME/.config/sqls/config.yml"], "filetypes": ["sql"], "shell": true } } }
lowercaseKeywords: false connections: - alias: mssql_connection_pba driver: mssql proto: tcp user: user passwd: pass host: host port: port dbName: DBNAME - alias: mssql_connection_prod driver: mssql proto: tcp user: user passwd: pass host: host port: port dbName: dbNAME
The text was updated successfully, but these errors were encountered:
No branches or pull requests
**Description of the ruling
When typing inside neovim the autocomplete is not displayed for columns, only for tables.
Reproduce.
Steps to reproduce the behavior:
**Expected behavior
When I go back to the '*' I expected it to take the available columns for the table. As SQL-Server does
Versions (complete the following information):** ** OS version: [e.g. iOS].
**Additional context.
My Neovim configuration:
CocConfig
config.yml SQLS
The text was updated successfully, but these errors were encountered: