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 4 replies
-
You can use |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
pickfire
-
how can one map |
Beta Was this translation helpful? Give feedback.
2 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: pressingx
repeatedly will select more lines downwards.