aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ops.c
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2021-10-12 18:21:12 +0200
committerDundar Göc <gocdundar@gmail.com>2021-10-19 15:20:33 +0200
commit6059784770c4c88fb6fe528b9f7634192fa1164e (patch)
treecc91a6759c739044a5a338bc938cfa033d7273ac /src/nvim/ops.c
parent38dd53c525054daf83dba27d7d46e90e8b41fa50 (diff)
downloadrneovim-6059784770c4c88fb6fe528b9f7634192fa1164e.tar.gz
rneovim-6059784770c4c88fb6fe528b9f7634192fa1164e.tar.bz2
rneovim-6059784770c4c88fb6fe528b9f7634192fa1164e.zip
refactor: remove space after star
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 bd8991e5f2..3a8f7c42a5 100644
--- a/src/nvim/ops.c
+++ b/src/nvim/ops.c
@@ -376,7 +376,7 @@ static void shift_block(oparg_T *oap, int amount)
*/
total += bd.pre_whitesp; // all virtual WS up to & incl a split TAB
colnr_T ws_vcol = bd.start_vcol - bd.pre_whitesp;
- char_u * old_textstart = bd.textstart;
+ char_u *old_textstart = bd.textstart;
if (bd.startspaces) {
if (utfc_ptr2len(bd.textstart) == 1) {
bd.textstart++;