THE MENTAT MANTRA "It is by will alone I set my mind in motion. It is by the juice of Sapho that thoughts acquire speed, the lips acquire stains, the stains become a warning. It is by will alone I set my mind in motion."
Tuesday, October 31, 2023
Thursday, May 18, 2023
Vim delete starting from character to end of line
A global command would be a good fit
:g/-/norm nD
Explanation
:g : Start a Global Command (:h :g for extra help on global commands)
/- : Search for -
/norm nD : Execute nD in Normal Mode where
n - jumps to the match
D - delete to the end of the line
Subscribe to:
Posts (Atom)
30 Blogs to Learn 30 System Design Concepts
1. APIs: https:// blog.algomaster.io/p/whats-an-api 2. API Gateway: https:// blog.algomaster.io/p/what-is-an-a pi-gateway … 3. Scalab...