Jing

- Total activity 14
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 5
-
Created How to execute an external tool and insert output to current file?
AnsweredCurrently, when you execute an external tool, the output is put in console.Can I somehow put the output to current file, instead of console?just like how this command works in vim::read !pwdThank y... -
Created How to organize project structure?
I'm new to CMake. What I'm doing in CMakeLists.txt is:project(myprj)include_directories(/my/project/include/)file(glob_recurse SOURCE_FILES /my/project/src/*.cc /my/project/src/*.h)add_execut... -
Created How to develop a plugin that depends on Python plugin?
I have a lot of *.spec files. In fact, those files are python script with my own extentions(like you don't need to import anything there are a lot of out of stock global functions you can use in th... -
Created How to make "EditorActionHandler" work in unit test?
I use "EditorActionHandler" to insert an enter in editor. It works in real IDE, but causes assertion failure in unit testpublic class CreateFunctionFixTest extends LightCodeInsightFixtureTestCase {... -
Created Why this groovy code is marked as invalid?
Hi All,Why this groovy code is marked as invalid:new Thread() { println "this is a test" }.start()I see a wave line just after "println" and says';', ',' or new line expectedThanks.I'm using id...