Cedric Beust
- Total activity 36
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 12
-
Created Disabling "Spelling: typo" forever
AnsweredIs there a way to completely disable "Spelling: typo" for all present and future projects? This setting never seems to stick and whenever I create or import a project, I have to disable it manually... -
Created Specifying Resources and Test Resources programmatically
I am currently adding source and test source directories as follows: val modifiableModel = ModuleRootManager.getInstance(module).modifiableModelval contentEntry = modifiableModel.addContentEntry(co... -
Edited How can I modify the project compiler output directory of a project?
AnsweredUsing this: val p = ProjectRootManager.getInstance(project) I can see the `sdkName` and other properties of that project but not the project compiler output. How can I modify it? -
Created Annotation processor run from the wrong directory
I configured IDEA to run an annotation processor but that processor is being run from the directory ".IntelliJIdea15\system\compile-server\. " instead of the module's own directory, which causes th... -
Created No classes generated for my plug-in
For some reason, generating the .zip file for my plug-in generates a .zip file with no classes in the jar file:$ jar tf /d/tmp/kobalt-intellij-plugin.jarMETA-INF/MANIFEST.MFMETA-INF/plugin.xmlLooki... -
Created Accessing the Libraries of a Project
How do I access the libraries of a Project? (more specifically, how can I programmatically add libraries to a Project?)I am able to do this if I have a `Module` (get a `ModifiableModel` from it and... -
Created How can I define a completion sorter?
I don't want to modify the completions but simply sort them differently before the user can see them, how can I do that?I noticed that `CompletionSorter` has a `withRelevanceSorter()` method but th... -
Created Can't build: "bad signature: ¾2"
IDEA 12.1.2, seeing this error fairly frequently since the latest update whenever I try to build:java: cannot access <class name> bad class file: /Users/cbeust/<class name>.class bad signature:... -
Created Import ordering no longer working in 12.1.1?
I want my org.* imports as follows:But they keep being put at the bottom:Is this a known issue in 12.1.1 or am I missing something? -
Created Javascript breakpoints not working
IDEA 12.0.1JetBrains Chrome Extension 0.4.4Chrome 23.0.1271.101I am trying to break into a remote url (which is actually http://localhost but I'm assuming this doesn't matter). The page is started ...