folding

notepad++ user defined regions with folding

送分小仙女□ 提交于 2019-11-26 12:21:28
问题 I can\'t figure out how to configure notepad++ to display regions for user defined keywords. I have a big trace file which shows the start and the end of a procedure. The trace file looks like this: Beginn abc.def; ... Beginn ghi.jkl; ... Ende ghi.jkl; ... Ende abc.def; I would like to fold those regions like this: [+] Beginn abc.def; or [-] Beginn abc.def; ... [+] Beginn ghi.jkl; ... Ende abc.def; How do I configure my notepad++ to display this. Is it possible? Do you have any other

how to implement regions/code collapse in javascript

北城余情 提交于 2019-11-26 08:49:29
问题 How can you implement regions a.k.a. code collapse for JavaScript in Visual Studio? If there are hundreds of lines in javascript, it\'ll be more understandable using code folding with regions as in vb/C#. #region My Code #endregion 回答1: Blog entry here explains it and this MSDN question. You have to use Visual Studio 2003/2005/2008 Macros. Copy + Paste from Blog entry for fidelity sake: Open Macro Explorer Create a New Macro Name it OutlineRegions Click Edit macro and paste the following VB

How to use Coffee-Bytes code folding

不羁岁月 提交于 2019-11-26 08:09:08
问题 How to use \"Coffee-Bytes code folding\"? I want to use user defined region but don\'t know how to use it. Can anyone guide me? And how to use it in java code? 回答1: Firstly, you'll need to configure Coffee Bytes Java folding as the folding scheme to use, and then enable User Defined Regions, as shown below. Secondly, you'll need to configure the start and end identifiers that will be used to identify the beginning and termination of regions in your code. In this case, I've chosen {{ and }} as

What code folding plugins work on Eclipse 3.6?

旧城冷巷雨未停 提交于 2019-11-26 03:39:15
问题 I am new to java development environment and I find it difficult to manage my code properly. .Net provides the #regions which is a good solution for code management. I am using Eclipse environment for java development. I tried the Coffee-Bytes but the Coffee-Bytes code folding is not working in Eclipse 3.6 , at least on my side. I have configured it following this, but it does not work. Can someone guess what can be the issue? is there some other code folding plugin for Eclipse? 回答1: For what