Skip to content

Commit

Permalink
Correct api in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ckipp01 committed Apr 24, 2021
1 parent 2a27fdd commit 3a23449
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/scala-utils.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ minimal coursier API. We'll use that to show some example mappings: >
local opts = { noremap = true, silent = true }
api.nvim_set_keymap("n", "<leader>slc", [[require("scala-utils.coursier").complete_from_line()<CR>]], opts)
api.nvim_set_keymap("n", "<leader>sc", [[require("scala-utils.coursier").complete()<CR>]], opts)
api.nvim_set_keymap("n", "<leader>sc", [[require("scala-utils.coursier").complete_from_input()<CR>]], opts)
<

The current apis are:
Expand All @@ -66,7 +66,7 @@ NOTE: These for sure are not stable for the time being.
================================================================================
COURSIER API *scala-utils-coursier-api*

*complete_from_input()*
*complete()*
complete({to_complete}) Completes a given string. Must be in a valid
format that `cs complete` can understand.

Expand Down

0 comments on commit 3a23449

Please sign in to comment.