File: tip59.html

package info (click to toggle)
jedit 5.3.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 14,252 kB
  • ctags: 11,190
  • sloc: java: 98,480; xml: 94,070; makefile: 52; sh: 42; cpp: 6; python: 6
file content (19 lines) | stat: -rw-r--r-- 755 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html><body>
jEdit's text editing commands become very powerful when used together.
For example, here is one way, when programming in Java,
to find all uses of an instance variable that are outside the current
method:

<ul>
<li>Position the caret inside a method and invoke
<b>Edit</b>&gt;<b>Source</b>&gt;<b>Select Code Block</b>.
<li>Invoke <b>Edit</b>&gt;<b>Invert Selection</b> (<b>C+e i</b>).
<li>Invoke <b>Search</b>&gt;<b>Find</b> (<b>C+f</b>).
<li>Type in the variable name and press <b>Enter</b>.
<li>Because text is selected, the <b>HyperSearch</b> and
<b>Search in Selection</b> settings will be chosen by default.
<li>The <b>HyperSearch Results</b> window will list all uses of
that variable outside the selected method.
</ul>

</body></html>