summaryrefslogtreecommitdiff
path: root/src/edit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/edit.c b/src/edit.c
index 1e2aded13..a2ceb50f7 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -7478,6 +7478,15 @@ ins_tab()
for (temp = i; --temp >= 0; )
replace_join(repl_off);
}
+#ifdef FEAT_NETBEANS_INTG
+ if (usingNetbeans)
+ {
+ netbeans_removed(curbuf, fpos.lnum, cursor->col,
+ (long)(i + 1));
+ netbeans_inserted(curbuf, fpos.lnum, cursor->col,
+ (char_u *)"\t", 1);
+ }
+#endif
cursor->col -= i;
#ifdef FEAT_VREPLACE