Prepare for release
parent
8b43af20b2
commit
28e357bb25
16
README.md
16
README.md
|
@ -13,15 +13,25 @@ instead of relying on naive regular expression parsing.
|
|||
### Find all symbols
|
||||

|
||||
|
||||
### Column-accurate error reporting
|
||||

|
||||
|
||||
|
||||
## Todo
|
||||
- Autocompletion
|
||||
- Rename
|
||||
- Goto definition
|
||||
- Format document
|
||||
- Hover
|
||||
- Signature help
|
||||
- Follow composer autoloading
|
||||
|
||||
## Build and Run From Source
|
||||
|
||||
## Contributing
|
||||
|
||||
This is just the VS Code extension that spawns the actual language server. The language server itself is implemented purely in PHP [in its own repository](https://github.com/felixfbecker/php-language-server), all features need to be implemented there and all issues should be reported there.
|
||||
|
||||
### Build and Run From Source
|
||||
Clone whole repository and in root directory execute:
|
||||
```bash
|
||||
composer install
|
||||
|
@ -31,7 +41,3 @@ code .
|
|||
```
|
||||
The last command will open the folder in VS Code. Hit `F5` to launch an Extension Development Host with the extension.
|
||||
For working on the language server, the easiest way is to replace the language server installation from composer in `vendor/felixfbecker/language-server` with a symlink to your local clone.
|
||||
|
||||
## Contributing
|
||||
|
||||
This is just the VS Code extension that spawns the actual language server. The language server itself is implemented purely in PHP [in its own repository](https://github.com/felixfbecker/php-language-server).
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
|
@ -6,6 +6,7 @@
|
|||
"author": "Felix Becker <felix.b@outlook.com>",
|
||||
"license": "ISC",
|
||||
"private": true,
|
||||
"preview": true,
|
||||
"version": "0.0.1",
|
||||
"engines": {
|
||||
"vscode": "^1.4.0"
|
||||
|
|
Loading…
Reference in New Issue