all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#25734: Python - fix imenu regexp for async functions
@ 2017-02-14 21:01 Michael Kleehammer
  2017-02-15  1:33 ` npostavs
  2017-02-18 14:22 ` npostavs
  0 siblings, 2 replies; 3+ messages in thread
From: Michael Kleehammer @ 2017-02-14 21:01 UTC (permalink / raw)
  To: 25734

[-- Attachment #1: Type: text/plain, Size: 1416 bytes --]

This patch is for python mode.  Recently Python 3 added the “async” keyword for functions like so:

    def this_is_not_async():
        pass

    async def this_is_async():
        pass

The mode has already been updated to recognize this for most things, but not imenu.  It currently would show:

    this_is_not_async (def)
    def (async)

The patch below is a minor modification for a regular expression.  The old one simply took the 2nd token on the line to be the name; the new one skips the optional “async” keyword.

Please note the current imenu is unusable in a file with a lot of async functions - it would be nice if this rolled out with 25.2 if possible, which I believe adds the rest of async support.

Thanks,
Michael Kleehammer

diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 90b5e4e0dc..5ca23fb9ab 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1316,7 +1316,7 @@ marks the next defun after the ones already marked."
 ;;; Navigation

 (defvar python-nav-beginning-of-defun-regexp
-  (python-rx line-start (* space) defun (+ space) (group symbol-name))
+  (python-rx line-start (* space) (* "async" space) defun (+ space) (group symbol-name))
   "Regexp matching class or function definition.
 The name of the defun should be grouped so it can be retrieved
 via `match-string'.")


[-- Attachment #2: Type: text/html, Size: 2191 bytes --]

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#25734: Python - fix imenu regexp for async functions
  2017-02-14 21:01 bug#25734: Python - fix imenu regexp for async functions Michael Kleehammer
@ 2017-02-15  1:33 ` npostavs
  2017-02-18 14:22 ` npostavs
  1 sibling, 0 replies; 3+ messages in thread
From: npostavs @ 2017-02-15  1:33 UTC (permalink / raw)
  To: Michael Kleehammer; +Cc: 25734

Michael Kleehammer <michael@kleehammer.com> writes:
>
> The patch below is a minor modification for a regular expression. The
> old one simply took the 2nd token on the line to be the name; the new
> one skips the optional “async” keyword.
>
> Please note the current imenu is unusable in a file with a lot of
> async functions - it would be nice if this rolled out with 25.2 if
> possible, which I believe adds the rest of async support.

There was a patch for a similar problem in #24820, but when looking at
the code touched there, it seems that the sub-groups of
python-nav-beginning-of-defun-regexp are not used
(python-imenu--put-parent uses "group 0").  Did I miss something?

I applied that patch to master (i.e., what will be 26.1), by the way.





^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#25734: Python - fix imenu regexp for async functions
  2017-02-14 21:01 bug#25734: Python - fix imenu regexp for async functions Michael Kleehammer
  2017-02-15  1:33 ` npostavs
@ 2017-02-18 14:22 ` npostavs
  1 sibling, 0 replies; 3+ messages in thread
From: npostavs @ 2017-02-18 14:22 UTC (permalink / raw)
  To: Michael Kleehammer; +Cc: 25734

unarchive 24820
forcemerge 24820 25734
quit

Michael Kleehammer <michael@kleehammer.com> writes:

> This patch is for python mode. Recently Python 3 added the “async”
> keyword for functions like so:
>
> def this_is_not_async():
> pass
>
> async def this_is_async():
> pass
>
> The mode has already been updated to recognize this for most things,
> but not imenu. It currently would show:
>
> this_is_not_async (def)
> def (async)
>
> The patch below is a minor modification for a regular expression. The
> old one simply took the 2nd token on the line to be the name; the new
> one skips the optional “async” keyword.

As far as I can tell, your patch has no effect on imenu, after applying
it and doing M-x imenu RET TAB, I get this *Completions* buffer:

    Click on a completion to select it.
    In this buffer, type RET to select the completion near point.

    Possible completions are:
    *Rescan*
    def.(async)
    this_is_not_async.(def)

Since the patch in #24820 does fix the problem, I'm merging this bug
into that one.

> Please note the current imenu is unusable in a file with a lot of
> async functions - it would be nice if this rolled out with 25.2 if
> possible, which I believe adds the rest of async support.

AFAIK, it's too late to fix non-critical bugs in emacs-25, but python.el
is both in Emacs "core" and a GNU ELPA package, so you can install the
version from master using package.el (when we bump its package version,
that is).





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-02-18 14:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-14 21:01 bug#25734: Python - fix imenu regexp for async functions Michael Kleehammer
2017-02-15  1:33 ` npostavs
2017-02-18 14:22 ` npostavs

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.