Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

85
votes
61answers
5k views

What tricks can be used to type and edit code faster?

Please read the full question before posting. It's not that long. As Jeff Atwood noted, we are typists first, programmers second. Fast typing and editing may not be essential to be a good programmer, ...
45
votes
10answers
25k views

How do I insert text at beginning of a multi-line selection in VI/VIM?

In vim, how would I go about inserting characters at the beginning of each line in a selection? For instance, let's say I want to comment out a block of code by prepending '//' at the beginning of ...
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?
28
votes
19answers
9k views

How do I duplicate a whole line in Emacs?

I saw this same question for VIM and it has been something that I myself wanted to know how to do for Emacs. In ReSharper I use CTRL-D for this action. What is the least number of commands to perform ...
21
votes
35answers
2k views

Improving the way we write code?

While thinking about software-engineering in general I came across the question why we don't see any improvements in the way we write/document code. Think about it: There has not been a revolutionary ...
21
votes
4answers
4k views

Switching from python-mode.el to python.el

I recently tried switching from using python-mode.el to python.el for editing python files in emacs, found the experience a little alien and unproductive, and scurried back. I've been using ...
19
votes
5answers
7k views

Javascript syntax highlighting in vim

Has anyone else found VIM's syntax highlighting of Javascript sub-optimal? I'm finding that sometimes I need to scroll around in order to get the syntax highlighting adjusted, as sometimes it ...
14
votes
2answers
3k views

How to swap files between windows in VIM?

When I work with VIM, I always have multiple windows visible. Sometimes I would like to have an easy way, to swap those windows in places. Is there any Plugin, Macro, etc to make this more easy? BTW, ...
14
votes
7answers
4k views

Editing C# while debugging

I know I've dealt with this issue before, but the settings to override this always seem to be changing. I have a C# project in Visual Studio 2008. While I'm debugging, VS won't let me edit my code. I ...
11
votes
5answers
2k views

What ways are there to edit a function in R?

Let's say we have the following function: foo <- function(x) { line1 <- x line2 <- 0 line3 <- line1 + line2 return(line3) } And that we want to change the second line to ...
9
votes
5answers
2k views

Emacs equivalents of Vim's dd,o,O

I am currently playing around with emacs and happy with most of the concepts. But I really adored the convenience of the three vim commands: dd,o,O Hopefully you can tell me how to mirror them in ...
9
votes
4answers
1k views

More efficient movements editing python files in vim

Given a python file with the following repeated endlessly: def myFunction(a, b, c): if a: print b elif c: print 'hello' I'd like to move around and edit this file using ...
8
votes
2answers
17k views

Using insert rows in a UITableView

I'd like my UITableView to behave like the the table in the Contacts editor, i.e. the user should hit Edit and an "add new category" row should appear at the bottom of each section. I'm using the ...
8
votes
5answers
916 views

Can I use ido-completing-read instead of completing-read everywhere?

I'm a big fan of ido-mode, so much so that I would like to use it for things like describe-function or find-tag and so on, without having to write something like in "Can I get ido-mode-style ...
7
votes
2answers
4k views

jqGrid: Disable form fields when editing

I'm currently developing a web application designed for the administration of vending machines and such. I decided to use jQuery, jQuery UI and jqGrid for this project, so I can easily provide a great ...
7
votes
3answers
1k views

Is there a way to *completely* disable Edit and Continue?

I was wondering if there was a way to completely lock my code while debugging it within Visual Studio 2008. The code documents lock automatically when running as 64 bit applications, which I greatly ...
6
votes
1answer
298 views

How can I delete the current line in Emacs? (Equivalent of vi's `dd`)

What is the emacs equivalent of vi's dd? I want to delete the current line. Tried CTRL + k but it only deletes from current position.
6
votes
5answers
7k views

Adding an Edit column to a telerik grid using ASP.Net MVC 2 and Telerik MVC (2010 Q1)

I have been successful with creating a Telerik grid to display a list of products, however I've gone through some difficulty adding the column to allow a user to edit (I'm not even trying to edit ...
6
votes
10answers
3k views

vi indentation

What's the easiest way to increase or decrease indentation for a large block of code in vi?
6
votes
5answers
3k views

Korn shell wraparound

Okay, I'm sure this is simple but it is driving me nuts. I recently went to work on a program where I've had to step back in time a bit and use Redhat 9. When I'm typing on the command line from a ...
5
votes
1answer
97 views

online editors for various file types, doc, dwg, image

I have a media archive with various file types on my server. If a user wants to update that file, he has to download the file to his local machine, edit it with his desktop software (Word, AutoCAD, ...
5
votes
3answers
230 views

Getting the callers of a specific function

GNU Emacs 23.1.1 I am just wondering is there any feature in emacs where I can find out what functions call a specific function. In my code, I normally have to do a search on the function name to ...
5
votes
2answers
1k views

Library to edit odt documents in php

I try to edit ODT-documents programmaticly in PHP. In fact I just want to do some text replacement and adding new rows in a table. I know that a normal ODF document is an archive containing ...
4
votes
4answers
346 views

Editing a node in a Linked list

Good day! I am creating a student list (linked list) that can add, view and edit student information. I have two fields namely Student Name and Student Grade and I add new students in the list in a ...
4
votes
7answers
267 views

Emacs: Is there a way to create a interactive script using Emacs?

I am new to emacs, but shocked at what I can really do and how much time it saves (Macros save A LOT of time). But I was wondering it was possible to create step based scripts where it asks the user ...
4
votes
1answer
712 views

iphone - any way to manipulate recorded audio?

Specifically, I just want to record something, reverse it, and play it back. I've looked through the apple docs and couldn't find anything about editing audio. Is it possible?
4
votes
2answers
729 views

How to search across a directory of files in vim?

A common programming task for me in vim is: :s/some pattern/ do some work n # finds the next entry do some work n # finds the next entry ... Now, s/.... only searches in the current file. Is there ...
4
votes
4answers
159 views

In Vim: how do I change a highlighted section?

cw changes a word. Likewise if I have selected sections in vim (found by /), how do I change one of the highlighted section, so that I can repeat(.) the process in all of the other highlighted ...
4
votes
4answers
247 views

Copy matching text to register

does anyone know if it is possible to concatenate matches resulting from a search into a single register? E.g, I have a file with following contents: aaa :xxx 123 bb :y 8 ccccc :zzzzz 1923 Now what ...
4
votes
3answers
6k views

Free resource editor for Windows .rc files?

Microsoft Visual C++ Express does not include the built-in resource editor that comes with the professional versions. Are there any good, free, alternatives out there that let you visually edit those ...
3
votes
4answers
150 views

How can I change 'long' to 'int' without changing 'long long' using perl/awk/etc

I want to change all the longs to ints (in preparation for 64 bit code). I have a perl line that does: s/(\s*long\s+)(?!long)/ int /g which comes close. It changes long to int and long long to ...
3
votes
2answers
108 views

XML as data store. Insert, remove, delete

I was planning to use XML to store the data for a Java DVD database application I'm writing. I know that the word "database" is right there in the title, but XML just seemed so much more portable, was ...
3
votes
1answer
164 views

Looking for python video editing/processing capabilities that will work with Google App Engine

Does know any python video editing/processing libraries or frameworks that work with Google App Engine? I need to pro grammatically edit video files (adding a soundtrack, layering video clips on top ...
3
votes
2answers
911 views

ios UITextField to edit with uidatepicker

I have a uitextfield where is written a date.. how can I show on the bottom of the page a uidatepicker instead of a standard keyboard? thanks in advance
3
votes
1answer
2k views

jQGrid, how to make a column editable in the add dialog but not during (inline) edits

I have a jQGrid with a column that I only want to be editable when adding a new row. I've seen examples of how to do this when edits and adds are both happening in a dialog but is there a way to do ...
3
votes
2answers
361 views

Edit dll file without sourceCode

we want to edit one dll file that write with C#. I check the file with reflector and want to change just the connection string password field to new password. How can I edit this without accessing to ...
3
votes
5answers
2k views

how to edit a file in powershell remoting session (powershell)

I am connecting to another computer using powershell remoting, really nice. can do lots, but how do I edit a file? PS C:\Users\guutlee> Enter-PSSession -ComputerName appprod [appprod]: PS ...
3
votes
1answer
141 views

How can I write a hard drive sector as reserved?

I am hex editing a hard disk and I would like to mark some hard drive sectors as reserved so that they are not overwritten by Windows (Vista or 7). I think this is possible, since during a defrag, the ...
3
votes
1answer
3k views

Add multiple input elements in a custom edit type field

Is there a way to create a custom field that has multiple input elements? I'm consulting the documentation and creating a single input element is pretty straight forward, but I'm not exactly sure how ...
3
votes
3answers
1k views

How can I open another vertical window (:vsp) on the left in vim?

vim's :vsp command opens a window on right. Is there a way to open it on the left side of the screen?
3
votes
4answers
268 views

Is there something like Emacs' toggle-read-only in Visual Studio?

The subject says it all. Is there an easy way to toggle the editability of a buffer in Visual Studio? This would be similar to the toggle-read-only command in Emacs. I am not looking to change the ...
3
votes
2answers
185 views

Video editing capablities

I am building a desktop application ( .NET) for which basic video editing capabilities like adding music ,captions ,editing etc is required. Are there any open source options or third party libraries ...
3
votes
3answers
3k views

Editable data grid for C# WinForms

I need to present the user with a matrix of which one column is editable. What is the most appropriate control to use? I can't use a ListView because you can only edit the first column (the label) ...
2
votes
2answers
73 views

Minimum cpu and memory overhead data structure for editing text?

I am creating a mind mapping application, and I was wondering what would be the best data structure for the "notes" editor. Notes might be just a few symbols, might be pages long, and are being ...
2
votes
1answer
105 views

Force contenteditable content to be inside div or p

does anyone know how to force a the content of a contenteditable div do be surrounded by a div or a p? If the content of the contenteditable is an empty div - selecting it with a range works on ...
2
votes
2answers
63 views

What alternative syntaxes are there for expressing XML?

What human-readable and human-editable syntaxes exist that can be automatically converted to and from XML with no loss of expressivity. In other words, an updated version of this list. The three ...
2
votes
0answers
25 views

How can I make a keystroke to delete contiguous whitespace in Xcode?

I would like to figure out a way to have key bindings in Xcode (or perhaps more generally, any Cocoa text editor) that will delete (to the left or right, depending on the key binding) contiguous ...
2
votes
4answers
191 views

“Find next” in vim

To search forward in vim for cake, I'd type /cake, but the cursor jumps to the first match when I press return. Is there a vim command analogous to "find next"?
2
votes
1answer
40 views

Unable to modify re-opened files in vim(file permissions not a problem)

I am working with vim. I created a new cpp file using vim xyz.cpp After opening the file, I added some basic includes and comments. Then I closed it(:wq!) and re-opened it only to find that I am ...
2
votes
1answer
113 views

Notepad++ - make functions “clickable”?

I just thought about this maybe being useful, but I can't find a way to do it. Is there a way, in Notepad++, to make function names "clickable" -- ie make them links, so that if you click on them, it ...

1 2 3 4 5 7