Eclipse编辑JS响应慢,复制粘贴卡顿的解决方案

  我使用的是官网标准版的eclipse4.3 for javaEE, 写JS时卡的简直无法忍受,尝试去掉所有的validate,包括菜单和项目属性中的都没作用。

  整个人都急疯了~

  后来在项目根目录.project文件中, 把红色对应的配置段全部删去后。 欧拉拉~ 问题解决

 

<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
    <name>ucomweb</name>
    <comment></comment>
    <projects>
    </projects>
    <buildSpec>
        <buildCommand>
            <name>org.eclipse.jdt.core.javabuilder</name>
            <arguments>
            </arguments>
        </buildCommand>
        <buildCommand>
            <name>org.eclipse.wst.common.project.facet.core.builder</name>
            <arguments>
            </arguments>
        </buildCommand>
        <buildCommand>
            <!-- <name>org.eclipse.wst.validation.validationbuilder</name> -->
            <arguments>
            </arguments>
        </buildCommand>
        <buildCommand>
            <name>org.eclipse.jst.j2ee.ejb.annotations.xdoclet.xdocletbuilder</name>
            <arguments>
            </arguments>
        </buildCommand>
    </buildSpec>
    <natures>
        <nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
        <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
        <nature>org.eclipse.wst.common.project.facet.core.nature</nature>
        <nature>org.eclipse.jdt.core.javanature</nature>
        <!-- <nature>org.eclipse.wst.jsdt.core.jsNature</nature> -->
    </natures>
</projectDescription>
原文地址:https://www.cnblogs.com/linnuo/p/6907026.html