File: faq-problems.xml

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 (456 lines) | stat: -rw-r--r-- 26,411 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
<?xml version="1.0" encoding="UTF-8"?>
<section id="problems">
    <title>Problems</title>
    <!-- jEdit buffer-local properties:                      -->
    <!-- :indentSize=2:noTabs=false:maxLineLen=90:tabSize=2: -->
    <!-- :xml.root=faq.xml:                                  -->
    <!-- jEdit FAQ                                           -->
    <para>This section deals with problems you may experience while using or
    installing jEdit. Problems that aren't OS specific are listed under <link
    linkend="general-problems"><quote>General Problems</quote></link>.</para>
    <qandaset defaultlabel="qanda">
        <qandadiv id="general-problems">
            <title>General Problems</title>
            <qandaentry>
                <question id="wont-start">
                    <para>jEdit won't start. What should I do?</para>
                </question>
                <answer>
                    <para>If you don't have a clue as to why you cannot run
                    jEdit, it's best to perform a step-by-step diagnosis. If it
                    never worked before, begin by finding the Java application
                    loader you are using: <filename>java.exe</filename>,
                    <filename>javaw.exe</filename> or <filename>java</filename>.
                    Make sure it is running by entering its full path with the
                    <userinput>-h</userinput> parameter in a terminal or console
                    window. If you can't find the Java application loader, your
                    Java runtime environment package may be missing or
                    incomplete.</para>
                    <para>Next, find where you have installed jEdit. You should
                    look for the file <filename>jedit.jar</filename> which
                    contains all of the application's Java class files in a
                    compressed archive.</para>
                    <para>Once you have both files, run the Java loader with the
                    <userinput>-jar</userinput> option and with
                    <filename>jedit.jar</filename> as the target. Make sure that
                    you either specify full paths for both files or that the
                    directories for the files are part of your
                    <filename>PATH</filename> environment variable. If jEdit
                    does not load at this point, the likely problem is a corrupt
                    <filename>jedit.jar</filename> file. Try downloading the
                    application again.</para>
                    <para>If jEdit does load using this procedure, you need to
                    examine the <quote>shortcut</quote> loading mechanism you
                    wish to use.</para>
                    <para>On Linux and MacOS X, you need to find and examine the
                    <filename>jedit</filename> shell script provided by the
                    installation routine to confirm that the script's commands
                    target the correct files and locations, and that variables
                    like <filename>JAVA_HOME</filename> are either defined in
                    the script or elsewhere in your shell's environment. Don't
                    forget to make sure that the script's file permissions allow
                    you to execute it as a shell script.</para>
                    <para>On Windows, if you are using a batch script to run
                    jEdit, the same points (other than file permissions) apply
                    to examining <filename>jedit.bat</filename>. If you are
                    using jEditLauncher, run <userinput>jedit /p</userinput> in
                    jEdit's installation directory from a command line to get
                    the custom loader's setup dialog. Here you can check the
                    paths for both the Java application loader and jEdit as well
                    as any command line parameters for both programs. Make sure
                    that you have placed Java and jEdit options in the correct
                    input fields. If the parameters seems correct but jEdit will
                    not load with the Windows launcher, try uninstalling and
                    reinstalling the launcher by running <userinput>jedit
                    /u</userinput> followed by <userinput>jedit
                    /i</userinput>.</para>
                    <bridgehead>But it worked before! It just stopped working
                    after an upgrade. What should I do?</bridgehead>
                    <para>If it used to work for an older version and no longer
                    works, it could be that you have some old crud (bad
                    settings, unsupported plugins) in your jEdit
                    settings directory (<literal>~/.jedit</literal> on Linux,
                    <literal>%APPDATA%\jEdit</literal> on Windows, or
                    <literal>~/Library/jEdit</literal> on MacOS).
                    You may want to try renaming the offending directory
                    to something else, and restarting jEdit with fresh settings.
                    You can later copy things from your old settings back 
                    if you find you are missing things. </para>
                    <para>If at this point you're still stuck, ask for help on
                    the jedit-users mailing list, the jEdit Community
                    <quote>Installation</quote> message board or on IRC. You're
                    bound to find someone quickly.</para>
                </answer>
            </qandaentry>
            <qandaentry>
                <question id="start-missing-plugins">
                    <para>After jEdit starts, I can't see all of the plugins I
                    have downloaded. How can I make them appear?</para>
                </question>
                <answer>
                    <para>If you use jEdit's Plugin Manager to download and
                    install plugins, your plugins will be found in the
                    <filename>jars</filename> subdirectory of one of two
                    directories: either the directory in which jEdit is
                    installed, or the current user's settings directory. These
                    are the only location jEdit examines when it loads plugins
                    at startup.</para>
                    <para>The default location of the settings directory depends
                    on your operating system. You can find out its location
                    during a jEdit session by evaluating
                    <userinput>jedit.getSettingsDirectory()</userinput> in
                    BeanShell.</para>
                    <para>The settings directory can be changed by using the
                    <userinput>-settings</userinput> command line parameter. If
                    you change the location of the settings directory with this
                    parameter, jEdit will not be able to find plugin archive
                    files in the old location. If you use or change the
                    <userinput>-settings</userinput> parameter, make sure your
                    plugins don't get left behind.</para>
                </answer>
            </qandaentry>
            <qandaentry>
                <question id="problems-out-of-memory">
                    <para>During an editing session I get an error message about
                    an <quote>OutOfMemoryError</quote> while working with a
                    large file or performing a lengthy operation. The message
                    reappears every time I retry the operation. How can I
                    prevent this?</para>
                </question>
                <answer>
                	<para>The memory requirements of jEdit vary greatly
                	depending on how many files are in use, and what plugins
                	you are using. You can see how much it is using in the
                	status bar. </para>
                    <para>One solution that often works is to set or increase
                    the allocation of memory to the heap for Java objects
                    created by the Java Virtual Machine in which jEdit is
                    running. Add a command line option
                    <userinput>-mx640m</userinput> to the options passed to the
                    version of the Java application loader you are using (such
                    as <filename>java</filename>, <filename>java.exe</filename>
                    or <filename>javaw.exe</filename>). In place of the
                    <userinput>640</userinput> in the option, use a number
                    of megabytes you think is appropriate for the maximum heap
                    size. If you already are using the option, try doubling it. 
                    </para>
                    
                    <para> For more information about JVM options, see the <ulink url="../users-guide/jvm-options.html">page on JVM options</ulink> in the users guide. </para>
                    
                    <para> On Windows, if you are using the <literal>jedit.exe</literal> launcher, you can add
                    or change the JVM arguments by editing a file called <literal>jEdit.l4j.ini</literal> in the same directory
                    as the <literal>jedit.exe</literal>. Place one 
                    JVM argument (e.g. <literal>-mx640m</literal>) on each
                    line by itself. </para> 
                                       
                    <para>If out of memory errors occur while running a build or
                    compilation operation from within jEdit, you can also have
                    the operation run in an external process rather than inside
                    the same Java Virtual Machine running jEdit. The AntFarm
                    plugin, for example, lets you select this approach as a
                    configuration option. In other cases, you can run an
                    external program using the command line interface of the
                    Console plugin, which will capture and display the output of
                    the external process and in many cases parse the output for
                    error information.</para>
                </answer>
            </qandaentry>
            <qandaentry>
                <question id="textarea-corruption">
                    <para>My textarea gets confused about the end of the buffer or in some other way corrupted (the characters are in the wrong place on the screen, or I get an exception when I scroll to the bottom). What should I do?</para>
                </question>
                <answer>
                    <para>Before jEdit 5.0, it happened to me quite a bit too.
                    I use this macro to help avoid the need to restart jEdit. 
<programlisting>
/** Reset_TextArea.bsh */
view.splitVertically();
view.unsplitCurrent();
</programlisting>
					Run this, and jEdit creates
                    a new TextArea for you, one that is in a valid state. </para>
                    
                    <para>If you can reproduce the steps you took to cause this,
                    please submit a bug report that details what
                    plugins/versions you were using, and how to reproduce it. It
                    may be specific to a file you are editing, or a particular
                    combination of settings you are using, or sequence of
                    actions you performed. </para>
                    </answer>
            </qandaentry>
            <qandaentry>
                <question id="general-borders">
                    <para>Why is jEdit's window movement and resizing so
                    buggy?</para>
                </question>
                <answer>
                    <para>Perhaps the option to let Java draw window borders is
                    enabled. This option can lead to strange behavior on some
                    Java versions and operating systems. Disable it in the
                    <guilabel>Appearance</guilabel> tab of the
                    <guimenu>Utilities</guimenu>&gt;<guimenuitem>Global
                    Options</guimenuitem> dialog box.</para>
                </answer>
            </qandaentry>
            <qandaentry>
                <question id="install-no-such-file">
                    <para>What should I do when the installer displays the
                    message, <screen>No such file or directory</screen>?</para>
                </question>
                <answer>
                    <para>The full message that you may receive from the Java
                    application launcher begins as follows: <screen>Exception in thread "main" java.util.zip.ZipException: No such file or directory
...</screen> This means that the Java application launcher cannot read the jar
                    archive file that you specified on the command line. If your
                    Java runtime environment otherwise runs properly, then
                    either you have named the incorrect file name or the
                    installation file is corrupt or incomplete. Check the file
                    name, download the installer again if necessary, and be sure
                    to follow any specific instructions for your operating
                    system posted on the <ulink url="http://www.jedit.org">jEdit
                    web site</ulink>.</para>
                </answer>
            </qandaentry>
            <qandaentry>
                <question id="install-noclassdef">
                    <para>After downloading
                    <filename>jeditXXXinstall.jar</filename> (the
                    <filename>XXX</filename> represents the version number), I
                    tried to run <userinput>java
                    jeditXXXinstall.jar</userinput>, but got the error message,
                    <screen>Exception in main(), NoClassDefFoundError: jeditXXXinstall/jar.</screen>
                    What am I doing wrong?</para>
                </question>
                <answer>
                    <para>You need to specify the <userinput>-jar</userinput>
                    option for the Java application loader so that the loader
                    will search the installation archive for the starting class
                    file. Without the option, it treats the archive as a single
                    class file (which it is not!), thus producing the error. The
                    correct command line would be <userinput>java -jar
                    jeditXXXinstall.jar</userinput>.</para>
                </answer>
            </qandaentry>
            <qandaentry>
                <question id="jedit-crashed">
                    <para>jEdit crashed the JVM, what gives?</para>
                </question>
                <answer>
                    <para>It's important to realise that java applications
                    should never do this. The problem is almost certainly a bug
                    in the JVM. Problems of this nature are often tricky to
                    solve. Depending on your platform, there should be
                    information logged about what caused the crash to occur. For
                    Unix type systems you will likely get an error in the
                    console (and for Mac OS X you may also get a report in
                    ~/Library/Logs/CrashReporter/JavaApplicationStub.crash.log).
					</para>
                </answer>
            </qandaentry>
            
			<qandaentry>
                <question id="locks-up-or-hangs">
                    <para>jEdit locks up or hangs while I'm doing lots of things!  </para>
                    </question>
                    <answer>
                      <para> Sometimes, it can be due to a deadlock, or an
                      infinite loop, or something else. You need to obtain a 
                      <emphasis role="bold">thread dump</emphasis> from the time
                      of hang, and attach that as a textfile to your bug report,
                      explaining what you were doing at the time.
                      </para>

                      <para> One way to obtain a thread dump, is to run jEdit
                      with <literal>java -jar jedit.jar</literal> from a command
                      line shell <emphasis role="bold">in the foreground</emphasis>,
                      wait for the hang or lockup, and type Ctrl+\ 
                      (or Ctrl+Break on Windows) into the shell window. 
                      You should see a thread dump printed immediately that will
                      help diagnose the problem. 
                      </para>

                      <para>
                      Another way to get a thread dump is to run jEdit as you
                      normally would, then run 
                      <ulink url="http://visualvm.java.net/">visualvm</ulink>.
                      You can right click on the jEdit process from within
                      visualvm and choose "thread dump". 
                      </para>

                    </answer>
			</qandaentry>
			<qandaentry>
                <question id="too-many-shortcuts">
                    <para>I can't remember all these multiple-key shortcuts! </para>
                    </question>
                    <answer>
                      <para> Install ShortcutDisplay plugin for help. </para>
                    </answer>
			</qandaentry>
            <qandaentry>
                <question id="general-slowstart">
                    <para>Why is jEdit so slow to start up?</para>
                </question>
                <answer>
                    <para>Some plugins require a lot of setup - chances are if
                    you disable one, you will be able to determine the culprit.
                    jEdit normally starts up quite quickly without
                    plugins.</para>
                    <procedure>
                        <step>
                            <para>To go the <guimenu>Utilities</guimenu> menu and
                            select <guimenuitem>Activity
                            Log</guimenuitem>.</para>
                        </step>
                        <step>
                            <para>Scroll to the area where you see lines like
                            <quote>[notice] JARClassLoader: Starting plugin
                            XXX</quote>.</para>
                        </step>
                    </procedure>
                    <para>You should be able to see which (if any) plugins are
                    causing an excesively long delay.</para>
                </answer>
            </qandaentry>
            <qandaentry>
                <question id="general-slow">
                    <para>Why is jEdit so slow?</para>
                </question>
                <answer>
                    <para>There may be many causes for this. Java by nature is
                    more demanding on hardware than native applications. Modern
                    computers should not have much problem with this.</para>
                    <para>The most likely cause is plugins that parse buffers or
                    do other computationally expensive operations. These include
                    XML, JavaSideKick, and CodeAid. If performance is important
                    to you, installing a whole batch of plugins in one go is
                    probably not a very good idea. Install them one at a time,
                    so you can evaluate the effects of each. </para>
                </answer>
            </qandaentry>
            <qandaentry>
                <question id="general-docking">
                    <para>Go to left/top/bottom/right docking area does not work
                    for some plugins?</para>
                </question>
                <answer>
                    <para>The plugin is missing a
                    <methodname>requestDefaultFocus()</methodname> method.
                    Check the jedit plugin bugs tracker to see if the ticket
                    is already opened and you can open a ticket if it's not there. </para>
                </answer>
            </qandaentry>
        </qandadiv>
        <qandadiv id="unix-problems">
            <title>Unix/Linux Problems</title>
            <qandaentry>
			    <question id="using-older-jre">
				  <para>I'm trying to install jEdit on Linux, but I keep getting strange error messages.
				  </para>
<programlisting>
Exception in thread "main" java.lang.UnsupportedClassVersionError:
installer/Install (Unsupported major.minor version 49.0)
Exception in thread "main" java.awt.AWTError: Cannot load AWT toolkit: gnu.java.awt.peer.gtk.GtkToolkit
</programlisting>
				</question>
				<answer>
				 <para> Make sure the version of Java you are running is Sun Java 1.7 or higher.
				 In debian/ubuntu,
				 <literal> apt-get install openjdk-7-jdk </literal>
				 </para>
		        </answer>
				</qandaentry>
		     <qandaentry>
                <question id="install-jedit-home">
                    <para>After installing jEdit on Linux, running the
                    <userinput>jedit</userinput> command causes the error
                    message: <screen>Warning: JAVA_HOME environment variable not set</screen>
                    How can I fix this?</para>
                </question>
                <answer>
                    <para>Your <filename>jedit</filename> shell script should be
                    modified to set the <userinput>JAVA_HOME</userinput>
                    variable to the directory containing the executables of your
                    desired Java runtime environment (JRE).</para>
                </answer>
            </qandaentry>
        </qandadiv>
        <!--******************************************************** Windows -->
        <qandadiv id="windows-problems">
            <title>Windows Problems</title>
            <qandaentry>
                <question id="install-windows-errmessage">
                    <para>When I try to run <filename>jedit.exe</filename> I get
                    the message <screen>The JEditLauncher component does not appear to be installed.</screen></para>
                </question>
                <answer>
                    <para>The dialog presenting this message asks if you would
                    like to install the launcher. Select
                    <userinput>Yes</userinput> and supply further information as
                    prompted. A file named <filename>install.log</filename> is
                    generated in the same directory as
                    <filename>jedit.exe</filename> that contains information on
                    the launcher's installation. You can send this file along
                    with jEdit's Activity Log if you continue to have problems
                    running jEdit with the launcher package.</para>
                </answer>
            </qandaentry>
            <qandaentry>
                <question id="install-error-regkey">
                    <para>When I try to run the jEdit installation package in
                    Windows, I get an error message, <screen>Error opening registration key
				"software\javasoft\java runtime	environment".</screen> How can I fix
                    this?</para>
                </question>
                <answer>
                    <para>The problem is not with jEdit but may be caused by
                    your installation of the Java runtime environment. Under
                    Windows, Sun's Java application loader relies on entries in
                    the Windows registry to find the files that create the
                    runtime environment and a Java virtual machine. The loader
                    (<filename>java.exe</filename>e or
                    <filename>javaw.exe</filename>) is unable to find the
                    necessary registration entry and therefore sends the error
                    message. The best approach to fixing this is to uninstall
                    and reinstall the JDK.</para>
                </answer>
            </qandaentry>
            <qandaentry>
                <question id="install-windows-badcommand">
                    <para>When trying to install jEdit on Windows Me with an
                    MS-DOS prompt, after entering <userinput>java -jar
                    jeditXXXinstall.jar</userinput> I get the message
                    <userinput>bad command or file name</userinput>. I have
                    tried various alternatives but still cannot install.</para>
                </question>
                <answer>
                    <para>You should confirm that you have a Java runtime
                    environment installed, which will include
                    <filename>java.exe</filename> and the version that omits a
                    separate terminal window, <filename>javaw.exe</filename>.
                    Make sure that the directory containing
                    <filename>java.exe</filename> or
                    <filename>javaw.exe</filename>is found in the value of your
                    <filename>PATH</filename> environment variable. Otherwise
                    you should give the full path to the chosen loader on your
                    command line.</para>
                </answer>
            </qandaentry>
            <qandaentry>
                <question id="general-windows-ddraw">
                    <para>When I run jEdit on Windows, it flashes, blinks, and
                    doesn't display correctly! Why is your program so
                    buggy?</para>
                </question>
                <answer>
                    <para>A frequent cause of this problem is buggy video
                    drivers and/or a buggy DirectDraw implementation. A
                    workaround is to disable Java's use of DirectDraw by adding
                    the following option to the Java virtual machine command
                    line:</para>
                    <programlisting>-Dsun.java2d.noddraw=true</programlisting>
                </answer>
            </qandaentry>
        </qandadiv>
    </qandaset>
</section>