Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Select line' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Select line
Authored by: Lutin on Mar 07, '07 12:47:07AM
Great idea.

To have a Textmate Command+Shift+L equivalent (select line), use this macro:

Sub SelectLine()
    Selection.HomeKey Unit:=wdLine
    Selection.EndKey Unit:=wdLine, Extend:=wdExtend
End Sub


[ Reply to This | # ]