[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] org-mode + icicles, avoid key binding redefinitions?
From: |
Memnon Anon |
Subject: |
Re: [O] org-mode + icicles, avoid key binding redefinitions? |
Date: |
Mon, 20 Jan 2014 02:34:16 +0000 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.1 (berkeley-unix) |
John Kitchin <address@hidden> writes:
> I got icicles via ELPA. The version from describe-package is
> Version: 20140118.1856. although in icicles.el it says ;; Version:
> 2013.07.23.
That is the current version.
Icicles isn't only icicle.el, Drew has actually a whole bunch of
elisp addon packages. Some I use, some I don't.
> Thanks for the tip about the binding variable. I am content with this
> in my init file:
>
> (require 'icicles)
> ;; reclaim C-c ' for org-mode
> (setq icicle-top-level-key-bindings
> (remove '("^C'" icicle-occur t) icicle-top-level-key-bindings))
>
> (icy-mode 1)
>
> which seems to get me back the org-binding.
Okay. As I said, I found this the only one conflicting with org (or
other packages). Just remember to require icicles at the very end of
your config, and everything should work.
> Is there a convenient way to update icicles from emacs?
I use icicles-install.el, which simply downloads files from emacswiki
and optionally byte compiles them. AFAIK, that is still the "main" repo,
I wasn't aware of the elpa package, good to know.
If you are interested, I changed some keybindings, see:
http://memnon.sdf-eu.org/emacs.org
in Section Icicles.
Essential for me are these changes to the icicle completion keymap:
;; C-o is next to C-i. S-Tab doesn't work on tty.
(define-key map "\C-o" 'icicle-apropos-complete) ; S-Tab
;; Narrowing is isearch in a sense. C-s in minibuffer is rarely
;; used. M-* is a horror to type for something I use so often.
(define-key map "\C-s" 'icicle-narrow-candidates) ; M-*
;; History search is isearch-backward chronologically:-)
(define-key map "\C-r" 'icicle-history) ; M-h
; again, tty friendly version.
(define-key map "\C-t" 'icicle-help-on-candidate) ; C-M-RET
With that 4 bindings adjusted, icicles is really fun to use.
Takes some time getting used to, but I think it is worth it.
Memnon
--
/-------------------------------------------\
| SDF and SDF-EU Public Access UNIX System |
| http://sdf.org || http://sdf-eu.org |
=============================================
- [O] org-mode + icicles, avoid key binding redefinitions?, John Kitchin, 2014/01/18
- Re: [O] org-mode + icicles, avoid key binding redefinitions?, Drew Adams, 2014/01/22
- Re: [O] org-mode + icicles, avoid key binding redefinitions?, Bastien, 2014/01/23
- Re: [O] org-mode + icicles, avoid key binding redefinitions?, Drew Adams, 2014/01/23
- Re: [O] org-mode + icicles, avoid key binding redefinitions?, Bastien, 2014/01/23
- Re: [O] org-mode + icicles, avoid key binding redefinitions?, Drew Adams, 2014/01/23
- Re: [O] org-mode + icicles, avoid key binding redefinitions?, Bastien, 2014/01/23
- Re: [O] org-mode + icicles, avoid key binding redefinitions?, Drew Adams, 2014/01/23
- Re: [O] org-mode + icicles, avoid key binding redefinitions?, Bastien, 2014/01/23
- Re: [O] org-mode + icicles, avoid key binding redefinitions?, Drew Adams, 2014/01/23