emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#57255: closed (Cannot display bash function function-name in speedba


From: GNU bug Tracking System
Subject: bug#57255: closed (Cannot display bash function function-name in speedbar)
Date: Sat, 30 Nov 2024 14:03:04 +0000

Your message dated Sat, 30 Nov 2024 16:02:05 +0200
with message-id <86plmc7rc2.fsf@gnu.org>
and subject line Re: bug#56003: Bash functions not showing in speedbar
has caused the debbugs.gnu.org bug report #56003,
regarding Cannot display bash function function-name in speedbar
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
56003: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=56003
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: Cannot display bash function function-name in speedbar Date: Wed, 17 Aug 2022 01:08:39 +0000
I have loaded a bash script in emacs cannot got the speedbar to display function
name containing hyphen.

Example

function-name () { commands; }






--- End Message ---
--- Begin Message --- Subject: Re: bug#56003: Bash functions not showing in speedbar Date: Sat, 30 Nov 2024 16:02:05 +0200
> From: Visuwesh <visuweshm@gmail.com>
> Date: Thu, 16 Jun 2022 08:41:12 +0530
> Cc: carlmarcos@tutanota.com, 56003@debbugs.gnu.org
> 
> [வியாழன் ஜூன் 16, 2022 02:12] carlmarcos--- via "Bug reports for GNU Emacs, 
> the Swiss army knife of text editors" wrote:
> 
> > Have been working on some functionalities implemented in bash.  But looking 
> > at the speedbar, only some function
> > names are being listed.  Tried to see whether a bug-report has been 
> > previously submitted, but could not find any. 
> > Have found the search feature for the archives quite challenging to use.
> >
> > Carl
> 
> You need to add a relevant bash entry to `sh-imenu-generic-expression'.
> I would propose a patch but the bash manual is vague about the allowed
> characters, and I never use bash so I'm not interested in digging
> further.  Maybe the newly added mksh entry could be a good example,
> 
>     (mksh
>      . ((nil
>          ;; function FOO
>          ;; function FOO()
>          ,(rx bol (* (syntax whitespace)) "function" (+ (syntax whitespace))
>               (group (1+ (not (any "\0\t\n \"$&'();<=>\\`|#*?[]/"))))
>               (* (syntax whitespace)) (? "()"))
>          1)
>         (nil
>          ;; FOO()
>          ,(rx bol (* (syntax whitespace))
>               (group (1+ (not (any "\0\t\n \"$&'();<=>\\`|#*?[]/"))))
>               (* (syntax whitespace)) "()")
>          1)))
> 
> HTH.

This bug was recently solved on the master branch, see commit
2ea091955036.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]