How to delete the current line. #705
Answered
by
sudormrfbin
liukaizheng
asked this question in
Q&A
-
|
The command is 'dd' in vim, which I often used. But I can't find similar command in helix. |
Beta Was this translation helpful? Give feedback.
Answered by
sudormrfbin
Sep 4, 2021
Replies: 2 comments 7 replies
-
|
You can use |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
pickfire
-
|
how can one map |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use
xd, which will select the current line (x) and delete it (d). Tip: pressingxrepeatedly will select more lines downwards.