[BangPypers] BangPypers Digest, Vol 9, Issue 23

soorjith p soorjithp at gmail.com
Mon May 26 10:31:21 CEST 2008


yes system tray icon

On Sat, May 24, 2008 at 3:30 PM, <bangpypers-request at python.org> wrote:

> Send BangPypers mailing list submissions to
>        bangpypers at python.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        http://mail.python.org/mailman/listinfo/bangpypers
> or, via email, send a message with subject or body 'help' to
>        bangpypers-request at python.org
>
> You can reach the person managing the list at
>        bangpypers-owner at python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of BangPypers digest..."
>
>
> Today's Topics:
>
>   1. Re: Autocompletion in emacs (Nishith Nand)
>   2. Re: Autocompletion in emacs (Pradeep Gowda)
>   3. Re: Autocompletion in emacs (Biju Chacko)
>   4. Re: Autocompletion in emacs (Rohan Sharma)
>   5. Re: Autocompletion in emacs (Anand Balachandran Pillai)
>   6. Re: Tray Popup (Sridhar Ratnakumar)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Fri, 23 May 2008 05:07:57 -0700 (PDT)
> From: Nishith Nand <nishith_n at yahoo.com>
> Subject: Re: [BangPypers] Autocompletion in emacs
> To: Bangalore Python Users Group - India <bangpypers at python.org>
> Message-ID: <339054.99343.qm at web39705.mail.mud.yahoo.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> I am a python beginner. I found the auto completion feature that IDEs like
> SPE provide, wherein when you type, for example, "gtk.", it shows you the
> list of available function calls in a dropdown box, pretty useful.
> Especially when the function description is also shown as a tooltip. So, I
> was looking for something like that in emacs.
>
> Anand Balachandran Pillai <abpillai at gmail.com> wrote: Isn't M-x
> dabbrev-expand good enough ?
>
>
> On Fri, May 16, 2008 at 12:08 AM, Prashanth  wrote:
> > Hi nishith
> >
> > On Thu, May 15, 2008 at 11:52 PM, Nishith Nand  wrote:
> >> Hi!
> >>
> >>     Has anyone been able to get auto completion going in emacs python
> mode?
> >> I tried using rope and ropemacs but could not get it to load and run
> >> properly.
> >
> > I do use and work pretty well for me, you have to install pymacs, rope
> > and add python.el to your load path. Just follow the doc and it will
> > work perfectly. If it dint work please paste your .emacs and the exact
> > installation steps that you followed
> >
> >
> >
> > --
> > regards,
> >
> > Prashanth
> > http://munichlinux.blogspot.com
> > _______________________________________________
> > BangPypers mailing list
> > BangPypers at python.org
> > http://mail.python.org/mailman/listinfo/bangpypers
> >
>
>
>
> --
> -Anand
>
>
>
> -----------------------------------------------------------------------
>  The problem with the world is stupidity. Not saying there should be a
> capital punishment for stupidity, but why don't we just take the
> safety labels off of everything and let the problem solve itself?
>
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://mail.python.org/pipermail/bangpypers/attachments/20080523/9b56b864/attachment-0001.htm
> >
>
> ------------------------------
>
> Message: 2
> Date: Fri, 23 May 2008 08:14:55 -0400
> From: Pradeep Gowda <pradeep at btbytes.com>
> Subject: Re: [BangPypers] Autocompletion in emacs
> To: Bangalore Python Users Group - India <bangpypers at python.org>
> Message-ID: <47ADD5D4-B07B-46F1-847A-220D7F4D94C9 at btbytes.com>
> Content-Type: text/plain; charset="us-ascii"; Format="flowed";
>        DelSp="yes"
>
>
> On 23-May-08, at 8:07 AM, Nishith Nand wrote:
>
> > I am a python beginner. I found the auto completion feature that
> > IDEs like SPE provide, wherein when you type, for example, "gtk.",
> > it shows you the list of available function calls in a dropdown
> > box, pretty useful. Especially when the function description is
> > also shown as a tooltip. So, I was looking for something like that
> > in emacs.
> >
> > Anand Balachandran Pillai <abpillai at gmail.com> wrote:
> > Isn't M-x dabbrev-expand good enough ?
> >
> I think he wants to have "Intellisense" as in visual studio/eclipse
> etc.,
> I have not had much use for intellisense so far (python shell with
> help, __doc__ and dir() have been sufficient).
> my attempt at using rope emacs, pymacs has not worked. Will give it a
> shot again.
>
>
> But, to continue with Anand's suggestion, I found yasnippet http://
> code.google.com/p/yasnippet to be a great extension for textmate like
> snippet features.
> One types def and <TAB> and the snippets expands to
> def fn():
>    '''
>    '''
> with subsequent <TAB> taking you to the right places.
>
>
>
>
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://mail.python.org/pipermail/bangpypers/attachments/20080523/1b6d47da/attachment-0001.htm
> >
>
> ------------------------------
>
> Message: 3
> Date: Fri, 23 May 2008 17:51:59 +0530
> From: Biju Chacko <botsie at nixcartel.org>
> Subject: Re: [BangPypers] Autocompletion in emacs
> To: Bangalore Python Users Group - India <bangpypers at python.org>
> Message-ID: <4836B6E7.8070209 at nixcartel.org>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Pradeep Gowda wrote:
> >
> > On 23-May-08, at 8:07 AM, Nishith Nand wrote:
> >
> >> I am a python beginner. I found the auto completion feature that IDEs
> >> like SPE provide, wherein when you type, for example, "gtk.", it shows
> >> you the list of available function calls in a dropdown box, pretty
> >> useful. Especially when the function description is also shown as a
> >> tooltip. So, I was looking for something like that in emacs.
> >>
> >> */Anand Balachandran Pillai <abpillai at gmail.com
> >> <mailto:abpillai at gmail.com>>/* wrote:
> >>
> >>     Isn't M-x dabbrev-expand good enough ?
> >>
> > I think he wants to have "Intellisense" as in visual studio/eclipse etc.,
> > I have not had much use for intellisense so far (python shell with help,
> > __doc__ and dir() have been sufficient).
> > my attempt at using rope emacs, pymacs has not worked. Will give it a
> > shot again.
>
> Use Omnicomplete in vim -- works very well.
>
> -- b
>
>
> ------------------------------
>
> Message: 4
> Date: Fri, 23 May 2008 18:06:57 +0530
> From: "Rohan Sharma" <gates.plusplus at gmail.com>
> Subject: Re: [BangPypers] Autocompletion in emacs
> To: "Bangalore Python Users Group - India" <bangpypers at python.org>
> Message-ID:
>        <7dd811cb0805230536p5cbdbe04i1ba9a69038e97d25 at mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Biju: nice try, but that won't convert us.
>
> I've tried ropemacs, and M-/ does not seem to work for me while M-?
> seems to work well.
>
> On 5/23/08, Biju Chacko <botsie at nixcartel.org> wrote:
> > Pradeep Gowda wrote:
> >
> > >
> > > On 23-May-08, at 8:07 AM, Nishith Nand wrote:
> > >
> > >
> > > > I am a python beginner. I found the auto completion feature that IDEs
> > like SPE provide, wherein when you type, for example, "gtk.", it shows
> you
> > the list of available function calls in a dropdown box, pretty useful.
> > Especially when the function description is also shown as a tooltip. So,
> I
> > was looking for something like that in emacs.
> > > >
> > > > */Anand Balachandran Pillai <abpillai at gmail.com
> > <mailto:abpillai at gmail.com>>/* wrote:
> > > >
> > > >    Isn't M-x dabbrev-expand good enough ?
> > > >
> > > >
> > > I think he wants to have "Intellisense" as in visual studio/eclipse
> etc.,
> > > I have not had much use for intellisense so far (python shell with
> help,
> > __doc__ and dir() have been sufficient).
> > > my attempt at using rope emacs, pymacs has not worked. Will give it a
> shot
> > again.
> > >
> >
> >  Use Omnicomplete in vim -- works very well.
> >
> >  -- b
> >
> >  _______________________________________________
> >  BangPypers mailing list
> >  BangPypers at python.org
> >  http://mail.python.org/mailman/listinfo/bangpypers
> >
>
>
> ------------------------------
>
> Message: 5
> Date: Fri, 23 May 2008 18:11:19 +0530
> From: "Anand Balachandran Pillai" <abpillai at gmail.com>
> Subject: Re: [BangPypers] Autocompletion in emacs
> To: "Bangalore Python Users Group - India" <bangpypers at python.org>
> Message-ID:
>        <8548c5f30805230541p48724a9ci3b8cc0c0d8939548 at mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> On Fri, May 23, 2008 at 5:51 PM, Biju Chacko <botsie at nixcartel.org> wrote:
> > Pradeep Gowda wrote:
> >>
> >> On 23-May-08, at 8:07 AM, Nishith Nand wrote:
> >>
> >>> I am a python beginner. I found the auto completion feature that IDEs
> >>> like SPE provide, wherein when you type, for example, "gtk.", it shows
> you
> >>> the list of available function calls in a dropdown box, pretty useful.
> >>> Especially when the function description is also shown as a tooltip.
> So, I
> >>> was looking for something like that in emacs.
> >>>
> >>> */Anand Balachandran Pillai <abpillai at gmail.com
> >>> <mailto:abpillai at gmail.com>>/* wrote:
> >>>
> >>>    Isn't M-x dabbrev-expand good enough ?
> >>>
> >> I think he wants to have "Intellisense" as in visual studio/eclipse
> etc.,
> >> I have not had much use for intellisense so far (python shell with help,
> >> __doc__ and dir() have been sufficient).
> >> my attempt at using rope emacs, pymacs has not worked. Will give it a
> shot
> >> again.
>
> Being a language with dynamic (duck) types, how much will intellisense
> help ? Perhaps for a few basic types and names, which are inferrable
> from a static context, like "gtk".
>
> I have never found intellisense a useful feature, because most of the time
> I either know what I want or I prefer to do a "dir()" or "help()".
> >
> > Use Omnicomplete in vim -- works very well.
>
> Isn't the O.P talking about Emacs ? I think you might find CEDET useful.
> I have never tried it except for the speedbar, which I found pretty useful,
> sometime back, though I felt it was more of a distraction and turned it
> off.
>
> http://cedet.sourceforge.net/intellisense.shtml
> >
> > -- b
> > _______________________________________________
> > BangPypers mailing list
> > BangPypers at python.org
> > http://mail.python.org/mailman/listinfo/bangpypers
> >
>
>
>
> --
> -Anand
>
>
> ------------------------------
>
> Message: 6
> Date: Fri, 23 May 2008 20:10:22 -0700
> From: "Sridhar Ratnakumar" <sridhar.ratna at gmail.com>
> Subject: Re: [BangPypers] Tray Popup
> To: "Bangalore Python Users Group - India" <bangpypers at python.org>
> Message-ID:
>        <7c73a13a0805232010o36b6fb64p627496d31ebad223 at mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> On Wed, May 21, 2008 at 5:04 AM, soorjith p <soorjithp at gmail.com> wrote:
> > Hi,,,
> >
> > Anyone know how to create tray popup in pygtk?
>
> You mean system tray icon? -
>
>  http://www.pygtk.org/docs/pygtk/class-gtkstatusicon.html
>
>
> ------------------------------
>
> _______________________________________________
> BangPypers mailing list
> BangPypers at python.org
> http://mail.python.org/mailman/listinfo/bangpypers
>
>
> End of BangPypers Digest, Vol 9, Issue 23
> *****************************************
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/bangpypers/attachments/20080526/6f227a05/attachment.htm>


More information about the BangPypers mailing list