Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Shortcut key to go to the end of the html tag in asp.net [duplicate]

Possible Duplicate:
Matching tag in HTML keyboard shortcut

Is there any shortcut key in ASP.net to go to the end of the tag like in following html if I am on <div> tag and I want to go to </div> then I have to scroll down to the end.

<head>
    <title></title>
</head>
<body>
    <div>
        <table>
            <tr>
                <td>
                </td>
                <td>
                </td>
            </tr>
        </table>
    </div>
</body>
</html>

In complex pages markup is huge and scrolling up and down waste a lot of time so if there is no short cut key then any suggestion that how to go to he end tag and start tag as quickly as possible using keyboard.

Thanks.

like image 842
Kashif Avatar asked May 18 '11 06:05

Kashif


1 Answers

This has been asked and answered here: Matching tag in HTML keyboard shortcut

like image 68
Erik Rydgren Avatar answered Nov 15 '22 04:11

Erik Rydgren