outline

Emacs equivalent of Vim's foldmethod = indent

Question: Does Emacs have a canonical equivalent of Vim's Folding with Foldmethod=indent? I am particularly interested in something that can work alongside any Emacs major mode and any file. The Emacs searches have not turned up a definitive answer. ...

Set text outlining / border in Actionscript 3.0

How can I set the properties for the text outline / border for each character in a line of text in AS3 ? ...

CSS3 outline using CSS2 border

Sadly, CSS outline isn't supported in IE7, so i'm stuck using border. But adding a border to any element on the page takes up room and possibly shifts the page. If i'm adding a 2px border, then I set a -2px margin, it sill isn't perfect, as list items move to the left, and "margin:auto" really screws with it. You can see examples here:...

Grails on Eclipse outline problem

Suddenly my eclipse start showing this message every time I hit ctrl+o: "Show Outline" did not complete normally. Please see the log for more information. java.lang.NullPointerException This is the Error Log: java.lang.NullPointerException at org.codehaus.groovy.eclipse.codebrowsing.TextUtils.getNodeOfInterest(TextUtils.java:77) at ...

emacs collapsing functions in class using outline-minor-mode

What kind of a hook should i use to collapse just functions in the class. I want to see the outline of the functions in the class but if i hook hide-all everything including the class is collapsed during open. ...

HTML/CSS Outline numbering

In html/css can I achieve this? 1. 1.1 1.2 2. 2.1 2.2 using LI and UL tags? ...

Jed editor: how to activate outline / class-browser mode on ubuntu

I have installed jed and jed-extras on ubuntu. I would like to have a class-browser / outline mode. So I can see the structure of the code document currently edited and easily jump to a function or class in it. The question is: What are the steps to actually activate / use the outline mode? There is supposed to be one but I can't find ...

Make Input Box Have Safari's Blue Outline

Hi Everyone: I am wondering if there is some way to make an box have the Safari's light highlight all of the time. I would assume there would be a way to replicate this, however I have not found one. Thanks for any help! ...

excel group with hidden rows

I have an Excel sheet where several rows are grouped together using "Group and outline". By default the group is to be expanded but I have one row that I have hidden using vba in Workbook_Open. After I click the [-] to collapse the group and then the [+] to expand it again my hidden row is now visible. Is there a way to keep the hidd...

Document Outline VS2008 for classes

Is there a sort of class outline window in VS2008? I have checked the document outline, but it's not for classes. Then there's the class view window, but it shows you everything. I'm searching for something similar like Outline in Eclipse where you can see all fields, properties, methods of a class. ...

Ideas for table row outline on hover? CSS outline fails on tr in Webkit.

I'm trying to build a table (filled with actual tabular data), and get an outline effect for a row on hover. I've tried a couple ideas, but cross-browser issues are holding me back. Would love to hear any ideas. Idea #1: Add CSS outline when hovering over <tr>. Works in IE8 & FF3, but not IE7 or Chrome (Webkit, so probably Safari too...

How to get an outline view in sublime texteditor?

How do I get an outline view in sublime code editor for Windos? http://www.sublimetext.com/ The minimap is helpful but I miss a traditional outline (a klickable list of all the functions in my code in the order they appear for quick navigation and orientation) Maybe there is a plugin, addon or similar? It would also be nice if you can ...

How do I remove an active outline from jquery accordion ?

I am using Jquery Accordion. The active link has an outline. I have tried using css: #accordion a:focus { outline: none; } #accordion a:active {outline: none; font-weight:bold;} and also #accordion a:-moz-any-link:focus { outline: none; } None of these seem to work. Can anyone advise a setting or another option to remove the dot...

Is there a way (or a plugin) to make Vim generate a code outline for CSS?

I was trying to install taglist (but I couldn't install ctags), but I realized that it doesn't support css, is there another way or plugin to perform this job? PS: I checked the install file of ctags, but I couldn't find any steps which looked like an installation manual. it just says: Installation Notes ================== For non-Un...

Is is possible to apply 2 font filters in SIFR?

Hello, is it possible to apply 2 font filters that are of the same type but with different parameters in SIFR? I want to get an outline effect around my fonts and tried to apply 2 glow filters with different settings to get the desirable look, but it looks like only 1 filter (last in the list of filters) is applied. Does anyone know if ...

Which elements of an XHTML/HTML5 page should be explicitly included in the document outline?

The HTML5 spec definition of the "section" element is: The section element represents a generic document or application section. A section, in this context, is a thematic grouping of content, typically with a heading....Note: The section element is not a generic container element. When an element is needed for styling purposes or a...

sIFR disabling outline when wmode is transparent

When I use sIFR with wmode:'transparent' and click sIFRed text an outline occures. It happens only in Firefox. Can I do anything about it? When I use solid color outline does not appear, but I must have a transparent background. ...

Given a large set of vertices in a non-convex polygon, how can i find the edges?

I have a set of vertices(called A) and I want to find all the border vertices such that this border vertices set is an outline of the shape. Many of the vertices in A are redundant because they are inside the shape, I want to get rid of these vertices. My question is similar to http://stackoverflow.com/questions/477867/best-algorithm-...

Access tree object in netbeans outline

I'm using Outline from netbeans to display some structured data. How can I map selected row to an object in tree? ...

DirectWrite with hinting

Can I get glyph outline with hinting in DirectWrite? In GDI, if I call GetGlyphOutline without specifying GGO_UNHINTED, I get the outline with hinting applied. The counterpart in DirectWrite is IDWriteFontFace::GetGlyphRunOutline, but there is not such a switch. From what I see, the outline is raw and no hinting is applied. Is there a wa...