Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Hunger
qt-creator
Commits
bc61f9dd
Commit
bc61f9dd
authored
15 years ago
by
hjk
Browse files
Options
Downloads
Patches
Plain Diff
fakevim: handle block mode for yank, cut and paste
parent
8dfa8af6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dist/changes-1.3.0
+1
-0
1 addition, 0 deletions
dist/changes-1.3.0
src/plugins/fakevim/fakevimhandler.cpp
+312
-126
312 additions, 126 deletions
src/plugins/fakevim/fakevimhandler.cpp
tests/manual/fakevim/main.cpp
+2
-2
2 additions, 2 deletions
tests/manual/fakevim/main.cpp
with
315 additions
and
128 deletions
dist/changes-1.3.0
+
1
−
0
View file @
bc61f9dd
...
...
@@ -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.
Click to expand it.
src/plugins/fakevim/fakevimhandler.cpp
+
312
−
126
View file @
bc61f9dd
This diff is collapsed.
Click to expand it.
tests/manual/fakevim/main.cpp
+
2
−
2
View file @
bc61f9dd
...
...
@@ -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
>
)));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment