ide

JavaScript语言IDE工具Spket的安装与使用

久未见 提交于 2019-12-06 19:48:10
Spket是一个为JavaScript语言制作的IDE工具。 官网地址: http://www.spket.com 下载地址: http://www.spket.com/download.html 这里我选择下载SpketIDE(1.6.23) 下载后的文件是一个jar包(spket-1.6.23.jar),双击此文件,进入安装向导 第一步:欢迎页面。点击下一步。 第二步:选择安装类型。可选择富客户端应用程序(即安装一个全新的IDE)或是作为Eclipse插件安装,这里我选择了前者。 第三步,选择安装目录。 第四步:准备安装,确认设定。 第五步:安装读条界面。 第六步:安装完成。 打开SpketIDE,与进入Eclipse的方法非常相似: 进入前需要先设定workspace目录 workspace设定完毕后,打开IDE界面如下: 经过了几个小时的使用,以下是几点使用心得: 1、Spket基本操作方式同Eclipse是一样的,包括大多数的快捷键和操作方法。 2、Spket支持JS代码的智能提示、自动补全。 3、Spket支持JS代码的自动缩进,使用Ctrl+A、Ctrl+Shift+F快捷键可以按规则对代码进行强制的缩进。Spket设置Formatter的方法与Eclipse设置Java语言的Formatter方法一致,不过如想自己设定Formatter

Import errors with Pycharm

拈花ヽ惹草 提交于 2019-12-06 19:33:24
问题 Edit: the problem is Pycharm is not loading LD_LIBRARY_PATH environment variable. Everything works if I add this into Pychar's environment. Why isn't it loading it? I'm having trouble importing modules for gnuradio. First, everything works if I just run the python file from the command line, and everything loads just fine in the interpreter. There is only a problem using pycharm. Furthermore, GNU Radio is installed correctly. PYTHONPATH=/usr/local/lib/python2.7/site-packages I added the

what does “link with editor ” feature do in Eclipse?

亡梦爱人 提交于 2019-12-06 19:31:40
问题 I'm new to Eclipse (and don't know NetBeans too). I'm reading eclipse tutorial. But I'm stacked and can't understand what "Link with editor" does exactly.It is said in Eclipse->Help: select the Link with Editor button in the local toolbar or view menu of one of the navigation views. Lastly, click on the editor tab for JanesFile.txt. Notice how the navigation view updated itself to select the file you are currently editing (JanesFile.txt). If you don't like this automatic update you can easily

Prevent Auto Format from align Pointer to variable

走远了吗. 提交于 2019-12-06 19:10:28
When i click on Reformat Code Clion changes my pointers from: int* pointer; to: int *pointer; How can i prevent that from happening? I searched through the settings but couldn't find anything. The alignment of pointers can be set in the code style settings. 来源: https://stackoverflow.com/questions/42697900/prevent-auto-format-from-align-pointer-to-variable

Nested Linq Min() crashes Visual Studio

Deadly 提交于 2019-12-06 19:09:16
问题 I have a piece of code that makes the Visual Studio 2008 IDE run very slow, consume vast amounts of memory and then eventually causes it to crash. I suspect VS is hitting an OS memory limit. The following code is not my real application code, but it simulates the problem. Essentially I am trying to find the minimum value within a tree using LINQ. class LinqTest { public class test { public int val; public List<test> Tests; } private void CrashMe() { test t = new test(); //Uncomment this to

Efficient and recursive way to navigate through R code on Rstudio?

霸气de小男生 提交于 2019-12-06 18:24:25
问题 I am using RStudio. I'm starting to feel the need to go through packges code to deeper understanding or hack certains functions. When I try to navigate using Using Ctrl+Click with the mouse For functions defined within packages the code is displayed in a special Source Viewer. The problem of this view It is read only view( why? ). You can't go to through the code of functions called and defined else. I know other IDE (for other languages) where we can go through the code recursively in read

Netbeans: How to disable this single annoying warning?

不打扰是莪最后的温柔 提交于 2019-12-06 18:08:17
问题 The same problem which is occuring in this question is happening a lot to me: Warning "Do not Access Superglobal $_POST Array Directly" on Netbeans 7.4 for PHP However - of course I take care with $_POST and user input etc. but I do this with custom functions which NetBeans does not understand and therefore my IDE is full of warnings. Another annoying example: "Too many nested blocks in function declaration". Of course you should avoid that, but I think this is not always possible. How can I

How do I edit the (runtime) classpath in Eclipse?

廉价感情. 提交于 2019-12-06 17:25:33
问题 In Eclipse, while trying to start Tomcat, I am getting this error: The project: xxxxxxs which is referenced by the classpath, does not exist. The reason is, I renamed my project from xxxxxxs to xxxxxx (note no "s"). It is still referencing the old one. Where is the (runtime) classpath and how do I edit it? I know this is simple, and I've looked. ( Similar to Java Eclipse - How do I change the classpath? but I just want to know how to edit it, not how to solve my particular problem. ) 回答1:

AndroidStudio import SVG with ERROR@ <mask> is not supported

旧街凉风 提交于 2019-12-06 17:23:53
问题 I got message "ERROR@ <mask> is not supported" when try to import SVG using Android Studio 3.0.1 Build #AI-171.4443003, built on November 10, 2017 JRE: 1.8.0_152-release-915-b08 x86_64 JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o Mac OS X 10.12.6 Anyway to import SVG and make them show correctly? 回答1: Solution 1 Flattern image in Sketch and use this site to convert SVG to xml for Android Solution 2 I use nonZero instead of evenOdd and open it in Sketch to reverse Order after reverse it

Delphi IDE Project “Clean”Command — What does it do?

不想你离开。 提交于 2019-12-06 17:21:29
问题 Running Delphi 2007 (and probably other versions as well, I'm guessing), if I right-click on a project in the Project Manager (either EXE of BPL in this case), there is a "Clean" command above Compile and Build. What exactly does it do? 回答1: To "clean" a build means to delete all intermediate and output files generated by the compiler. Some compilers or IDEs also have a "clean & build" or "rebuild all" option which essentially performs a clean, followed by a build. When you rebuild an