diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-22 18:28:27 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-22 18:28:27 +0200 |
commit | 67c53844343011089e1b847200b5c5257a83e1c4 (patch) | |
tree | 8f1c5bfe10864b7e49a8bc62ce12b1db449803da /src/edit.c | |
parent | ca7e1f2066e3518ee6caeef32e499ab954ec05a3 (diff) | |
download | vim-git-67c53844343011089e1b847200b5c5257a83e1c4.tar.gz |
Included the patch to support netbeans in a terminal.
Diffstat (limited to 'src/edit.c')
-rw-r--r-- | src/edit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/edit.c b/src/edit.c index 88943cd7f..a80f19607 100644 --- a/src/edit.c +++ b/src/edit.c @@ -9433,8 +9433,7 @@ ins_tab() #ifdef FEAT_NETBEANS_INTG if (usingNetbeans) { - netbeans_removed(curbuf, fpos.lnum, cursor->col, - (long)(i + 1)); + netbeans_removed(curbuf, fpos.lnum, cursor->col, (long)(i + 1)); netbeans_inserted(curbuf, fpos.lnum, cursor->col, (char_u *)"\t", 1); } |