Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
update incompatibility issues for autozimu/LanguageClient-neovim#151 …
Browse files Browse the repository at this point in the history
  • Loading branch information
roxma committed Oct 25, 2017
1 parent 9079480 commit 79106c2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ Note that `neovim_rpc#jobstart` only support these options:
- `on_exit`
- `detach`

## Incompatibility issues

The following neovim-only API will be ignored

- `nvim_buf_add_highlight`
- `nvim_buf_clear_highlight`

## Overall Implementation

Expand Down
10 changes: 10 additions & 0 deletions pythonx/neovim_rpc_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,13 @@ def nvim_out_write(s):
# TODO
def nvim_err_write(s):
pass

# NOTE https://github.com/autozimu/LanguageClient-neovim/pull/151#issuecomment-339198527
# TODO
def nvim_buf_add_highlight(buf, src_id, *args):
return src_id

# NOTE https://github.com/autozimu/LanguageClient-neovim/pull/151#issuecomment-339198527
# TODO
def nvim_buf_clear_highlight(*args):
pass

0 comments on commit 79106c2

Please sign in to comment.