Re: ;;; anything.el --- open anything

2007-08-02 Thread Tassilo Horn
[EMAIL PROTECTED] [EMAIL PROTECTED] writes: Hi, Is there some reason why the following 2 bindings aren't part of anything-map: (define-key map (kbd M-v) 'anything-previous-page) (define-key map (kbd C-v) 'anything-next-page) The only reason is I saw no need, since it's very easy

Re: ;;; anything.el --- open anything

2007-08-02 Thread billclem
Hi Tamas, [EMAIL PROTECTED] [EMAIL PROTECTED] writes: On Aug 1, 10:06 pm, [EMAIL PROTECTED] wrote: Is there some reason why the following 2 bindings aren't part of anything-map: (define-key map (kbd M-v) 'anything-previous-page) (define-key map (kbd C-v) 'anything-next-page) The

Re: ;;; anything.el --- open anything

2007-08-02 Thread billclem
On Aug 2, 12:03 am, Tassilo Horn [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] [EMAIL PROTECTED] writes: Hi, Is there some reason why the following 2 bindings aren't part of anything-map: (define-key map (kbd M-v) 'anything-previous-page) (define-key map (kbd C-v)

Re: ;;; anything.el --- open anything

2007-08-02 Thread [EMAIL PROTECTED]
Hi, On Aug 2, 9:22 am, [EMAIL PROTECTED] wrote: Is M-v bound to something in iswitchb? I had a look but didn't see any binding in the iswitchb source. No, but the iswithcb integration bounds ESC (alas, hardcoded) and it overrides every Meta bindings. I'll take a look at the keybindings

Re: ;;; anything.el --- open anything

2007-08-02 Thread billclem
Tassilo Horn [EMAIL PROTECTED] writes: [EMAIL PROTECTED] writes: Now you've heard it. I'll add an option that will define standard keymaps before loading anything.el. What do you think should be its default? Standard keymaps would be more logical for new users whereas the anything bindings

Re: ;;; anything.el --- open anything

2007-08-02 Thread Tassilo Horn
[EMAIL PROTECTED] writes: Hi Bill, Great, that works nicely - thanks! Could you also add the following: (define-key map (kbd C-n) 'anything-next-line) (define-key map (kbd C-p) 'anything-previous-line) Sure. Will be done and uploaded in 5 minutes. Bye, Tassilo -- A child of

Re: ;;; anything.el --- open anything

2007-08-02 Thread billclem
Hi Tamas, [EMAIL PROTECTED] [EMAIL PROTECTED] writes: On Aug 2, 9:22 am, [EMAIL PROTECTED] wrote: Is M-v bound to something in iswitchb? I had a look but didn't see any binding in the iswitchb source. No, but the iswithcb integration bounds ESC (alas, hardcoded) and it overrides every Meta

Re: ;;; anything.el --- open anything

2007-08-02 Thread billclem
Tassilo Horn [EMAIL PROTECTED] writes: [EMAIL PROTECTED] writes: Great, that works nicely - thanks! Could you also add the following: (define-key map (kbd C-n) 'anything-next-line) (define-key map (kbd C-p) 'anything-previous-line) Sure. Will be done and uploaded in 5

Re: ;;; anything.el --- open anything

2007-08-02 Thread billclem
Hi Tassilo, After installing the latest code, I noticed that my custom anything- boring-file-regexp settings no longer seemed to work. I diff'ed the code and found that, as part of the last set of mods you made, you eliminated: ;;; Startup ;; Require anything after this file has been loaded.