Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
84af25f6
Commit
84af25f6
authored
Dec 26, 2008
by
hjk
Committed by
Roberto Raggi
Dec 29, 2008
Browse files
small correction for 'df'
parent
d0f17e75
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/fakevim/handler.cpp
View file @
84af25f6
...
...
@@ -624,8 +624,14 @@ void FakeVimHandler::Private::handleFfTt(int key)
if
(
repeat
==
0
)
{
if
(
m_subsubdata
==
't'
)
--
pos
;
if
(
m_subsubdata
==
'T'
)
else
if
(
m_subsubdata
==
'T'
)
++
pos
;
// FIXME: strange correction...
if
(
m_submode
==
DeleteSubMode
&&
m_subsubdata
==
'f'
)
++
pos
;
if
(
m_submode
==
DeleteSubMode
&&
m_subsubdata
==
't'
)
++
pos
;
if
(
forward
)
m_tc
.
movePosition
(
Right
,
KeepAnchor
,
pos
-
m_tc
.
position
());
else
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment