Stop Eclipse from closing and opening quotes on new line inside quotes

I always have my multi-line variables defined like this:

var query = "
    SELECT 
        this AS that 
        CASE something 
    FROM table 
    WHERE something 
"

But in Eclipse , in the default JavaScript Editor in Eclipse 3.8.0 Web Tools Platform (WTP), everytime I press return, or paste a couple of lines, Eclipse will add quotes like this:

var query = "
    SELECT 
        this AS that 
        CASE something 
    FROM table " +
        "    JOIN pasted.line1 " +
        "    JOIN pasted.line2 " +
        "    JOIN pasted.line3 " +
        "    JOIN pasted.line4 " +
        "WHERE something 
"

Making the indentation annoying and markup not to my personal taste.

Can I disable this specific 'feature' without disabling other tricks of wizardry?

链接地址: http://www.djcxy.com/p/90610.html

上一篇: 如何在Android的Genymotion模拟器中拨打电话?

下一篇: 停止Eclipse关闭和打开引号内新行的引号