Is it possible to wrap words in the Java stack trace console in Eclipse?

When I paste the Java stack trace into the Java stack trace console in Eclipse, it all gets pasted as one long string. I did not find a way to wrap words inside the Java stack trace console.

Is there any way to do this?

+6
source share
1 answer

Currently working solutions in Eclipse Oxygen:

  • Permanent: right-click on the console window β†’ Settings β†’ Run / Debug β†’ Console β†’ β€œFixed Width Console”
  • Temporarily: right click -> Word Wrap
+3
source

Source: https://habr.com/ru/post/976650/


All Articles