Undo is a command in many computer programs. It erases the last change done to the document reverting it to an older state. In some more advanced programs such as graphic processing, undo will negate the last command done to the file being edited.

learn more… | top users | synonyms

-2
votes
0answers
23 views

How the undobar works?

I use the libary from github But i am comfused about how it works? Does it frist mark the sign field 'deleted' to 'true' and then if the user click the undo btn it change back again? Or wait for 5s ...
0
votes
1answer
27 views

git “local changes checked into the index but not commited”

I edited files on home desktop and pushed to bitbucket.org as well as uploading to my test website. I then pulled from bitbucket.org to my laptop. It told me I needed to merge files but I did not ...
0
votes
0answers
15 views

javascript modify document without getting previous state stored to undo buffer

I wonder, Is it possible to modify a, let say, iframe inner document without having its previous state saved on undo buffer. I have a little WYSIWIG editor, which removes unsupported formatting from ...
0
votes
0answers
42 views

How to undo a “Get Latest Version” on TFS

I'm using TFS with VS2008 and VS2010 and in the TFS collection I have several projects. I've mapped the TFS root to a local drive to preserve the TFS folder structure and I've done a Get Latests of ...
0
votes
0answers
13 views

How can I undo a package rename in Pydev for Eclipse, or fix the import errors the rename caused?

The package was originally titled 'default', but I tried to change the name to 'Synthesizer'. However, this caused a problem because 'Synthesizer' was the name of a class in the package, so I changed ...
0
votes
0answers
35 views

How to Undo/Redo

I need to write undo/redo function for a complex object like below. class DataContainer implements Serializable{ private PublicationType type; private HashMap<Enum, String> fields; ...
3
votes
3answers
48 views

DbContext discard changes without disposing

I have an desktop client application that uses modal windows to set properties for hierarchical objects. Since this is a client application and access to the DbContext is not threaded, I use a ...
0
votes
1answer
39 views

Is it possible to undo an action done by a batch file?

The question is as the title says. I made a flawed move when moving a selection of files using a batch... It's too late now as I closed it accidentally, but for future reference I'd like the ...
0
votes
1answer
31 views

vim: undofile indepentdent of the vim version

I'm using the vim 7.3 feature undofile the following way: if version >= 703 set undofile set undodir=$HOME/.vim/undo set undolevels=1000 set undoreload=10000 endif I am using the same ...
1
vote
0answers
53 views

In Chrome undo does not work properly for input element after contents changed programmatically

In Chrome, I noticed that undo does not work properly for input element after the contents of the element has been changed programmatically. Although I get different behaviours for different browsers, ...
1
vote
2answers
38 views

Git: how to quickly undo staged and unstaged changes in git

What's the quickest way to undo changes (staged and unstaged) in Git? Both files unstaged. $ git status -s M file1.txt # unstaged ?? oops.txt # unstaged One file staged, one file unstaged. $ git ...
0
votes
2answers
33 views

win32api restore file from recyclebin using SHFileStruct

I'm using win 32 api to built explore is the same window. I can delete file to recycle bin. Now, I want to undo files which were deleted to recycle bin. What am I doing now? please help me. Thanks
3
votes
5answers
234 views

How to handle touch outside the view in Android?

I've found implementation of "Undo Bar" used in Gmail application for Android. "UndoBar" is basically a View that is displayed on top of the layout. Unfortunately it's not complete - it has no ...
-1
votes
0answers
24 views

Out-of-order Undo engine with dependent change tracking for contents of relational database? [closed]

I want to make a web application that will allow internet users to collaboratively populate an object relational model for a particular problem domain. (The schema is known in advance and is static, ...
1
vote
3answers
43 views

How to undo “hg qnew”?

I issued hg qnew without realizing that it includes any outstanding changes into the patch. I'd like to back that out and pick only specific changes using hg qrecord. How can I undo qnew?
0
votes
1answer
43 views

WPF ComboBox Undo Exception on Ctrl+Z (with Focus on SelectionChanged), Why?

Well, someone can tell me why this exception occurs in these conditions? Test Window: <Window x:Class="MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
1
vote
1answer
79 views

Undo/Redoing adjustments to whole image (Android)

Note: Please bear with me, this (imho) is not a duplicate of the dozen questions asking about undoing in paint/draw scenarios. Background: I've been developing an image processing application, ...
0
votes
0answers
18 views

Handiling Undo in Content Editable Div

I was trying to design a editor using content Editable DIV.I want to handle the undo option (ctrl+z).I am able to listen to event.But i found that IE handles this key and undoes only the content we ...
0
votes
0answers
59 views

UIButton Undo touchesBegan

I want to establish a Undo button, for that I have created an image (_Mini) equal to the main image to paint. Then I created a method to replace undo the last stroke, the previous image .... the ...
0
votes
0answers
56 views

Undo / Redo don't is fully usable

I try to make undo redo functions but when I click undo or redo buttons the function is available just for freehand. I want to undo oval, rectangle, line not just freehand. This is my code from ...
2
votes
3answers
36 views

How to undo all added files in mercurial

Say I type hg add in mercurial and there a bunch of untracked files in my working directory that are not ignored. What is the easiest way to un-add all those files without explicitly typing the name ...
0
votes
0answers
62 views

How can I implement UNDO/REDO?

Hi I want to implement Undo/Redo function in my paint app. FirstActivity.java imageViewUndo = (ImageView)this.findViewById(R.id.imageViewUndo); imageViewUndo.setOnClickListener(new ...
0
votes
2answers
86 views

django-reversion undo feature - recovering multiple objects

I'm trying to implement 'undo' feature in django project with django-reversion in a case when user can accidentally modify multiple objects. Using admin panel won't work as one has to revert objects ...
2
votes
2answers
54 views

Git undo partial changes to a file

How do I undo a part of the changes applied to a file that happened a while a go. I have the following commits and the accidental changes happened between A and B to 'file.txt' ...--A--B--... I ...
1
vote
2answers
78 views

Stuck at creating undo functionality in C#/XNA Game

So I want a undo functionality for a MapEditor I am working on in my game. I got it partly working. When I click on the map, it stores both the old and the new tile in seperate lists. When I press ...
0
votes
1answer
79 views

Git: temporarily reverting pushed commit(s)

Say, you've pushed some commits and pulled them into production, in your server's webroot, for example. And then something goes wrong. Clearly, most often what you want to do is temporarily revert the ...
1
vote
0answers
67 views

UndoManager manually add UndoableEdit to make it work with JTabbedPane

Edit : please, have a look at the end of the post... To begin, please excuse me for my bad english... I'm trying to make a text editor in Java, using a JTabbedPane to edit multiple files. I have ...
2
votes
3answers
80 views

Is fast (repeated) undo possible in emacs?

I use emacs and I have a problem with it's undo. (Sorry, maybe this is a stupid question, but I did not find anything about it in the internet, whilst it should be a basic functionality of any ...
5
votes
2answers
86 views

How to prevent Emacs from setting an undo boundary?

I've written an Emacs Lisp function which calls a shell command to process a given string and return the resulting string. Here is a simplified example which just calls tr to convert text to ...
1
vote
4answers
70 views

Disable undo/redo in Cocoa app

I've implemented undo/redo the standard way (NSUndoManager) but can't figure out how I disable undo/redos when my app is in a specific state. Users draw things in my app and when what they've drawn ...
-1
votes
1answer
90 views

Drawing app. How to create undo function in action script 3?

Can anyone show me how can I make undo function? so this is my current action script. I cant figure how to do it and i see some example in some web site, the action script is to long to under stand. ...
0
votes
1answer
211 views

Read-Only and undo properties MS Access (VBA)

I have been surfing the wed looking for an answer to what I thought it was a pretty simple question, for a newbie like me.. But havent found any so here I am!. To keep things simple, i'll attach the ...
3
votes
1answer
104 views

Undo previously seeded data in Rails

I have seeded a row of data to my table by editing db/seed.rb file and executing rake db:seed command. Unknowingly, I put some wrong information in to that row. So I want to remove the previously ...
0
votes
1answer
59 views

Run a VBA function every time 'Undo' is clicked

Is it possible to run a VBA function (Word 2007) every time the user clicks 'undo' (or crtl+z)? Thanks.
1
vote
1answer
76 views

Don't add changes made via VBA to the undo history

I have a set of Word macro's that format documents that are sent to from an external source. Usually there are a lot of changes made to the document, all of which are recorded in the undo history, ...
0
votes
1answer
157 views

Action script 3 drawing app undo and redo function

Can anyone show me how can I make undo and redo function? so this is my current action script. I cant figure how to do it and i see some example in some web site, the action script is to long to under ...
0
votes
2answers
126 views

Drawing app undo and redo function action script 3

Can anyone show me how can I make undo and redo function? so this is my current action script. I cant figure how to do it and i see some example in some web site, the action script is to long to under ...
0
votes
1answer
35 views

hg undo overwrite

Accidentally used > instead of >> ! The overwritten file was added by hg add two days ago but was never commited. Can hg undo that for me (maybe by magic) ?
0
votes
0answers
38 views

Slickgrid Undo and Sorting fails

Greeting friends, I used slickgrid editCommandHandler for undo and sorting together. On sort the slickgrid is unable to undo correctly the field which I originally changed. Has anyone else also ...
0
votes
0answers
62 views

Android TextWatcher saving batches of similar changes for undo/redo

I am trying to make snapshots of an EditText content everytime after a batch of similar changes made to it. Like for example: when I do several consecutive deletes on consecutive/overlapping text ...
0
votes
3answers
77 views

Undo CGContext lines

I know this kind of post was asked a lot of time, but I searched a lot on Google and on this site too, without finding any solution, that's why I'm posting this question. I would like to undo my ...
0
votes
1answer
61 views

Core data : how to undo operations once managed objects are saved with context

I am trying to implement downloading of bulk data from several tables on the server. In my case there are 16 tables. For all these tables I will be firing 10 requests to the server. This means I have ...
1
vote
1answer
56 views

SVN Backout but keep changes locally

With SVN command line, whats the best way to back out committed changes but to retain them on your local revision? i.e. I want the final state of the remote repository to be what it was before the ...
1
vote
1answer
142 views

Undo behavior on textField value based on value verification after focus lost

I post new question based on this previously code posted here (Filter users values on TextField input after a BindDirectional strategy betwen a Slider and min/max TextField) My goal is simple, what ...
0
votes
1answer
71 views

Keeping track of parameters using a Command Pattern and ICommand for Undo/Redo. Storing multiple commands?

I've been working on a WPF application that involves moving many shapes. It is mostly MVVM and relies heavily on commands. I had not worried about Undo/Redo until just recently. I don't think it will ...
1
vote
1answer
94 views

Qt: Properly integrating undo framework with QGraphicsScene

I'm writing a Qt app that is based around a QGraphicsScene canvas with movable shapes on it, and I'm trying to integrate undo-redo functionality. For most functions like creation and deletion of ...
2
votes
4answers
78 views

Java auto update all references when replacing (not changing) object?

So I have an ArrayList of objects of my own class: public class A {...} Now say I have a variable that holds one of these objects from the list. Now I know if I change that object (e.g. set a field ...
2
votes
3answers
47 views

Branch or tag before, or else prepare a potential build failure after successful git pull?

Say I have a application that fail building after a successful Git pull (e.g. compilation fails). How can I just 'cancel' the merge and get back to the previous state?
1
vote
1answer
96 views

System.Windows.Forms.RichTextBox's implementation of TextBoxBase.ClearUndo()

According to MSDN, the description of the method ClearUndo is: "Clears information about the most recent operation from the undo buffer of the text box." Now, contrary to what the documentation ...
0
votes
1answer
50 views

FirstResponder missing redo:

Why my FirstResponder in InterfaceBuilder's file is missing redo: connection (in Received Actions list)? undo: exists, but redo: doesn't. How could I fix it?

1 2 3 4 5 7