On Tuesday, 9 Feb 2016 at 15:43, orgmode wrote: > Hi, > > somehow pabbrev mode doesn't work anymore with org, since I use org > from elpa. > > after loading org, pabbrev is a minor mode, as indicated in the > modeline. > > However <tab> runs the command org-cycle instead of > pabbrev-expand-maybe.
In my case, <tab> seems to work although I do refer to it as [tab] in my initialisation code: #+begin_src emacs-lisp (require 'pabbrev) (setq pabbrev-idle-timer-verbose nil pabbrev-read-only-error nil) (define-key pabbrev-mode-map [tab] 'pabbrev-expand-maybe) (add-hook 'text-mode-hook (lambda () (pabbrev-mode))) #+end_src -- : Eric S Fraga (0xFFFCF67D), Emacs 25.0.90.1, Org release_8.3.3-535-g7213aa