Questions tagged [outline-view]

44 questions
83
votes
19 answers

How to show code outline in Visual Studio?

This kind of stuff exists in Eclipse: But I've not found it in Visual Studio yet. Is there such a window to show code outline at all? I tried both Document Outline and Class View windows. The Class View is close, but it only shows class…
Alan
  • 5,029
  • 5
  • 32
  • 37
28
votes
6 answers

Adding a separator to the Eclipse Outline view (like #pragma mark)

I know Xcode has a #pragma mark feature where it allows you to insert arbitrary labels in outline views / method lists to document how code is segmented. I haven't been able to find a similar feature for Eclipse. I can't help but feel that it's…
Steven Schlansker
  • 37,580
  • 14
  • 81
  • 100
20
votes
5 answers

Visual Studio "document outline" for C# file

In Visual Studio (2013/2015/2017), the Document Outline window for C# files is always empty ("There are no items to show for the selected document."). It seems that this functionality is not (not yet / no more) implemented. But then, how do I view…
Kux
  • 1,362
  • 1
  • 16
  • 31
5
votes
1 answer

Modifing Eclipse Outline view for CSS files

How can I cause Eclipse's Outline view to do any of the following when displaying the outline for a CSS file: display a comment create a collapsible range for a group of CSS rules anything else? Thanks CLARIFICATION: I am not talking about…
epeleg
  • 10,347
  • 17
  • 101
  • 151
5
votes
1 answer

In Visual Studio Code, is there a way to see the explorer on the left and the outline on the right?

I am used to program having the file browser on the left of the code and the outline on the right. However, in Visual Studio Code it seems that I can only have both things on the same side. Is there any way to have them in different sides (like in…
5
votes
2 answers

Outlining functionality for sublimetext 3

Sublime text is so nice that plenty of people use it for actual writing as well as coding. But many actual writers want outline view functionality. I am looking for a sublime text package which offers keyboard shortcuts for markdown files which…
Steve Powell
  • 1,646
  • 16
  • 26
5
votes
2 answers

How to keep the last tree item of NSOutlineView in the most bottom of a Sidebar?

I'd like to have the same behavior of special items as it's done in the Things application. I mean Logbook and Trash items in the bottom part of the Sidebar: Logbook and Trash items are in the most bottom http://tinyurl.com/lhctza Please advise any…
Vadim
  • 9,383
  • 7
  • 36
  • 58
4
votes
3 answers

How to display indeterminate NSProgressIndicator in the NSOutlineView?

I need to display a progress of loading of item's children. Please advise how to implement a progress indicator like it's done in Mail application: (source: quicksnapper.com) P. S. Here a source code of using indicator sub-views:…
Vadim
  • 9,383
  • 7
  • 36
  • 58
3
votes
1 answer

Is there a way to group methods/properties in the outline view of Aptana IDE

I've looked everywhere for a feature like this. I use the Aptana IDE (which is based on Eclipse) for my php development, and I use the outline feature a lot. I enjoy xcode's 'pragma mark' feature, which lets you group sections of your source code…
Casey Flynn
  • 13,654
  • 23
  • 103
  • 194
3
votes
2 answers

outline view in vscode not available

Started using vscode 1.64.2 on windows 10 occasionally for a while. Just now, when I tried to work with workspace on local windows 10 machine, the outline view is missing, and no where I can find it or open. I've moved the outline view to the right…
H.Sheng
  • 171
  • 3
  • 12
3
votes
1 answer

How to outline a vector drawable?

In my app I allow user to set background color and images. So to make sure that all necessary information and icons are visible, I use text with shadow of different color. It is easy to set it by setting shadow properties in xml. However, I could…
Mayank Kumar Chaudhari
  • 16,027
  • 10
  • 55
  • 122
3
votes
3 answers

Android Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

Before the newest version I was able to create hierarchies using drag n' drop, performed on the outline view. Since the upgrade, I can't and the controls ('+', '-' and arrows) are missing. So how am I suppose to build view hierarchies now?
oriharel
  • 10,418
  • 14
  • 48
  • 57
3
votes
1 answer

XCode 7 - How to rearrange source code elements

I want to ask you if there is any code arrangement functionality in XCode 7+? I ran into a situation where I want to make my code more readable and organized. For this I have to (re-)sort some functions and elements (Swift) inside some source code…
Martin Majewski
  • 344
  • 2
  • 12
3
votes
0 answers

How to create outline view for editor in Eclipse?

I have an custom editor created in eclipse, the outline view for this shows outline not available. I tried searching about this and I found the following links: FAQ How do I create an Outline view for my own language editor? Platform Plug-in…
Destructor
  • 3,154
  • 7
  • 32
  • 51
3
votes
2 answers

Javascript Outline

For the documentation of a JavaScript project, the outline of a script file is needed, similar to these examples from Eclipse or Oxygen. I only need the 'tree' structure of a JavaScript file, not a complete documentation. Is there any parser, that…
1
2 3