Skip to content
GitLab
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
530967ea
Commit
530967ea
authored
Mar 25, 2009
by
hjk
Browse files
fakevim: trigger autocompletion on '.' and '>'
parent
f812780e
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/fakevim/fakevimhandler.cpp
View file @
530967ea
...
...
@@ -1512,6 +1512,9 @@ EventResult FakeVimHandler::Private::handleInsertMode(int key, int,
if
(
leftText
.
simplified
().
isEmpty
())
indentRegion
(
text
.
at
(
0
));
}
if
(
text
.
at
(
0
)
==
'.'
||
text
.
at
(
0
)
==
'>'
)
emit
q
->
completionRequested
();
}
else
{
return
EventUnhandled
;
}
...
...
src/plugins/fakevim/fakevimhandler.h
View file @
530967ea
...
...
@@ -77,6 +77,7 @@ signals:
const
QString
&
fileName
,
const
QString
&
contents
);
void
moveToMatchingParenthesis
(
bool
*
moved
,
bool
*
forward
,
QTextCursor
*
cursor
);
void
indentRegion
(
int
*
amount
,
int
beginLine
,
int
endLine
,
QChar
typedChar
);
void
completionRequested
();
private:
bool
eventFilter
(
QObject
*
ob
,
QEvent
*
ev
);
...
...
src/plugins/fakevim/fakevimplugin.cpp
View file @
530967ea
...
...
@@ -116,6 +116,7 @@ private slots:
void
installHandlerOnCurrentEditor
();
void
installHandler
(
Core
::
IEditor
*
editor
);
void
removeHandler
();
void
triggerCompletions
();
void
showCommandBuffer
(
const
QString
&
contents
);
void
showExtraInformation
(
const
QString
&
msg
);
...
...
@@ -208,6 +209,8 @@ void FakeVimPluginPrivate::installHandler(Core::IEditor *editor)
this
,
SLOT
(
moveToMatchingParenthesis
(
bool
*
,
bool
*
,
QTextCursor
*
)));
connect
(
handler
,
SIGNAL
(
indentRegion
(
int
*
,
int
,
int
,
QChar
)),
this
,
SLOT
(
indentRegion
(
int
*
,
int
,
int
,
QChar
)));
connect
(
handler
,
SIGNAL
(
completionRequested
()),
this
,
SLOT
(
triggerCompletions
()));
handler
->
setupWidget
();
handler
->
setExtraData
(
editor
);
...
...
@@ -235,6 +238,15 @@ void FakeVimPluginPrivate::installHandlerOnCurrentEditor()
installHandler
(
EditorManager
::
instance
()
->
currentEditor
());
}
void
FakeVimPluginPrivate
::
triggerCompletions
()
{
FakeVimHandler
*
handler
=
qobject_cast
<
FakeVimHandler
*>
(
sender
());
if
(
!
handler
)
return
;
if
(
BaseTextEditor
*
bt
=
qobject_cast
<
BaseTextEditor
*>
(
handler
->
widget
()))
bt
->
triggerCompletions
();
}
void
FakeVimPluginPrivate
::
writeFile
(
bool
*
handled
,
const
QString
&
fileName
,
const
QString
&
contents
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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