[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Jump to match of regex
From: |
Gareth Rees |
Subject: |
Re: Jump to match of regex |
Date: |
15 Apr 2003 10:38:02 -0700 |
Joerg Schuster wrote:
> In a file with the following structure
>
> 'bla': {
> bli : 1
> blo : 2
> },
>
> 'ble': {
> bli : 3
> blo : 4
> },
>
> I would like to jump from "^'" to "^'"
Set `paragraph-start' and `paragraph-separate' to "'" (either put these
settings in the local variables section of the file, or if you have many
files with this structure, make a function and put it in
`auto-mode-alist').
Then you can jump from ^' to ^' with the commmands `backward-paragraph'
(C-up or M-{) and `forward-paragraph' (C-down or M-}).
--
Gareth Rees