Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"ac-expand" does not work by default in emacs gtk #226

Closed
jbeja opened this issue Apr 4, 2013 · 4 comments
Closed

"ac-expand" does not work by default in emacs gtk #226

jbeja opened this issue Apr 4, 2013 · 4 comments

Comments

@jbeja
Copy link

jbeja commented Apr 4, 2013

When i try to expnad with TAB in terminal mode everything works fine , but when i try to do it in the graphical emacs the completation disappear as the pop up menu. I try to map "ac-expand" to RET and every works fine, i can't find a way to make it work with TAB.

@sunilw
Copy link

sunilw commented Jun 4, 2013

I also have this issue.

I had this issue in emacs 23. I managed to bypass it with the following code in my init file:

(defun complete-or-newline (arg)
(if (and
(or (bobp) (= ?w (char-syntax (char-before))))
(or (eobp) (not (= ?w (char-syntax (char-after))))))
(auto-complete)
(newline-and-indent)))

However, I've recently updated to emacs24. In emacs 24 the issue has returned and the above code snippet doesn't help.

@m2ym
Copy link
Contributor

m2ym commented Jul 7, 2013

Please tell me auto-complete version you are using.

@jbeja
Copy link
Author

jbeja commented Jul 7, 2013

1.3.1

2013/7/7 Tomohiro Matsuyama notifications@github.com

Please tell me auto-complete version you are using.


Reply to this email directly or view it on GitHubhttps://github.com//issues/226#issuecomment-20574237
.

@syohex
Copy link
Contributor

syohex commented Nov 19, 2013

@jbeja @sunilw I can't reproduce this problem. ac-expand works fine graphical mode and terminal mode.
Please show us your configuration and Emacs version and auto-complete version
if you still have this problem.

@jbeja jbeja closed this as completed Oct 14, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants