Hi all,
I'm trying to re-implement the Emacs sentence navigation/kill commands.
http://www.delorie.com/gnu/docs/emacs/emacs_235.html
I've managed to write some macros that behave the same as Emacs for most situations except near the beginning or end of the file. To fix this I would need to be able to match the EOF or Beginning Of File in a regex. Reading
http://macromates.com/textmate/manual/regular_expressions
I can't see these as available characters... do they exist?
Apologies... they are indeed there, under the guise of "begin/end String" as \A and \Z.
On 12 Jan 2007, at 23:33, Sam Halliday wrote:
I'm trying to re-implement the Emacs sentence navigation/kill commands.
http://www.delorie.com/gnu/docs/emacs/emacs_235.html
I've managed to write some macros that behave the same as Emacs for most situations except near the beginning or end of the file. To fix this I would need to be able to match the EOF or Beginning Of File in a regex. Reading
http://macromates.com/textmate/manual/regular_expressions
I can't see these as available characters... do they exist?