diff options
| author | github-actions <github-actions@github.com> | 2021-10-27 23:01:06 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2021-10-27 23:01:06 +0000 |
| commit | 9314d0a8da0f5ccd700d8a1fa699949a95971420 (patch) | |
| tree | 29ab60d190e7e48faea547af5c15eeb7c3ac9b72 /CONFIG.md | |
| parent | docs(pasls): fix broken code block (#1343) (diff) | |
| download | nvim-lspconfig-9314d0a8da0f5ccd700d8a1fa699949a95971420.tar nvim-lspconfig-9314d0a8da0f5ccd700d8a1fa699949a95971420.tar.gz nvim-lspconfig-9314d0a8da0f5ccd700d8a1fa699949a95971420.tar.bz2 nvim-lspconfig-9314d0a8da0f5ccd700d8a1fa699949a95971420.tar.lz nvim-lspconfig-9314d0a8da0f5ccd700d8a1fa699949a95971420.tar.xz nvim-lspconfig-9314d0a8da0f5ccd700d8a1fa699949a95971420.tar.zst nvim-lspconfig-9314d0a8da0f5ccd700d8a1fa699949a95971420.zip | |
docs: update CONFIG.md
skip-checks: true
Diffstat (limited to 'CONFIG.md')
| -rw-r--r-- | CONFIG.md | 37 |
1 files changed, 11 insertions, 26 deletions
@@ -1150,12 +1150,6 @@ This server accepts configuration via the `settings` key. null -- **`dart.previewLsp`**: `null|boolean` - - Default: `vim.NIL` - - null - - **`dart.promptToGetPackages`**: `boolean` Default: `true` @@ -1278,9 +1272,11 @@ This server accepts configuration via the `settings` key. Whether to automatically update imports when moving or renaming files\. Currently only supports single file moves \/ renames\. -- **`dart.useKnownChromeOSPorts`**: `boolean` +- **`dart.useLsp`**: `boolean` - Whether to use specific ports for the VM service and DevTools when running in Chrome OS\. This is required to connect from the native Chrome OS browser but will prevent apps from launching if the ports are already in\-use \(for example if trying to run a second app\)\. + Default: `true` + + null - **`dart.useVsCodeTestRunner`**: `boolean` @@ -4433,24 +4429,13 @@ An LSP server implementation for Pascal variants that are supported by Free Pasc First set `cmd` to the Pascal lsp binary. Customization options are passed to pasls as environment variables for example in your `.bashrc`: - ```bash -export FPCDIR='/usr/lib/fpc/src', -export PP='/usr/lib/fpc/3.2.2/ppcx64', -export LAZARUSDIR='/usr/lib/lazarus', -export FPCTARGET='', -export FPCTARGETCPU='x86_64', - - ``` - -`FPCDIR` : FPC source directory (This is the only required option for the server to work). - -`PP` : Path to the Free Pascal compiler executable. - -`LAZARUSDIR` : Path to the Lazarus sources. - -`FPCTARGET` : Target operating system for cross compiling. - -`FPCTARGETCPU` : Target CPU for cross compiling. +```bash +export FPCDIR='/usr/lib/fpc/src' # FPC source directory (This is the only required option for the server to work). +export PP='/usr/lib/fpc/3.2.2/ppcx64' # Path to the Free Pascal compiler executable. +export LAZARUSDIR='/usr/lib/lazarus' # Path to the Lazarus sources. +export FPCTARGET='' # Target operating system for cross compiling. +export FPCTARGETCPU='x86_64' # Target CPU for cross compiling. +``` |
