Tagged Questions

For issues relating to cut, copy, and paste operations.

learn more… | top users | synonyms (2)

51
votes
8answers
7k views

How do you copy and paste into Git Bash

I'm using msysgit running on Windows XP. Tried Ctrl+V, Right click, Middle click, google... no luck.
48
votes
15answers
2k views

Why is “copy and paste” of code dangerous?

Sometimes, my boss will complain to us: Why do we need such a long time to implement a feature? Actually, the feature has been implemented in another application before, you just need to ...
37
votes
9answers
11k views

How to copy text from Emacs to another application on linux

When I yank text in Emacs 22.1.1 (in its own window on X, in KDE, on Kubuntu), I can't paste it anywhere else. I'm reduced to opening kate to copy the text with ^C. Is there a better way?
36
votes
2answers
3k views

How to paste text into Vim command line

I'd like to paste yanked text into Vim command line. Is it possible?
29
votes
2answers
11k views

How do I trap ctrl-c in a C# console app

I would like to be able to trap ctrl-c in a C# console application so that I can carry out some cleanups before exiting. What is the best way of doing this?
25
votes
6answers
4k views

Paste text on Android Emulator

Is there anyway to copy/paste (desktop's) clipboard content to EditView on Android Emulator? (just for the sake to ease development/test)
23
votes
10answers
7k views

Wysiwyg with image copy/paste

First, I understand that an image cannot be "copied" from a local machine into a website. I understand that it must be uploaded. I am a web programmer, and am familiar with common web wysiwyg tools ...
20
votes
2answers
4k views

Capturing Ctrl-c in ruby

I was passed a long running legacy ruby program, which has numerous occurances of begin #dosomething rescue Exception => e #halt the exception's progress end throughout it. Without ...
20
votes
7answers
14k views

Paste an image from clipboard using java script

How do we paste an image from clipboard into a custom rich text editor using javascript? (ctrl+c and ctrl+v or a snapshot). Has anyone used Ajax's rich text editor? Does pasting an image from ...
13
votes
14answers
626 views

How to convince a colleague that code duplication is bad?

A colleague of mine was implementing a new feature in a project we work on together and he did it by taking a file containing the implementation of a similar feature from the same project, creating a ...
13
votes
4answers
8k views

Java: How could I “intercept” Ctrl+C in a CLI application?

How could I "intercept" Ctrl+C (which normally would kill the process) in a CLI (command line interface) Java application? Does a multi-platform solution exist (Linux, Solaris, Windows)? I'm using ...
12
votes
14answers
33k views

Disable Copy/Paste into HTML form using Javascript

Is there a way using Javascript to disable the ability to paste text into a text field on an HTML form? E.g. I have a simple registration form where the user is required to input their email twice. ...
11
votes
4answers
222 views

Identifying repeated code within PHP project

I have a single PHP file within a legacy project that is at least a few thousand lines long. It is predominantly separated up into a number of different conditional blocks by a switch statement with ...
11
votes
1answer
438 views

How can I detect copy & pasted code using git?

I just read the git-blame manual page once more and noticed this part: A particularly useful way is to see if an added file has lines created by copy-and-paste from existing files. Sometimes this ...
11
votes
3answers
1k views

How does Copy Paste of formatted text work?

I'm confused about what implements the functionality of copy and paste. This is exactly what I'm confused with: When I copy formatted text from MS Word (which uses a different markup language than ...
11
votes
6answers
857 views

How can I find copy/paste (duplicate, clone) code in Perl?

I've searched the Internet for a while now and I have not been able to find any free (or cheap) tools/utilities/modules that can analyze a set of Perl files (modules or scripts) and flag duplicate or ...
10
votes
3answers
1k views

What exactly is the effect of Ctrl-C on C++ Win32 console applications?

Is it possible to handle this event in some way? What happens in terms of stack unwinding and deallocation of static/global objects?
8
votes
2answers
962 views

Integrate Emacs copy/paste with System copy/paste

I have (cua-mode t) in my .emacs, so that C-c is copy and C-v is paste just like most other programs on my desktop (Ubuntu, Gnome, Linux). However, Emacs does not seem to share the clipboard/copy ...
8
votes
1answer
745 views

Prevent ID autogeneration on copy-paste in Visual Studio 2008 ASP.NET Web Form

If I have the following in an ASP.NET Web Form: <asp:TextBox runat="server" ID="tbxUser"/> and I copy and paste that line in the same page, I usually get the following: <asp:TextBox ...
8
votes
3answers
936 views

SharePoint list event receivers not firing when copying and pasting using explorer view

Here's the deal, I have various event receivers registered to a document library: ItemAdded ItemAdding ItemFileMoved ItemUpdating These event receivers work as expected in all cases, APART FROM ...
8
votes
9answers
6k views

Software for multiple copy/paste?

While coding I find that often it is needed to copy several parts of the code from one place to another (no, it is not copy/paste antipattern) and you end up switching back and force between files. ...
8
votes
5answers
1k views

Ruby. How can I copy and paste in irb on Windows?

How can I copy and paste in irb (Interactive Ruby Shell) on Windows?
7
votes
5answers
228 views

Java tool to find - copy/ paste code across projects

We inherited some leagcy code that has a whole lot of code copy/pasted across projects. Is there a way to find these? PMD can do a single project
7
votes
2answers
139 views

How to copy and paste SVG node using jQuery

I have some SVG embedded into a web page and need to copy a particular SVG node (including it's children), then paste it back into the DOM. Only problem is, the SVG node doesn't appear after being ...
7
votes
3answers
244 views

How to optimize the HTML text copied from MS Word with GWT?

I'm having a problem with RichTextAreas, so my problem is: when i paste into RichTextArea the copied text from Ms Word or OpenOffice,it keeps all text styles and this is perfect, But one bad thing is ...
7
votes
7answers
194 views

How to avoid exceptions catches copy-paste in .NET

Working with .NET framework I have a service with a set of methods that can generates several types of exceptions: MyException2, MyExc1, Exception... To provide proper work for all methods, each of ...
7
votes
4answers
777 views

Do tools exist which automatically find copy-and-paste code?

Are there tools out there which could automatically find copy-and-paste code among a set of files? I was thinking of writing a script for this, which would just search for equal strings, but such ...
7
votes
9answers
22k views

copy and paste from terminal with keyboard in linux (ubuntu)

So I'm trying to move away from using the mouse as much as I can (just a pet project). I know that in the terminal you can do c-k to cut a line and c-u to paste that line back into that same ...
7
votes
10answers
2k views

vim copy and replace text

Lets say that i have this text: $test = 'lorem'; $test2= 'ipsum'; and I want to copy lorem and paste into ipsum. I tried to do yi' on lorem and then went on ipsum and did ci' but that replaced my ...
7
votes
3answers
1k views

Smart indenting in vim (normally great) is a disaster when pasting in a chunk of code

I guess other editors are smart enough to turn that stuff off for pasting but when using vim in a terminal it can't distinguish between pasting and actual typing. What kinds of solutions or ...
6
votes
6answers
349 views

is it legal/ethical to use source code provided in academic papers, or talks given at trade events like siggraph?

Is it legal to use source code from papers and such? Like this paper on perlin noise: http://mrl.nyu.edu/~perlin/paper445.pdf Links to this source code: http://mrl.nyu.edu/~perlin/noise/ And Stam's ...
6
votes
3answers
10k views

Can I send a ctrl-C (SIGINT) to an application on Windows?

I have (in the past) written cross-platform (Windows/Unix) applications which, when started from the command line, handled a user-typed Ctrl-C combination in the same way (i.e. to terminate the ...
5
votes
2answers
151 views

git clone vs copy paste, what's the difference?

as stated in the subject note: the git clone i mean is the git clone without any option, the one which is performed by doing "git clone /C:/my_origin_folder"
5
votes
1answer
154 views

Why can't I paste text copied from a WPF FlowDocumentScrollViewer or Reader?

In a previous question I was trying to find out how to bind an ObservableCollection to a control so I could both see all the strings and select all the strings and copy them from the content control. ...
5
votes
8answers
8k views

Copy and paste content from one file to another file in VI

Hello I am working with two files, I need to copy a few lines from one file and paste into another file. I know how to copy (yy) and paste(p) in the same file. But that doesn't work for different ...
5
votes
3answers
244 views

using a sigint from ctrl-c

alright, so i'm using a sighandler to interpret some signal, for this purpose it is ctrl-c, so when ctrl-c is typed some action will be taken, and everything is fine and dandy, but what I really need ...
5
votes
3answers
1k views

Can I get copy/paste functionality from a C# Console Window?

I am developing a console application in C#, and was wondering if there was a way to get the "copy-paste" or "mark-paste" functionality into my application, similar or identical to that of the ...
5
votes
3answers
1k views

Copy from Ms Word and paste into Rich Textbox problem

I have a problem when pasting ms word content into richtextbox. when I copy content of word document and paste it into richtextbox which is in a windows application written in C#. the links are ...
5
votes
1answer
2k views

Copy and Paste on iPhone with multiple data representations

I encountered some issues when trying to put more than one data representation onto the pasteboard on iPhone 3.0. What I'm trying to do is put a data representation and a string representation onto ...
5
votes
1answer
3k views

How to send interrupt key sequence to a Java Process?

I've got a handle to a Java Process instance and its associated streams. It's a console program. I'd like to simulate a break sequence. On Windows this is Ctrl-C. Is this possible without natives? ...
5
votes
4answers
359 views

How to deal with duplicate code under Linux?

I'm looking for the best approach to dealing with duplicate code in a legacy PHP project with about 150k lines of code. Is this something best approached manually or are there standalone duplicate ...
5
votes
8answers
3k views

Copy-paste code from Visual Studio, but paste UNFORMATTED code

Is there any way to force Visual Studio to copy selected code to the clipboard as unformatted text? When I am copy-pasting code into Word or more often Outlook I have to do it via Notepad to get rid ...
4
votes
2answers
85 views

Programatically pasting files from clipboard: Copy or Move?

I'm trying make an WPF application that I could copy/cut and paste files info and it would copy/move them to a special folder. I know I can get the paths of the files being copied/cut with var files ...
4
votes
3answers
113 views

Programming in Vim: What specific mechanism do *you* use to 'copy-paste' variables?

NOTE This was flagged as a potentially subjective question, but it is not subjective. It is requested to learn the various specific ways that people use Vim so that a person coming from a ...
4
votes
2answers
105 views

Filtering paste in Silverlight 4

I have TextBox which allow insert only numeric values (filtering), But when I paste copied text it's allow any kind of symbol. How can I prevent or filter text before pasting?
4
votes
3answers
2k views

Android: how to select texts from webview

i want allow user to select some texts from webview and it need to be send as a text message. pls find way to select text and copy to clipboard and extracting from clipboard. i saw many example but ...
4
votes
3answers
220 views

Set text field value instantly (without emulated typing)

I'm using the below command to set a text input value to "some value" however the value isn't set instantly, instead it's set as if it were typed by a user. That's ok for small values, but I'm using ...
4
votes
1answer
257 views

What is the required DataFlavor to copy files in Mac OSX

I'm currently working on Java code that can copy files into the system clipboard. For Windows and Linux I already got it working. For OSX I tried several flavors but the "Paste" action in Finder ...
4
votes
2answers
389 views

Editing clipboard data when copying/pasting from a website

I have seen a few sites now where if you highlight text of an article, copy it, and then paste in they can add more text to it. Try copying and pasting a section of text from an article at ...
4
votes
4answers
2k views

limit how many characters can be pasted in textarea

Is it possible to detect how many characters are being pasted into a HTML textarea, and cancel the paste if beyond a limit? Edit: what I am trying to do is prevent the user pasting a massive amount ...

1 2 3 4 5 9