zoukankan      html  css  js  c++  java
  • Eclipse编辑JS响应慢,复制粘贴卡顿的解决方案

    解决方法:找到项目根目录的.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>
  • 相关阅读:
    newman
    集合自动化
    56. Merge Intervals
    55. Jump Game
    48. Rotate Image
    34. Search for a Range
    33. Search in Rotated Sorted Array
    16. 3Sum Closest
    15. 3Sum
    11. Container With Most Water
  • 原文地址:https://www.cnblogs.com/a591378955/p/9440895.html
Copyright © 2011-2022 走看看