2017-08-28 04:40:37 +08:00
|
|
|
---
|
|
|
|
title: "SpaceVim lang#php layer"
|
2019-05-10 17:24:14 +08:00
|
|
|
description: "PHP language support, including code completion, syntax lint and code runner"
|
2017-08-28 04:40:37 +08:00
|
|
|
---
|
2017-05-14 20:04:01 +08:00
|
|
|
|
2018-06-23 14:37:41 +08:00
|
|
|
# [Available Layers](../../) >> lang#php
|
2017-05-14 20:04:01 +08:00
|
|
|
|
2017-08-28 04:40:37 +08:00
|
|
|
<!-- vim-markdown-toc GFM -->
|
2017-12-02 23:23:58 +08:00
|
|
|
|
|
|
|
- [Description](#description)
|
2022-04-13 17:46:41 +08:00
|
|
|
- [Installation](#installation)
|
|
|
|
- [Enable language layer](#enable-language-layer)
|
|
|
|
- [Language tools](#language-tools)
|
2021-04-24 16:47:59 +08:00
|
|
|
- [Layer options](#layer-options)
|
2019-05-10 17:24:14 +08:00
|
|
|
- [Key bindings](#key-bindings)
|
|
|
|
- [Jump to definition](#jump-to-definition)
|
|
|
|
- [Running current script](#running-current-script)
|
2021-04-24 16:47:59 +08:00
|
|
|
- [Inferior REPL process](#inferior-repl-process)
|
2022-04-13 17:46:41 +08:00
|
|
|
- [LSP key Bindings](#lsp-key-bindings)
|
2017-05-14 20:04:01 +08:00
|
|
|
|
2017-08-28 04:40:37 +08:00
|
|
|
<!-- vim-markdown-toc -->
|
2017-05-14 20:04:01 +08:00
|
|
|
|
2017-08-28 04:40:37 +08:00
|
|
|
## Description
|
2017-05-14 20:04:01 +08:00
|
|
|
|
2021-04-24 16:47:59 +08:00
|
|
|
`lang#php` layer provides PHP language support in SpaceVim.
|
2017-05-14 20:04:01 +08:00
|
|
|
|
2021-04-24 16:47:59 +08:00
|
|
|
- code completion (`autocomplete` layer)
|
|
|
|
- code formatting (`format` layer)
|
|
|
|
- syntax checking (`checkers` layer)
|
2017-12-23 21:12:09 +08:00
|
|
|
- goto definition
|
2021-04-24 16:47:59 +08:00
|
|
|
- reference finder (`gtags` layer)
|
|
|
|
- language server protocol support (`lsp` layer)
|
2017-12-23 21:12:09 +08:00
|
|
|
|
2022-04-13 17:46:41 +08:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
### Enable language layer
|
2017-08-28 04:40:37 +08:00
|
|
|
|
2021-04-24 16:47:59 +08:00
|
|
|
This layer is not enabled by default. To use this layer, you need to add following
|
|
|
|
snippet into SpaceVim configuration file:
|
2018-06-23 14:37:41 +08:00
|
|
|
|
|
|
|
```toml
|
|
|
|
[[layers]]
|
|
|
|
name = "lang#php"
|
|
|
|
```
|
2022-04-13 17:46:41 +08:00
|
|
|
### Language tools
|
|
|
|
|
|
|
|
- **language server**
|
|
|
|
|
|
|
|
To enable php support of `lsp` layer. You may need to install `intelephense`:
|
|
|
|
|
|
|
|
```
|
|
|
|
npm install -g intelephense
|
|
|
|
```
|
|
|
|
|
|
|
|
Also you need enable `lsp` layer with intelephense client:
|
|
|
|
|
|
|
|
```
|
|
|
|
[[layers]]
|
|
|
|
name = 'lsp'
|
|
|
|
enabled_clients = ['intelephense']
|
|
|
|
```
|
2017-08-28 04:40:37 +08:00
|
|
|
|
2021-04-24 16:47:59 +08:00
|
|
|
## Layer options
|
|
|
|
|
|
|
|
- `php_interpreter`: Set the PHP interpreter, by default, it is `php`.
|
|
|
|
|
2019-05-10 17:24:14 +08:00
|
|
|
## Key bindings
|
2017-08-28 04:40:37 +08:00
|
|
|
|
2019-05-10 17:24:14 +08:00
|
|
|
### Jump to definition
|
2017-12-23 21:12:09 +08:00
|
|
|
|
2019-05-10 17:24:14 +08:00
|
|
|
| Mode | Key Bindings | Description |
|
|
|
|
| ------ | ------------ | ------------------------------------------------ |
|
|
|
|
| normal | `g d` | Jump to the definition position of cursor symbol |
|
|
|
|
|
|
|
|
### Running current script
|
|
|
|
|
2021-06-21 20:39:29 +08:00
|
|
|
To run a php script, you can press `SPC l r` to run the current file without losing focus,
|
2019-05-10 17:24:14 +08:00
|
|
|
and the result will be shown in a runner buffer.
|
2021-04-24 16:47:59 +08:00
|
|
|
|
|
|
|
### Inferior REPL process
|
|
|
|
|
|
|
|
Start a `php` inferior REPL process with `SPC l s i`.
|
|
|
|
|
|
|
|
Send code to inferior process commands:
|
|
|
|
|
|
|
|
| Key Bindings | Descriptions |
|
|
|
|
| ------------ | ------------------------------------------------ |
|
|
|
|
| `SPC l s b` | send buffer and keep code buffer focused |
|
|
|
|
| `SPC l s l` | send line and keep code buffer focused |
|
|
|
|
| `SPC l s s` | send selection text and keep code buffer focused |
|
|
|
|
|
2022-04-13 17:46:41 +08:00
|
|
|
### LSP key Bindings
|
|
|
|
|
|
|
|
If the lsp layer is enabled for php, the following key bindings can
|
|
|
|
be used:
|
|
|
|
|
|
|
|
| key binding | Description |
|
|
|
|
| ----------- | ----------------------- |
|
2022-04-13 19:19:48 +08:00
|
|
|
| `g D` | jump to declaration |
|
2022-04-13 17:46:41 +08:00
|
|
|
| `SPC l e` | rename symbol |
|
|
|
|
| `SPC l x` | show references |
|
|
|
|
| `SPC l s` | show line diagnostics |
|
|
|
|
| `SPC l d` | show document |
|
|
|
|
| `K` | show document |
|
|
|
|
| `SPC l w l` | list workspace folder |
|
|
|
|
| `SPC l w a` | add workspace folder |
|
|
|
|
| `SPC l w r` | remove workspace folder |
|