How to see logs with out Esc and other gibberish stuff in logs ?

 So when you are trying to read logs, sometimes they look like this, using vim is okay at-least some readability, but less will show awful results. ESC[34m2023-04-15 04:33:57ESC[0m ESC[33m  TRACEESC[0m [ESC[36mApplicationESC[0m] ESC[37mpid: 562425ESC[0mESC[34m2023-04-15 04:33:57ESC[0m ESC[35m  DEBUGESC[0m [ESC[36mApplicationESC[0m] ESC[37minteractive: falseESC[0mESC[34m2023-04-15...

VIM: Binding a shortcut

 All this time, I do not know how to create my own VIM Bindings. And yes, trying yourself is the only way you learn anything.I want to explain what I have learnt on creating a vim shortcut, so you might get a good headstart.The command I am going to explain is as belowmap <C-b> :w\|!ruby spec/example_spec.rb <cr>somap: is like you are mapping <custome_key> <series of actions><C-b>:...