Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
5answers
9k views

how do I do redo (i.e. “undo undo”) in vim

In vim, I did too much undo. How do I undo this (i.e. redo)?
9
votes
8answers
2k views

Pythonic equivalent of unshift or redo?

I'm learning Python, and I have a situation where I want to consume items from an iterator. The tricky part is that under certain conditions, I want to "un-iterate." That is, put an item back onto ...
8
votes
8answers
1k views

How to design undo & redo in text editor?

Part of my project is write text editor that used for type some rule and my application compile and run it. Writing compiler was end and release beta version. In final version we must add undo and ...
6
votes
5answers
691 views

how to implement undo/redo operation without major changes in program

Hi I'm about to add new functionality to application which I'm currently writting. I need to write a undo/redo fnctionality. However 90% of our application is ready and I don't know what is the best ...
4
votes
2answers
169 views

C#: Unable to undo inserted text

I am programatically adding text in a custom RichTextBox using a KeyPress event: SelectedText = e.KeyChar.ToString(); The problem is that inserting text in such a way doesn't trigger the CanUndo ...
3
votes
2answers
399 views

How do I restore a NSUndoManager's contents in a CoreData NSManagedObjectContext?

I'd like to use NSUndoManager in an iPhone application on CoreData (NSManagedObject) objects such that I can save (and later restore) the state of the NSUndoManager if the application exits ...
2
votes
4answers
122 views

Can't get my head around implementing an Undo/Redo functionality, should I use a Stack?

I'm getting kind of confused right now, having one of those days I guess. I need to implement an Undo and Redo functionality for a form. For simplicities sake, let's say that I only save the control ...
2
votes
3answers
283 views

Clearing NSUndoManager's Redo stack

In my application, there are some actions I want to undo programmatically, without giving the user the option of clicking "Redo". Is there any way to clear the Redo stack of NSUndoManager? If not, and ...
2
votes
1answer
833 views

Undo/redo with a UITextView (iOS/iPHone)

I have a view where a UITextView always has focus. What I want to do is extend the built-in undo/redo behavior to support undo/redo for when I programmatically set the text (e.g., for when I clear it, ...
2
votes
2answers
509 views

Cleanest Perl parser for Makefile-like continuation lines

A perl script I'm writing needs to parse a file that has continuation lines like a Makefile. i.e. lines that begin with whitespace are part of the previous line. I wrote the code below but don't ...
2
votes
2answers
234 views

Can I jump back to the beginning of a method using 'redo' in Ruby?

In the Poignant Guide this example of the redo keyword is given: class LotteryTicket def self.new_random new(rand(25) + 1, rand(25) + 1, rand(25) + 1) rescue ArgumentError redo end end ...
1
vote
2answers
54 views

Implementing Undo and Redo functionality javascript and php

I want to implement Undo and Redo functionality not only for client side but for server side as well. For insatnce i have a div containing image and i can rotate resize and rewrite it , All the basic ...
1
vote
1answer
61 views

How to get RichTextBox Undo to work better?

I am trying to write a text editor using RichTextBox. My concern is now about Undo and possibly Redo features of RichTextBox. When I start writing in text box, say 1 minute! if I call Undo method, ...
1
vote
2answers
96 views

Undo Redo with Entity Framework

I'm converting a .net program's db access from old school sql to EntityFramework currently it has an 'undo redo' feature by holding the sql scripts in a container for later use. Is there an easy way ...
1
vote
2answers
176 views

Drawing Layers over ImageView in Android

Can anyone guide me how can I put different drawing layers on an Image which is shown over ImageView component. Basically I want to implement Undo and Redo Functionality in my drawing application. ...
1
vote
2answers
466 views

Undo and Redo Action events in Java

I have an application with a JPanel and buttons that users click on to draw shapes on the panel. You can color and resize the shapes as well as move them around in the panel. How would I go about ...
1
vote
3answers
614 views

NSUndoManager with Core Data - Redo not working

I have a Core Data document-based app which support undo/redo via the built-in NSUndoManager associated with the NSManagedObjectContext. I have a few actions set up which perform numerous tasks within ...
0
votes
0answers
10 views

how to undo an receive&send scope activity

I am experiencing WF4, but met some difficulties. I have some corralated receive&send scopes to audit some files. And I have a CorrelationHandle between each send and next receive activity. What I ...
0
votes
0answers
33 views

NSUndoManager not keeping the stack with redo/undo for an iPhone app for UnDo/Redo drawings

I am building an iPhone app with Objective C. In my app, I am drawing the strokes on image and want to implement the undo and redo functionalities. I have used NSUndoManager for this. With this I am ...
0
votes
1answer
28 views

Redo an action in vb during 'IF' [closed]

If my if is not correct, and it goes in the 'then', how is it possible to redo my whole sub? I want to automate a whole sub.
0
votes
0answers
76 views

How to reuse undo/redo information from RichEdit, if different texts are loaded into the control

Suppose we have the following commands in our program: select element load its text into a RichEdit control user makes massive changes in the text in the control select another element load its text ...
0
votes
0answers
414 views

Undo and redo in Canvas for Android

I am using a customized version of FingerPaint for Android with some other features, like inserting images and moving them. I decided to implement an Undo&Redo, since it will make life just ...
0
votes
1answer
333 views

What is the use of undo manager? How to use it?

What is the need of undo manager in iphone? I never see such buttons in sample programs. I know the meaning and the use of undo & redo. But my question here is, For which purpose, i need it? How ...
0
votes
1answer
63 views

Simple program logic to Call method continuously

I am in a situation, in which my program needs to do processing and then wait for some interval, let's say 5 seconds and the do the same processing again. I don't know how to implement the logic. I ...
0
votes
2answers
123 views

NSUndoManager won't undo editing of a NSMutableDictionary

I'm experiencing problems with the undo operation. The following code won't undo an removeObjectForKey: operation but the redo operation setObject:ForKey: works. - (void) ...