Macro-based shortcut
OK, based on our comment discussion here's a macro based solution.
Create a new Macro with the following code (Alt+F8, specify the name, click Create):
Selection.HomeKey Unit:=wdLine
Selection.EndKey Unit:=wdLine, Extend:=wdExtend
Selection.Delete Unit:=wdCharacter, Count:=1
Assign a keyboard shortcut to it:
- File > Option > Customize Ribbon
- Click on Keyboard shortcuts: Customize (bottom left)
- Scroll down the Categories list and select Macros, choose your new macro
- Press the shortcut key combination (e.g. Ctrl+D)
- Click Assign
- Close > OK
And you are done. Now you can press Ctrl+D whenever your cursor is on a line and it will perform Home - Shift+End - Delete sequence for you which will delete the line.
Hopefully, that will work for you. Cheers!
(Initial) Answer that uses a mouse click
If by "row" you mean a line of text
then the simplest way (I think) is to
click in the left margin on the line
you want to delete and hit Del
key.
If you want to avoid using the mouse
then I'd go for the approach suggested
by @SoftArtisans.
1Hi, thanks for your answer, but unfortunately this doesn't really solve my problem, because I wanted to avoid multiple clicks and/or pushing multiple buttons, even if I click in the middle of the line of text. :) For example, in Notepad++ I can delete the entire current line with Ctrl+L, in NetBeans, I can delete an entire line with Ctrl+E, in Eclipse, I can delete current line with Ctrl+D, etc., where it doesn't really matter where my mouse cursor is actually... so there are these simple solutions, which I look for in Word too.It really would simplify my work in huge documents. – Sk8erPeter – 2011-06-22T00:05:30.713