Guest User

Untitled

a guest
Apr 25th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. 50-characters column
  2. |<---------------------------------------------->|
  3.  
  4. // Initial code
  5. if (a == b) {
  6. // Test test test test test test test test test test test test test test test test test test test test test
  7. }
  8.  
  9. // Then we move the caret on the comment, press
  10. // Ctrl-Q and this long line will be splitted into 3
  11. // shorter ones:
  12. if (a == b) {
  13. // Test test test test test test test test
  14. // test test test test test test test test
  15. // test test test test test
  16. }
  17.  
  18. // Then we may think that the 2nd line contains
  19. // some non-relevant information and trim it slightly:
  20. if (a == b) {
  21. // Test test test test test test test test
  22. // test test
  23. // test test test test test
  24. }
  25.  
  26. // And then, after the 2nd line is trimmed, we press
  27. // Alt-Q again and now we have 2 lines instead of 3:
  28. if (a == b) {
  29. // Test test test test test test test test
  30. // test test test test test test test
  31. }
Add Comment
Please, Sign In to add comment