summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-03-19 13:33:23 +0100
committerBram Moolenaar <Bram@vim.org>2013-03-19 13:33:23 +0100
commit186628f67153726edf130015e2a8043a5d309c42 (patch)
treeb78b09433f8bb96b50dc144fac757121f825c297 /src/vim.h
parent090cfc1b02d5dcd98ba414ccf56e69cc38f272bd (diff)
downloadvim-git-186628f67153726edf130015e2a8043a5d309c42.tar.gz
updated for version 7.3.867v7.3.867
Problem: Matchparen does not update match when using auto-indenting. (Marc Aldorasi) Solution: Add the TextChanged and TextChangedI autocommand events.
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vim.h b/src/vim.h
index fc23a4718..fa2e075b3 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -1300,6 +1300,8 @@ enum auto_event
EVENT_TABENTER, /* after entering a tab page */
EVENT_SHELLCMDPOST, /* after ":!cmd" */
EVENT_SHELLFILTERPOST, /* after ":1,2!cmd", ":w !cmd", ":r !cmd". */
+ EVENT_TEXTCHANGED, /* text was modified */
+ EVENT_TEXTCHANGEDI, /* text was modified in Insert mode*/
NUM_EVENTS /* MUST be the last one */
};