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)
|
2017-12-23 21:12:09 +08:00
|
|
|
- [Features](#features)
|
2018-06-23 14:37:41 +08:00
|
|
|
- [Install](#install)
|
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)
|
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
|
|
|
|
2017-12-23 21:12:09 +08:00
|
|
|
## Features
|
|
|
|
|
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
|
|
|
|
2018-06-23 14:37:41 +08:00
|
|
|
## Install
|
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"
|
|
|
|
```
|
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 |
|
|
|
|
|