projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3127a3e
)
Simplified a function a little.
author
Daniel Carl
<danielcarl@gmx.de>
Fri, 27 Sep 2013 23:22:07 +0000
(
01:22
+0200)
committer
Daniel Carl
<danielcarl@gmx.de>
Fri, 27 Sep 2013 23:22:07 +0000
(
01:22
+0200)
src/normal.c
patch
|
blob
|
history
diff --git
a/src/normal.c
b/src/normal.c
index
af0b4e9
..
fffa101
100644
(file)
--- a/
src/normal.c
+++ b/
src/normal.c
@@
-333,16
+333,14
@@
static VbResult normal_descent(const NormalCmdInfo *info)
static VbResult normal_ex(const NormalCmdInfo *info)
{
+ mode_enter('c');
if (info->cmd == 'F') {
- mode_enter('c');
vb_set_input_text(";t");
} else if (info->cmd == 'f') {
- mode_enter('c');
vb_set_input_text(";o");
} else {
char prompt[2] = {info->cmd, '\0'};
vb_set_input_text(prompt);
- mode_enter('c');
}
return RESULT_COMPLETE;