aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/state.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-11-25 01:08:02 -0800
committerGitHub <noreply@github.com>2019-11-25 01:08:02 -0800
commitfd5710ae9a3bcbc0f9cbb71de9e39253350ff09c (patch)
treee4b2b481998ce60f33d60eb4f6bcb59f092ba8d2 /src/nvim/state.c
parent967f229f32a3093613feaf99969e44333efd8a0a (diff)
downloadrneovim-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.c2
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') {