aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ops.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-06 11:46:46 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-06 11:49:59 -0400
commit47d52e1578aa6dd0b55d397d24fc929b95d586f2 (patch)
treed6fe01a8f0cfcdb05d619ab867b8af272d84239f /src/nvim/ops.c
parentb9ab3636362c67bb49f8cd165006c97ffc9a00da (diff)
downloadrneovim-47d52e1578aa6dd0b55d397d24fc929b95d586f2.tar.gz
rneovim-47d52e1578aa6dd0b55d397d24fc929b95d586f2.tar.bz2
rneovim-47d52e1578aa6dd0b55d397d24fc929b95d586f2.zip
globals: did_ai is bool
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r--src/nvim/ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c
index 9107f1385e..2a83b7a4fc 100644
--- a/src/nvim/ops.c
+++ b/src/nvim/ops.c
@@ -1475,7 +1475,7 @@ int op_delete(oparg_T *oap)
return FAIL;
if (curbuf->b_p_ai) { /* don't delete indent */
beginline(BL_WHITE); /* cursor on first non-white */
- did_ai = TRUE; /* delete the indent when ESC hit */
+ did_ai = true; // delete the indent when ESC hit
ai_col = curwin->w_cursor.col;
} else
beginline(0); /* cursor in column 0 */