Sergey Ignatov
Sergey Ignatov
Hi, I'm a JetBrains employee, and we're working on initial support for the Chinese language pack. If you're interested in, feel free to contact me: [email protected] Cheers, Sergey.
Hi! Thanks for the lib! I'm trying to build tree-sitter on Windows downloading a tar archive, but https://github.com/tree-sitter/tree-sitter/blob/master/script/reproduce is a symlink and symlinks behavior on Windows a bit fuzzy. Is...
View java.lang.NoSuchFieldError: View at de.espend.idea.android.linemarker.ViewInflateLineMarker.attachLineIcon(ViewInflateLineMarker.java:84) at de.espend.idea.android.linemarker.ViewInflateLineMarker.attachFindViewByIdInflate(ViewInflateLineMarker.java:42) at de.espend.idea.android.linemarker.ViewInflateLineMarker.collectSlowLineMarkers(ViewInflateLineMarker.java:33) at com.intellij.codeInsight.daemon.impl.LineMarkersPass.queryProviders(LineMarkersPass.java:209) at com.intellij.codeInsight.daemon.impl.LineMarkersPass.lambda$doCollectInformation$3(LineMarkersPass.java:116) at com.intellij.codeInsight.daemon.impl.Divider.divideInsideAndOutsideInOneRoot(Divider.java:80) at com.intellij.codeInsight.daemon.impl.LineMarkersPass.doCollectInformation(LineMarkersPass.java:103) at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:70) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$null$1(PassExecutorService.java:437) at com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(ApplicationImpl.java:1137) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$doRun$2(PassExecutorService.java:430) at com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:580) at com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:525) at...
For better visual debuggers will be cool to have an ability to load the whole stack trace without setting the depth. Right now we should pass it through the API...
``` java.lang.Throwable: Synchronous execution on EDT: /opt/homebrew/bin/erl -noshell -eval io:format(\"~n~s~n~s~n~s~n~s~n\",[\"ErlangSdkType_OTP_RELEASE:\",erlang:system_info(otp_release),\"ErlangSdkType_ERTS_VERSION:\",erlang:system_info(version)]),erlang:halt()., see com.intellij.execution.process.OSProcessHandler#checkEdtAndReadAction() Javadoc for resolutions at com.intellij.openapi.diagnostic.Logger.error(Logger.java:184) at com.intellij.execution.process.OSProcessHandler.checkEdtAndReadAction(OSProcessHandler.java:171) at com.intellij.execution.process.OSProcessHandler.waitFor(OSProcessHandler.java:109) at com.intellij.execution.process.CapturingProcessRunner.runProcess(CapturingProcessRunner.java:61) at com.intellij.execution.process.CapturingProcessRunner.runProcess(CapturingProcessRunner.java:50) at com.intellij.execution.process.CapturingProcessHandler.runProcess(CapturingProcessHandler.java:52) at org.intellij.erlang.sdk.ErlangSystemUtil.execute(ErlangSystemUtil.java:66) at...
@aarzilli and @derekparker Hi, I've just tried to implement an appropriate error handling for malformed conditions and right now the error handling leaves much to be desired. I suppose it's...
I'm trying to call `code:get_doc` in order to fetch documentation for standard modules. Something like that should work, but I failed to run it. ```bash MODULE=$1 FUNCTION=$2 ARITY=$3 erl -noshell...
```erlang %% Assumes normalized name absname_vr([$/ | NameRest], [Drive, $\: | _]) -> %% Absolute path on current drive. [Drive, $\: | NameRest]; absname_vr([Drive, $\: | NameRest], [Drive, $\: |...
```erlang -type nonempty_binary() :: . -type nonempty_bitstring() :: . ```
```erlang hello() -> spawn(1), % resolved erlang:spawn(1), md5("1"), % unresolved erlang:md5("1"). ``` @kvakvs could you please tell me why md5 from erlang module is not resolved, but spawn is not?