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
8fa417bd
Commit
8fa417bd
authored
May 29, 2009
by
Rhys Weatherley
Browse files
Make '-' move to the start of the previous line in FakeVim mode.
parent
790a7879
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/fakevim/fakevimhandler.cpp
View file @
8fa417bd
...
...
@@ -1044,6 +1044,11 @@ EventResult FakeVimHandler::Private::handleCommandMode(int key, int unmodified,
moveDown
();
moveToFirstNonBlankOnLine
();
finishMovement
();
}
else
if
(
key
==
'-'
)
{
moveToStartOfLine
();
moveUp
();
moveToFirstNonBlankOnLine
();
finishMovement
();
}
else
if
(
key
==
Key_Home
)
{
moveToStartOfLine
();
setTargetColumn
();
...
...
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