Greg E

Results 19 comments of Greg E

Since writing the above, I have stumbled on some more bindings: ``` fn left-arrow start of line fn right-arrow end of line fn up-arrow up a page fn down-arrow down...

Ah yes, I'd forgotten that Windows has a Page-Up and Page-Down key. And Home and End which would be a good binding for Begin/End of file. And of course it...

Arggh. MarkDown ate my comment. I meant SOMEKEY and SHIFT+SOMEKEY. Note to self - always Preview.

HI, just reviewing issues. My request for a list of active key bindings was pretty much general laziness, while getting nedit-ng going on my Mac. Plus there's the Mac confusion...

Interesting. I have an old regex demo that I carry around .. time perl -e 'print "Starting runaway regex:\n"; if ( "1,2,3,4,5,6,7,8,9,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,zzz" =~ /^(.*?,){27}z/ ) { print "match" } else...

Hi Evan @eteran , just looking back through any comments on the "import" option. I'm trying to use the `File -> Load Macro File` menu option to import a test...

This imports ok .. ``` #~/Library/Preferences/nedit-ng $ cat dev.nm define test1 { insert_string("test1") } # nedit.macroCommands: \ # test2:Ctrl+Y::: {\n\ # insert_string("test2")\n\ # } ``` and "test1" appears in the...

Ok. Actually I'm getting by ok by just coding new macros direct in autoload.nm, and running two instances of nedit, ie. one in good shape with an old working autoload.nm,...

Thanks. I guess the Mark (a to z) and Goto Mark commands do some of what's needed here. And they compensate for changes in the file after things are marked....