Skip to content
This repository has been archived by the owner on Mar 25, 2020. It is now read-only.

Commit

Permalink
Add configuration info to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
tjdevries committed Nov 17, 2016
1 parent a8725fd commit ee6136c
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

Shim for the language server protocol developed by Microsoft. The protocol can be found here: https://github.com/Microsoft/language-server-protocol

## Configuration

You will need to put this somewhere that is sourced on startup.

```vim
let g:langserver_executables = {
\ 'go': ['langserver-go', '-trace', '-logfile', expand('~/Desktop/langserver-go.log')],
\ }
```

More configuration to come...

## Plans

- [x] Use vim lsp
Expand All @@ -14,7 +26,7 @@ Shim for the language server protocol developed by Microsoft. The protocol can b
- [x] textDocument/references
- [x] Go to definition: https://github.com/Microsoft/language-server-protocol/blob/master/protocol.md#goto-definition-request
- [x] Hover
- [ ] Find references: https://github.com/Microsoft/language-server-protocol/blob/master/protocol.md#find-references-request
- [x] Find references: https://github.com/Microsoft/language-server-protocol/blob/master/protocol.md#find-references-request
- [ ] Highlights:
- [ ] Completion:
- [ ] Then deoplete source for completion

0 comments on commit ee6136c

Please sign in to comment.