Reputation: 4892
say I have text such as
CREATE TABLE blah blah (
`id` int not null,
`xxxxxx` varchar(255),
PRIMARY KEY (`id`) )
and cursor is on the "xxxxxx" - what can I do to quickly jump to the opening "(" - or the closing one for that matter. I can use "F" but that only finds within the line.
Upvotes: 2
Views: 291
Reputation: 79235
Two possibilities:
[(
; see :help [(
for more detail.?(
and ENTER. See :help ?
for more detail.Upvotes: 5