writing wx code in emacs - how to make easier?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Seweryn Kokot

    #1

    writing wx code in emacs - how to make easier?

    Hello,

    I would like to write wx code in emacs. For now I'm using python-mode
    but I hope they are stuff which make it easier. I mean some
    autocompletion or abbrevs of such things as wx.ALIGN* wx.EVT_* ...

    Any ideas?
    regards,
    SK

  • Diez B. Roggisch

    #2
    Re: writing wx code in emacs - how to make easier?

    I would like to write wx code in emacs. For now I'm using python-mode
    but I hope they are stuff which make it easier. I mean some
    autocompletion or abbrevs of such things as wx.ALIGN* wx.EVT_* ...
    Create a TAGS-file using e.g.

    find <path-to-wx-installation-type f | xargs -L1 etags --append

    Then use the emacs completion-feature M-/

    Diez

    Comment

    Working...