Tagged Questions
The wrap tag has no wiki summary.
28
votes
7answers
4k views
git diff - handling long lines?
I'm running git-diff on a file, but the change is at the end of a long line.
If I use cursor keys to move right it loses colour coding and worse the lines don't line up, making it harder to track the ...
20
votes
3answers
5k views
How do I wrap a string in a file in Python?
How do I create a file-like object (same duck time as File) with the contents of a string?
15
votes
3answers
7k views
Soft wrap at 80 characters in Vim in window of arbitrary width
I want to use Vim's soft wrap capability (:set wrap) to wrap some code at 80 characters, regardless of my actual window width.
I haven't been able to find a way to do this yet - all the soft wrapping ...
14
votes
11answers
18k views
Android TextView Text not getting wrapped
Can any one tell me whats going wrong with the text, text exceeds then one line not getting wrap to next line going beyond the screen.
Following is the code
<LinearLayout ...
13
votes
2answers
1k views
Anybody know a way to use CSS text-overflow on text that's wrapping?
Does anybody know of a way to use {text-overflow: ellipsis;} on a piece of text that's wrapping to a second line?
Adding {whitespace: nowrap;} makes text-overflow work, but I need the text to wrap so ...
11
votes
3answers
18k views
HTML Textarea horizontal scroll
I would like to provide a horizontal scroll to a textarea in my HTML page. The scroll should appear without wrapping, if I type a long line without a line break. A few friends suggested using ...
9
votes
8answers
11k views
Android WebView wrap-content
a simple question... Is it possible to Load a URL in a webView and resize it to fit the screen... i Mean i want to make the WebPage small so that the user doesnt need to scroll... IS it possible????
8
votes
5answers
4k views
how to show vertical line to wrap the line in vim?
I'm finding a way to show a vertical line at 80 column in vim(not gvim).
I've been used "set wrap", but I just want to show the line to wrap the long line by myself.
thanks.
6
votes
5answers
863 views
Text wraps around floating div but borders and <hr />s do not
I have a div that is float: right and it is inside a parent div. There are p elements inside that same parent div also, and the text wraps around the float: right div properly. However, if I set the p ...
6
votes
3answers
1k views
Jquery: selectionStart for non textarea elements
$(element)[0].selectionStart seems to only work for textareas. Is there an alternative for non textareas
Im trying to wrap strings within DOM elements in tags (bold, italic...)
also, how do I undo ...
6
votes
3answers
1k views
Textview wrap around View
I'm trying to make my horizontal layouts take advantage of the room available.
In an info showing activity I have a 'fact box' followed by a large box of text. I'd like the infobox to float right, ...
6
votes
5answers
523 views
jQuery wrap syntax
It's end of day. I'm hoping I'm just having a lapse of logic.
I can't get this to work:
var $divA= $("<div></div>").addClass('classA');
var $divB= ...
6
votes
3answers
5k views
CSS: how to stop text from taking up more than 1 line?
Is there a word-wrap or any other attribute that stops text from wrapping? I have a height, and overflow:hidden, and the text still breaks.
Needs to work in all browsers, in before CSS3.
6
votes
9answers
1k views
Wrap/encrypt another executable (for licensing)
I want to create a wrapper around another executable (ie - I have an executable that prints hello World, but I want the user to enter a password before the hello world executable is run). I don't ...
6
votes
9answers
5k views
Silverlight 2.0 - Can't get the text wrapping behaviour that I want
I am having trouble getting Silverlight 2.0 to lay out text exactly how I want. I want text with line breaks and embedded links, with wrapping, like HTML text in a web page.
Here's the closest that ...
5
votes
2answers
208 views
Wrapping C++ template function
I try to wrap a template function with the help of GNU's linker wrap option. The code looks like this:
// f.h
template<typename T>
void f(T t) {
}
// bar.h
void bar();
// bar.cpp
#include ...
5
votes
2answers
174 views
jQuery add first part of div, then add last part of div seperatley
I'm trying to wrap the following prices and text together, all in one DIV.
This is what I have:
<table cellspacing="0" cellpadding="0" border="0" class="thePrices">
...
5
votes
1answer
459 views
5
votes
1answer
654 views
make a Delphi TPanel caption wrap
Is there a way to wrap the text in a TPanel.Caption in Delphi (in my case Delphi 6)?
thanks!
4
votes
3answers
70 views
How can I get my text to wrap? wpf problems
I have a listbox that uses datatemplates and one of the elements in the template is a textblock. Problem is that the words won't wrap, and I don't want to set a fixed size. Anybody that knows how to ...
4
votes
2answers
61 views
How to wrap multiple textbox wrap together in WPF
I want to 1.
My code is here
<WrapPanel>
<TextBlock Text="Title: " Style="{StaticResource Title}" TextWrapping="Wrap" />
<TextBlock Text="{Binding Description" ...
4
votes
2answers
70 views
In AS3, can member variables / methods / getters & setters be wrapped up in one common access modifier?
Is there a way to declare a bunch of members with one common access modifier? I do believe this can be done in C++ and some other languages, curious if it exists in AS3 though.
Instead of:
class ...
4
votes
2answers
326 views
Unable to wrap text in an image
I've created a PHP script, where you enter text in HTML input boxes, and then it will generate an image with a background image and the text in specific locations. I found this code that can wrap ...
4
votes
2answers
651 views
jQuery How to wrap div around multiple of the same class elements
I'm trying to wrap multiple same class divs into a div and to skip divs not with the same class. .wrap doesn't combine them, and .wrapAll throws the non-classed divs underneath. I've been tinkering ...
4
votes
1answer
1k views
Has OAuth failed?
I consider to use OAuth for Single Sign-On (SSO) with RESTful services. At first sight to use OAuth as the de-facto standard looked naturally to me. But I must confess that I don't understand how to ...
4
votes
3answers
18k views
How to make a DIV not wrap?
This requirement sounds wired, but it is actually requirement.
I need to create a container DIV style that containing multiple other DIV's. It is asked that these DIV's wouldn't wrap if the browser ...
4
votes
2answers
5k views
How do I wrap a function in Javascript?
I'm writing a global error handling "module" for one of my applications.
One of the features I want to have is to be able to easily wrap a function with a Try{} Catch{} block, so that all calls to ...
3
votes
1answer
50 views
JList wrap issue
Some strange behavior from a JList.
When I add elements to it during run time, it seems to not update the wrap properly. When the frame is revalidated, it will continue to render new items on the ...
3
votes
2answers
120 views
Wrapping C++ functions with GNU linker
I like the GNU linker functionality to wrap functions a lot. I normally use it mock e.g. nondeterministic function calls like rand(). Consider the following example where I would like to write a unit ...
3
votes
2answers
61 views
shrink caption to size of image
Is there any way to tell my span to wrap before it increases the size of its parent div?
My mockup: http://jsfiddle.net/e52pZ/4/
The colored blocks are images of undefined size, and The white blocks ...
3
votes
2answers
115 views
Use jQuery to wrap all elements in a div
I have quite a strange markup but nevertheless, i have 3 divs:
<div id="div1"></div>
<div id="div4"></div>
<div id="div12"></div>
There may be other elements ...
3
votes
4answers
209 views
Python Wrap Class Method
I'm trying to create an object with a run method that will be wrapped by a _wrap_run method. I'd like to be able to call the method and it's wrapper by simply typing instance.run() and I'd like to be ...
3
votes
5answers
148 views
Wrap every image in a article with the “href” of parent link title
I have this code:
<ul>
<li>
<h3><a class="title" href="page1.html">Post Title</a></h3>
<ul>
<li>
<img src="imageOne.png" ...
3
votes
1answer
41 views
How can I wrap a floated span underneath another floated span, within a floated span [diagram included]?
I have a newsfeed/chat box. Each entry contains two spans: #user and #message. I would like #user to float left, and #message to float left upon it. If #message causes the row to exceed the ...
3
votes
1answer
370 views
How do I make a div automatically wide enough to accomodate its floating children?
How do I make a div automatically wide enough to accomodate its floating children?
<div class="Parent"> <!-- 3 Children, should be 450px wide-->
<div class="Child"></div>
...
3
votes
4answers
182 views
How to wrap a class around the first half of a headline with jquery?
This is my first post, so please be gentle.
I'm trying to wrap a class around the first or the second half of a headline so that I could create more dynamic and cool headlines with jquery.
In ...
3
votes
3answers
266 views
How can I wrap content around a UL CSS Menu so content is seamless?
Thanks for your help
Here's the finished code for IE, Firefox, Safari and Chrome:
http://jsbin.com/eyoda4
I created a simple CSS UL drop down menu, so when a user hovers over the designated link, ...
3
votes
3answers
347 views
How do I wrap a span around the last word of an element's inner text, using jQuery?
I know this should be a simple task but I'm having problems selecting a heading elements last word and wrapping that in a span so I can add style changes.
Here's what I have so far
$('.side-c ...
3
votes
1answer
126 views
Delphi 2010 Search Wrap Around
Is there any way to switch off the 'Wrapped around' functionality of Delphi 2010's search?
I understand lots of developers have issues with the new search function but it works well for me except ...
3
votes
5answers
4k views
how to wrap text in textview in android
Does any one know how to wrap text in TextView in Android platform. i.e if the text in textview exceed the screen length it should be displayed in the second line.
I have searched and tried the ...
3
votes
2answers
258 views
Unordered wrapping CSS list layout issues
Maybe I'm going about this the wrong way but I'm trying to create a <ul> filled with elements like this:
<li>
<div>
<img src="img/productname.png" alt="desc" />
...
3
votes
5answers
5k views
Android Word-Wrap EditText text
I have been trying to get my EditText box to word wrap, but can't seem to do it.
I have deal with much more complicated issues while developing Android applications, and this seems like it should be ...
3
votes
2answers
284 views
How can I wrap() all elements in one container rather than each element?
I have HTML similar to the following:
<fieldset>
<legend>Title</legend>
<p>blahblahblah</p>
<p>blahblahblah</p>
<p>blahblahblah</p>
...
3
votes
3answers
83 views
Why is this <p> expanding the whole page?
If you visit this page and shrink your browser window, you will see my problem. [If you want to open the page in a new window, just hold down shift when you click the link.]
The answers to the ...
3
votes
2answers
732 views
How to override JS function from a firefox extension?
I am trying to intercept calls to document.write for all pages. Setting up the interception inside the page by injecting a script like
function overrideDocWrite() {
alert("Override called");
...
3
votes
2answers
2k views
WPF: TextBox expanding with surrounding Grid but not with text
I have a problem with a TextBox in an application...
A window has a Grid with two columns. The left column contains a control with a constant width but with a height that adapts. The right column ...
3
votes
2answers
493 views
Width of float no longer shrinks to fit when contents wrap to multiple lines
Here is a test file.
Resize the window to be wide enough to hold all four boxes. Notice the container is no wider than the boxes, as intended.
Resize the window to be small enough that the boxes are ...
3
votes
3answers
449 views
Does the order of the elements in the jQuery wrapped set always match the order the elements appear in the markup?
Is the order of the elements in the jQuery wrapped set guaranteed to match the order the elements appear in the markup?
I ask because I need to perform an operation on a set of nested elements, and I ...
3
votes
5answers
875 views
Wrap files in one executable package
I'd like to wrap a bunch of files (an .exe a .xml, some images) in 1 executable package. When the user launches this executable package the .exe included in this executable package should run. Is this ...
3
votes
5answers
253 views
Needed: Wrappable Counter where < and > do “the right thing”, language C
I need the code to a couter that is allowed to overflow and where < > continue to tell earlier values from later values, for some defined interval.
To clarify, one possible implementation would ...