Hi there,

I just installed sage 6.3.beta1 (via git) and sage_mode.

Unfortunately, tab completion is broken in emacs.

I'm using GNU Emacs 23.3.1 (x86_64-pc-linux-gnu, GTK+ Version 2.24.10).

When I press tab, the mouse pointer changes into the "please wait"
thingy, and nothing happens.  top doesn't show any activity.  I tried
edebug on

(defun sage-pcomplete-or-help ()
  "If point is after ?, describe preceding symbol; otherwise, pcomplete."
  (interactive)
  (if (not (looking-back "[^\\?]\\?"))
      (pcomplete)
    (save-excursion
      (backward-char)
      (when (python-current-word)
    (ipython-describe-symbol (python-current-word))))))

But I don't know where to go from here. (Of course, pcomplete is not
returning...)

Thanks for any help,

Martin

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To post to this group, send email to sage-support@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-support.
For more options, visit https://groups.google.com/d/optout.

Reply via email to