On Oct 18, 1:47 am, Andrew <[email protected]> wrote: > No answer?
Actually, Tor was kind enough to respond directly to me on Friday but I was only able to try out his suggestion today (Monday) because I'm only having this problem at work. (More fool me for asking the question on Friday.) Tor's suggestion was to turn off the "Insert Closing Brackets Automatically" option and see what happened. It had an effect but, unfortunately, not on the problem. Consider the following: System.out.println(xyz); With the cursor after letter x, typing in a single quote moves the cursor one place to the right (i.e. between the y and z characters) and places the quote there: System.out.println(xy'z); With the cursor after the letter y (in the original statement), typing a quote in there results in the following: System.out.println(xyz''); (two single quotes after the letter z.) With the cursor after the letter z (in the original statement), typing a quote in there results in the following: System.out.println(xyz)''; (two single quotes after closing bracket.) Turning off the closing brackets option stopped the quotes being doubled up in the latter two examples. Most odd. -- You received this message because you are subscribed to the Google Groups "The Java Posse" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/javaposse?hl=en.
