Re: [Python-mode] evil underscore as word

2005-12-06 Thread Stephen J. Turnbull
Sorry about the premature send. > "Ben" == Ben Wing <[EMAIL PROTECTED]> writes: Ben> btw is anyone maintaining python-mode? Yes. Skip Montanaro <[EMAIL PROTECTED]>, as it says in MAINTAINERS. Ben> despite the following comment: [...] Ben> imho it is *not* acceptable to have a r

[Python-mode] evil underscore as word

2005-12-06 Thread Ben Wing
btw is anyone maintaining python-mode? despite the following comment: ;; For historical reasons, underscore is word class instead of ;; symbol class. GNU conventions say it should be symbol class, but ;; there's a natural conflict between what major mode authors want ;; and what users ex

Re: [Python-mode] evil underscore as word

2005-12-06 Thread Stephen J. Turnbull
> "Ben" == Ben Wing <[EMAIL PROTECTED]> writes: Ben> btw is anyone maintaining python-mode? Yes. despite the following comment: ;; For historical reasons, underscore is word class instead of ;; symbol class. GNU conventions say it should be symbol class, but ;; there's a natural

Re: [Python-mode] evil underscore as word

2005-12-06 Thread Barry Warsaw
On Tue, 2005-12-06 at 18:00 +0900, Stephen J. Turnbull wrote: > Sorry about the premature send. > > > "Ben" == Ben Wing <[EMAIL PROTECTED]> writes: > > Ben> btw is anyone maintaining python-mode? > > Yes. Skip Montanaro <[EMAIL PROTECTED]>, as it says in MAINTAINERS. Others on the pyth

Re: [Python-mode] evil underscore as word

2005-12-06 Thread skip
Ben> btw is anyone maintaining python-mode? Stephen> Yes. I am officially the maintainer, though I have dropped the ball fairly badly. I asked the other day about the magic necessary to do a new release, but haven't done that yet. Ben> (modify-syntax-entry ?\_ "w" py-mode-syntax

Re: [Python-mode] evil underscore as word

2005-12-06 Thread Barry Warsaw
On Tue, 2005-12-06 at 11:01 -0600, [EMAIL PROTECTED] wrote: > "Ah.. M-f g, that's the > ticket", only to wind up at the end of "really_lon_identg". From my python-mode-hook: (define-key py-mode-map [(meta f)] 'py-forward-into-nomenclature) (define-key py-mode-map [(meta b)] 'py-backward-into

Re: [Python-mode] evil underscore as word

2005-12-06 Thread skip
Barry> From my python-mode-hook: Barry> (define-key py-mode-map [(meta f)] 'py-forward-into-nomenclature) Barry> (define-key py-mode-map [(meta b)] 'py-backward-into-nomenclature)) So maybe we can solve this in python-mode.el. Leave the syntax category for "_" alone and add (yet

Re: [Python-mode] evil underscore as word

2005-12-06 Thread Barry Warsaw
On Tue, 2005-12-06 at 12:34 -0600, [EMAIL PROTECTED] wrote: > Barry> From my python-mode-hook: > > Barry> (define-key py-mode-map [(meta f)] 'py-forward-into-nomenclature) > Barry> (define-key py-mode-map [(meta b)] > 'py-backward-into-nomenclature)) > > So maybe we can solve thi