Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best way to fix "No manual entry for byte\;type\=a" when try to seek kotlin bytecode in intellij

Tags:

Step to reproduce

  1. on *.kt press command+shift+a for view bytecode

btw,

Show Kotlin Bytecode

is working properly but broken on

Show Bytecode

(which I guess it will show java or java bytecode)

enter image description here

  1. select Show Bytecode then got this error

enter image description here

  1. But then when press command+shift+a got this error again and again

enter image description here

In the beginning I restart the ide and the same error occurs

Then I realised if I press windows then the error gone... enter image description here

like image 425
UmAnusorn Avatar asked Oct 27 '20 09:10

UmAnusorn


People also ask

How to convert bytecode to Java in IntelliJ?

Now, in the bytecode view, there is also an option to decompile the bytecode to Java. So, you can actually see both the bytecode and the equivalent java code in intellij. You even have an option to convert using JVM 8 target.

How to view Kotlin bytecode in IntelliJ IDEA?

IntelliJ IDEA comes with a bytecode viewing tool for Kotlin: Also available through Ctrl / ⌘ + Shift + A as Show Kotlin Bytecode action. It's a great tool that can jump to the corresponding bytecode when you move around in the source file.

How to jump to a specific bytecode in Kotlin?

Also available through Ctrl / ⌘ + Shift + A as Show Kotlin Bytecode action. It's a great tool that can jump to the corresponding bytecode when you move around in the source file.

How is Kotlin different from Java?

Kotlin provides many features that aren’t available in Java such as proper function types, extension functions and data classes . How is this even possible? I’ve taken a deeper look at how Kotlin works under the hood and what "JVM language" actually means. We'll be having a look at Kotlin's bytecode generation.


1 Answers

MacOs 10.14.4 update enables system shortcut Shift-Cmd-A Workaround:

  • Open "System Preferences | Keyboard | Shortcuts | Services"
  • Disable "Search man Page Index in Terminal" (or change the keybinding)
like image 87
y.bedrov Avatar answered Sep 16 '22 15:09

y.bedrov