Skip to content
Snippets Groups Projects
Commit bc61f9dd authored by hjk's avatar hjk
Browse files

fakevim: handle block mode for yank, cut and paste

parent 8dfa8af6
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@ Editing
* Objective-C: Added partial semantic checking and symbol navigation
* Fixed searching in files to take open documents into account
* Added a Locator filter for symbols in the current document
* Handle block selection in fakevim
Project support
* Added support for adding and removing files from a generic Makefile-based
......
This diff is collapsed.
......@@ -108,8 +108,8 @@ int main(int argc, char *argv[])
QObject::connect(&handler, SIGNAL(commandBufferChanged(QString)),
&proxy, SLOT(changeStatusMessage(QString)));
QObject::connect(&handler, SIGNAL(quitRequested(bool)),
&app, SLOT(quit()));
//QObject::connect(&handler, SIGNAL(quitRequested(bool)),
// &app, SLOT(quit()));
QObject::connect(&handler,
SIGNAL(selectionChanged(QList<QTextEdit::ExtraSelection>)),
&proxy, SLOT(changeSelection(QList<QTextEdit::ExtraSelection>)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment