projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
584b9fa
)
Shortened the autocmd event names (#100).
author
Daniel Carl
<danielcarl@gmx.de>
Sat, 6 Sep 2014 22:46:31 +0000
(
00:46
+0200)
committer
Daniel Carl
<danielcarl@gmx.de>
Sat, 6 Sep 2014 22:46:31 +0000
(
00:46
+0200)
This makes the config easier to maintain.
src/autocmd.c
patch
|
blob
|
history
diff --git
a/src/autocmd.c
b/src/autocmd.c
index
d2741d6
..
e5b4e10
100644
(file)
--- a/
src/autocmd.c
+++ b/
src/autocmd.c
@@
-39,12
+39,12
@@
static struct {
const char *name;
guint bits;
} events[] = {
- {"*",
0x001f},
- {"
Page
LoadProvisional", 0x0001},
- {"
Page
LoadCommited", 0x0002},
- {"
Page
LoadFirstLayout", 0x0004},
- {"
Page
LoadFinished", 0x0008},
- {"
Page
LoadFailed", 0x0010},
+ {"*", 0x001f},
+ {"LoadProvisional", 0x0001},
+ {"LoadCommited", 0x0002},
+ {"LoadFirstLayout", 0x0004},
+ {"LoadFinished", 0x0008},
+ {"LoadFailed", 0x0010},
};
extern VbCore vb;