diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-11-25 01:08:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-25 01:08:02 -0800 |
commit | fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c (patch) | |
tree | e4b2b481998ce60f33d60eb4f6bcb59f092ba8d2 /src/nvim/state.c | |
parent | 967f229f32a3093613feaf99969e44333efd8a0a (diff) | |
download | rneovim-fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c.tar.gz rneovim-fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c.tar.bz2 rneovim-fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c.zip |
doc + extmarks tweaks #11421
- nvim_buf_get_extmarks: rename "amount" => "limit"
- rename `set_extmark_index_from_obj`
Diffstat (limited to 'src/nvim/state.c')
-rw-r--r-- | src/nvim/state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/state.c b/src/nvim/state.c index 81bc078a88..b195c1d96b 100644 --- a/src/nvim/state.c +++ b/src/nvim/state.c @@ -156,7 +156,7 @@ char *get_mode(void) buf[0] = 'n'; if (finish_op) { buf[1] = 'o'; - // to be able to detect force-linewise/blockwise/characterwise operations + // to be able to detect force-linewise/blockwise/charwise operations buf[2] = (char)motion_force; } else if (restart_edit == 'I' || restart_edit == 'R' || restart_edit == 'V') { |