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

2007-08-31 Thread Michaël Cadilhac
Tassilo Horn [EMAIL PROTECTED] writes: [EMAIL PROTECTED] writes: Hi Bill, (defvar anything-locate-options (if (eq system-type 'darwin) '(locate) '(locate -i -r)) A list where the `car' is the name of the locat program

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

2007-08-31 Thread Tassilo Horn
[EMAIL PROTECTED] (Michaël Cadilhac) writes: Hi Michaël, (defvar anything-locate-options (if (eq system-type 'darwin) '(locate) '(locate -i -r)) A list where the `car' is the name of the locat program followed by options. The

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

2007-08-29 Thread Leo
On 2007-08-25 07:52 +0100, [EMAIL PROTECTED] wrote: I use Wikipedia a lot, so I made a source similar to Google Suggest for Wikipedia titles. Here it is if someone's interested: I wonder if anyone has tested anything.el under the unicode 2 branch. For me it causes freezes from time to time.

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

2007-08-25 Thread [EMAIL PROTECTED]
I use Wikipedia a lot, so I made a source similar to Google Suggest for Wikipedia titles. Here it is if someone's interested: (defvar anything-wikipedia-title-lookup-program nil The program is called with one argument and it should return matching titles from Wikipedia.) (setq

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

2007-08-24 Thread Tassilo Horn
Bill Clementson [EMAIL PROTECTED] writes: Hi Bill, By the way, another thing that used to bug me was having the woman initialization done when I didn't configure the man pages source. In the end, I got around it by defining the vars in my .emacs file before the anything-config require - eg:

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

2007-08-24 Thread Bill Clementson
Hi Tassilo, Tassilo Horn [EMAIL PROTECTED] writes: Bill Clementson [EMAIL PROTECTED] writes: By the way, another thing that used to bug me was having the woman initialization done when I didn't configure the man pages source. In the end, I got around it by defining the vars in my .emacs file

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

2007-08-24 Thread Tassilo Horn
Bill Clementson [EMAIL PROTECTED] writes: Hi Bill, Or do you have a better idea? Something like the following should work: (defvar anything-c-man-pages nil All man pages on system) (defvar anything-c-source-man-pages `((name . Manual Pages) (candidates . (lambda ()

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

2007-08-24 Thread Bill Clementson
Hi Tamas, [EMAIL PROTECTED] [EMAIL PROTECTED] writes: You can try setting anything-source-filter manually and start Anything after that. It doesn't work if an anything buffer doesn't exist. I fixed anything.el, so variable anything-source-filters can have an initial value when Anyhting

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

2007-08-24 Thread Mark Plaksin
Bill Clementson [EMAIL PROTECTED] writes: Hi Tamas/Tassilo, Yes, Hi :) anything and anything-config are awesome! Thanks! [EMAIL PROTECTED] [EMAIL PROTECTED] writes: Hi,, On Aug 23, 9:58 pm, Tassilo Horn [EMAIL PROTECTED] wrote: Oh, while I was typing those lines I realized that it's

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

2007-08-23 Thread [EMAIL PROTECTED]
Here's a Google Suggest source. Requires the latest anything.el. (setq anything-sources '(((name . Google Suggest) (candidates . (lambda () (let ((suggestions (anything-google-suggest-fetch anything- input))) (if (some (lambda (suggestion)

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

2007-08-23 Thread [EMAIL PROTECTED]
On Aug 23, 6:54 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Here's a Google Suggest source. Requires the latest anything.el. There may be a few linebreak errors in it due to Google Groups. Sorry about that. ___ gnu-emacs-sources mailing list

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

2007-08-23 Thread [EMAIL PROTECTED]
Hi,, On Aug 23, 9:58 pm, Tassilo Horn [EMAIL PROTECTED] wrote: Oh, while I was typing those lines I realized that it's possible right now! Add every and each source to anything-sources and fire up anything with (defun th-anything () (interactive) (anything-set-source-filter

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

2007-08-23 Thread Bill Clementson
Hi Tamas/Tassilo, [EMAIL PROTECTED] [EMAIL PROTECTED] writes: Hi,, On Aug 23, 9:58 pm, Tassilo Horn [EMAIL PROTECTED] wrote: Oh, while I was typing those lines I realized that it's possible right now! Add every and each source to anything-sources and fire up anything with (defun

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

2007-08-20 Thread Tassilo Horn
[EMAIL PROTECTED] writes: Hi Bill, Do you use the latest version of anything-config? Tassilo fixed a bug in it shortly after he uploaded the new version. There was exactly the same bug in the action transformer, too. I didn't return the unmodified actions, if the special entry was not

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

2007-08-20 Thread billclem
Hi Tassilo, On Aug 19, 11:30 pm, Tassilo Horn [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] writes: Do you use the latest version of anything-config? Tassilo fixed a bug in it shortly after he uploaded the new version. There was exactly the same bug in the action transformer, too. I didn't

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

2007-08-20 Thread Bill Clementson
- Bill ___ gnu-emacs-sources mailing list gnu-emacs-sources@gnu.org http://lists.gnu.org/mailman/listinfo/gnu-emacs-sources

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

2007-08-19 Thread [EMAIL PROTECTED]
On Aug 19, 4:33 am, [EMAIL PROTECTED] wrote: Are things still in a state of flux and I should hold off taking the more recent code or am I the only one experiencing these problems with the latest releases? Hi Bill, Things shouldn't be in a state fof flux. In fact, with the last major code

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

2007-08-19 Thread [EMAIL PROTECTED]
On Aug 19, 6:48 am, Xavier Maillard [EMAIL PROTECTED] wrote: Hill Bill, [EMAIL PROTECTED] wrote: Are things still in a state of flux and I should hold off taking the more recent code or am I the only one experiencing these problems with the latest releases? I also experience problems.

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

2007-08-19 Thread sunway
maybe a bug of anything.el: when i use anything-isearch , the menu bar will disapear. -- signature: The trouble with the rat-race is that even if you win, you're still a rat. -- Lily Tomlin ___ gnu-emacs-sources mailing list

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

2007-08-19 Thread Xavier Maillard
Hello Tamas, [EMAIL PROTECTED] [EMAIL PROTECTED] writes: anything-isearch is only a toy feature I whipped up quickly, so it's not tested extensively. Drew Adams has a patch which makes it usable, but I didn't yet have time to integrate it, so yes, isearch in the official version is not very

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

2007-08-19 Thread Xavier Maillard
[EMAIL PROTECTED] wrote: Let me know what you think. I just love the idea and the way it is currently working. I will try to hack on it too to add my own sources. By the way, do you thing it is doable to add a contact just by entering his name. Say for example, I am typing this after

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

2007-08-19 Thread Tassilo Horn
Tassilo Horn [EMAIL PROTECTED] writes: Hi, Tassilo's solution is good, but I also fixed anything.el, so that filtered candidate transformer is run also if the candidate list is empty. This is is alternative solution. So with the filtered-candidate-transformer attribute you can add an Add

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

2007-08-19 Thread billclem
Hi Tassilo, On Aug 19, 2:55 am, Tassilo Horn [EMAIL PROTECTED] wrote: bugs one and three should be fixed now. For bug two, please tell me exactly how you can reproduce it. And do `M-x toggle-debug-on-error' before. All 3 bugs are now fixed - Thanks! However, I came across a new one. In the

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

2007-08-19 Thread [EMAIL PROTECTED]
On Aug 19, 8:40 pm, [EMAIL PROTECTED] wrote: Hi Tassilo, On Aug 19, 2:55 am, Tassilo Horn [EMAIL PROTECTED] wrote: bugs one and three should be fixed now. For bug two, please tell me exactly how you can reproduce it. And do `M-x toggle-debug-on-error' before. All 3 bugs are now fixed

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

2007-08-19 Thread billclem
Hi Tamas/Tassilo, On Aug 19, 9:39 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On Aug 19, 4:04 pm, Xavier Maillard [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Let me know what you think. I just love the idea and the way it is currently working. I will try to hack on it too to

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

2007-08-19 Thread billclem
On Aug 19, 9:46 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On Aug 20, 12:47 am, [EMAIL PROTECTED] wrote: Hi Tamas/Tassilo, On Aug 19, 9:39 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On Aug 19, 4:04 pm, Xavier Maillard [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote:

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

2007-08-18 Thread Xavier Maillard
Mathias Dahl wrote: Mathias Dahl [EMAIL PROTECTED] writes: Add this to your anything sources: ... ((name . Jabber Contacts) (candidates . (lambda () (mapcar (lambda (x) (car x)) (my-jabber-list-contacts

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

2007-08-18 Thread billclem
Hi Tassilo Tamas, I've been traveling the past week so have only just downloaded the latest versions of anything.el (revision 66) and anything-config.el (revision 34). I see that there have been some structural changes as well as some new functionality added. Unfortunately, a lot of things seem

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

2007-08-18 Thread Xavier Maillard
Hill Bill, [EMAIL PROTECTED] wrote: Are things still in a state of flux and I should hold off taking the more recent code or am I the only one experiencing these problems with the latest releases? I also experience problems. Mine come from anything-isearch which just makes my emacs

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

2007-08-13 Thread Tassilo Horn
[EMAIL PROTECTED] [EMAIL PROTECTED] writes: Hi Tamas, One more unconventional example. :) Indeed. It's an on-the-fly expression evaluator. You type the list expression and it shows the result instantly. (setq anything-sources '(((name . Calculation Result)

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

2007-08-13 Thread [EMAIL PROTECTED]
On Aug 13, 3:29 pm, Tassilo Horn [EMAIL PROTECTED] wrote: And I added an on-the-fly math expression evaluator using `calc-eval' as Calculation Result source. calc-eval! That was I was looking for, only I could not find it. I only posted it as an inspirational example, but thanks for adding

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

2007-08-10 Thread [EMAIL PROTECTED]
Here's a little idea to prove Anything is not just about selecting stuff. :) I whipped up a source for quickly appending notes to a file. Some may find it useful: (setq anything-sources `(((name . Notes) (candidates ,(list Add new note)) (match

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

2007-08-10 Thread [EMAIL PROTECTED]
On Aug 10, 1:06 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: It's not really readable, so here's the second attempt: One more unconventional example. :) It's an on-the-fly expression evaluator. You type the list expression and it shows the result instantly. (setq anything-sources

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

2007-08-07 Thread Tassilo Horn
[EMAIL PROTECTED] [EMAIL PROTECTED] writes: Hi Tamas, So it's an adaptive candidate sorter which learns which candidates you select frequently and makes them more accessible for you. Currently, the history of selections is stored and used per source, so for example a different entry is

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

2007-08-07 Thread [EMAIL PROTECTED]
On Aug 7, 8:55 am, Tassilo Horn [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] [EMAIL PROTECTED] writes: Hi Tamas, So it's an adaptive candidate sorter which learns which candidates you select frequently and makes them more accessible for you. Currently, the history of selections is stored

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

2007-08-07 Thread Tassilo Horn
[EMAIL PROTECTED] [EMAIL PROTECTED] writes: I think that would make sense. But how would you go with sources that don't have a type field? I plan to generalize source attributes, so that type would be a fallback for those attributes which are not specified by the source. So, for example,

RE: ;;; anything.el --- open anything

2007-08-06 Thread Drew Adams
2. The call to fit-frame in anything-maybe-fit-frame passes in 4 params. The 4th parameter to fit-frame was only added on July 21, 2007. Therefore, this causes breakage for anyone using a released version of emacs or a CVS emacs that is not pretty recent. Since the params are optional, you

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

2007-08-06 Thread [EMAIL PROTECTED]
On Aug 6, 7:33 pm, [EMAIL PROTECTED] wrote: 2. The call to fit-frame in anything-maybe-fit-frame passes in 4 params. The 4th parameter to fit-frame was only added on July 21, 2007. Therefore, this causes breakage for anyone using a released version of emacs or a CVS emacs that is not pretty

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

2007-08-06 Thread billclem
[EMAIL PROTECTED] [EMAIL PROTECTED] writes: On Aug 6, 7:33 pm, [EMAIL PROTECTED] wrote: 2. The call to fit-frame in anything-maybe-fit-frame passes in 4 params. The 4th parameter to fit-frame was only added on July 21, 2007. Therefore, this causes breakage for anyone using a released

RE: ;;; anything.el --- open anything

2007-08-06 Thread Drew Adams
Another problem: 3. If I use the fit-frame-inhibit-fitting-flag equivalent (setq inhibit-fit-frame-flag nil), that prevents the fit-frame code from executing; however, the modify-frame-parameters call in anything-maybe- fit-frame still gets executed (which results in the existing frame being

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

2007-08-06 Thread Bill Clementson
On 8/6/07, Drew Adams [EMAIL PROTECTED] wrote: In sum, either update `fit-frame.el' or remove it from your `load-path'. Anything should work fine in either case. You're correct (my mistake) - fit-frame is not part of GNU Emacs. However, it is bundled with Aquamacs Emacs (the emacs that

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

2007-08-06 Thread [EMAIL PROTECTED]
On Aug 3, 3:21 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: So it's an adaptive candidate sorter which learns which candidates you select frequently and makes them more accessible for you. Currently, the history of selections is stored and used per source, so for example a different entry

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

2007-08-06 Thread billclem
On Aug 6, 1:37 pm, Bill Clementson [EMAIL PROTECTED] wrote: On 8/6/07, Drew Adams [EMAIL PROTECTED] wrote: In sum, either update `fit-frame.el' or remove it from your `load-path'. Anything should work fine in either case. You're correct (my mistake) - fit-frame is not part of GNU

RE: ;;; anything.el --- open anything

2007-08-06 Thread Drew Adams
Oh, just one minor point (and this is for Tamas) - issue #1 still hasn't been fixed: 1. (minor) There is a space at the beginning of (defun anything- maybe-fit-frame () that should be removed. It's not just cosmetic (or me being pedantic) - several elisp functions assume defun's start

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

2007-08-06 Thread Bill Clementson
On 8/6/07, Drew Adams [EMAIL PROTECTED] wrote: Oh, just one minor point (and this is for Tamas) - issue #1 still hasn't been fixed: 1. (minor) There is a space at the beginning of (defun anything- maybe-fit-frame () that should be removed. It's not just cosmetic (or me being

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

2007-08-06 Thread billclem
On Aug 6, 12:44 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On Aug 3, 3:21 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: So it's an adaptive candidate sorter which learns which candidates you select frequently and makes them more accessible for you. Currently, the history of

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

2007-08-06 Thread billclem
On Aug 6, 9:48 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On Aug 7, 12:35 am, Bill Clementson [EMAIL PROTECTED] wrote: Yes, but it isn't fixed in the update that Tamas posted - that is why I mentioned it again and indicated that this is for Tamas. It's fixed now. Thanks. - Bill

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

2007-08-06 Thread [EMAIL PROTECTED]
On Aug 7, 7:06 am, [EMAIL PROTECTED] wrote: Sounds good; however, I don't see the changes reflected in anything- adaptive yet (http://www.emacswiki.org/cgi-bin/wiki? action=history;id=anything-adaptive.el). Are you still working on them? No, I haven't even started yet. :) It was just the

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

2007-08-05 Thread [EMAIL PROTECTED]
On Aug 5, 3:31 pm, Richard Stallman [EMAIL PROTECTED] wrote: Can't you do that with a defadvice? I was tempted to add a hook for adaptive sorting too, but I decided to use advice instead, because I don't want to add stuff which only serves a particular purpose and can be

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

2007-08-04 Thread [EMAIL PROTECTED]
On Aug 4, 3:51 pm, Tassilo Horn [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] [EMAIL PROTECTED] writes: He Tamas, BTW, shouldn't all symbols (except those overwriting anything.el values) in anything-config be prefixed with anything-config- instead of simply anything- ? If they had been

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

2007-08-04 Thread [EMAIL PROTECTED]
Hi, On Aug 4, 4:48 pm, Tassilo Horn [EMAIL PROTECTED] wrote: Another thing: Could you provide a hook that is run after anything-pattern changes but before the candidates are calculated? Can't you do that with a defadvice? I was tempted to add a hook for adaptive sorting too, but I decided to

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

2007-08-04 Thread Tassilo Horn
[EMAIL PROTECTED] [EMAIL PROTECTED] writes: Hi Tamas, Can't you do that with a defadvice? Sure I can. Bye, Tassilo ___ gnu-emacs-sources mailing list gnu-emacs-sources@gnu.org http://lists.gnu.org/mailman/listinfo/gnu-emacs-sources

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

2007-08-03 Thread [EMAIL PROTECTED]
Here's a demontstration for the option (anything-filtered-candidate- transformers) added today. I didn't want to stuff into anything.el, so I post it here. Maybe it should go to anything-config.el. It's a candidate sorter which places those candidates first in the list of matches which you

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

2007-08-03 Thread billclem
Hi Tassilo, Tassilo Horn [EMAIL PROTECTED] writes: [EMAIL PROTECTED] writes: Restoring the eval-after-load statement at the top of the code and eliminating the (require 'anything) at the bottom of the code fixes things. But with the eval-after-load anything.el was loaded before

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

2007-08-03 Thread billclem
Hi Tamas, On Aug 3, 6:21 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Here's a demontstration for the option (anything-filtered-candidate- transformers) added today. I didn't want to stuff into anything.el, so I post it here. Maybe it should go to anything-config.el. It's a candidate

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

2007-08-03 Thread [EMAIL PROTECTED]
On Aug 3, 7:10 pm, [EMAIL PROTECTED] wrote: Hi Tamas, On Aug 3, 6:21 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Here's a demontstration for the option (anything-filtered-candidate- transformers) added today. I didn't want to stuff into anything.el, so I post it here. Maybe it

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

2007-08-03 Thread [EMAIL PROTECTED]
On Aug 3, 7:38 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On Aug 3, 7:10 pm, [EMAIL PROTECTED] wrote: Hi Tamas, On Aug 3, 6:21 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Here's a demontstration for the option (anything-filtered-candidate- transformers) added today. I

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

2007-08-03 Thread [EMAIL PROTECTED]
On Aug 3, 6:47 pm, [EMAIL PROTECTED] wrote: 2. If you load anything.el after anything-config.el, Tamas will need to wrap his defun's with a check to see whether a function is already defined and only do the defun if the function hasn't already been defined. I plan to remove all the example

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

2007-08-03 Thread [EMAIL PROTECTED]
Hi, On Aug 3, 10:08 pm, [EMAIL PROTECTED] wrote: The last file I selected with a search pattern of anyt was anything.el (with a count of 2 times using that pattern) but the file I've selected most frequently is anything-config.el (with a count of 4 times using that pattern) so I would have

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

2007-08-03 Thread billclem
Hi Tamas, On Aug 3, 10:38 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I tried it and it didn't work for me either. :) Aha, very sneaky way to check whether anyone had tried out the code! ;-) I left a bug in it which I now fixed. It should work now. I uploaded it to Emacs Wiki

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

2007-08-03 Thread billclem
On Aug 3, 1:31 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, On Aug 3, 10:08 pm, [EMAIL PROTECTED] wrote: The last file I selected with a search pattern of anyt was anything.el (with a count of 2 times using that pattern) but the file I've selected most frequently is

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

2007-08-03 Thread Tassilo Horn
[EMAIL PROTECTED] [EMAIL PROTECTED] writes: Hi all, the adaptive sorting thingy sounds great and of course I'm happy to include it. But this weekend is full of other tasks and I'm not even sure if I have any network connection till monday, so this probably has to wait a bit. I plan to remove

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

2007-08-03 Thread [EMAIL PROTECTED]
On Aug 3, 11:15 pm, [EMAIL PROTECTED] wrote: With some limited testing, anything now seems to be returning things according to the history values. Glad it's working. Do you like it? :) However, if anything-filtered-candidate-transformers is nil, there shouldn't be any history written. If

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

2007-08-03 Thread [EMAIL PROTECTED]
Hi, On Aug 3, 11:28 pm, Tassilo Horn [EMAIL PROTECTED] wrote: So if you remove the duplicate functions that would solve all problems for us. Could you please copy functions that are needed by `anything-sources', e.g. `anything-buffer-list' from anything-config? The only function was

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.

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

2007-08-01 Thread billclem
Hi Tamas, 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) I would also like to have the default bindings for C-n C-p in anything-map; however, I guess

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

2007-08-01 Thread [EMAIL PROTECTED]
On Aug 1, 10:06 pm, [EMAIL PROTECTED] wrote: Hi Tamas, 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

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

2007-07-31 Thread [EMAIL PROTECTED]
On Jul 31, 6:56 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, On Jul 31, 12:33 am, [EMAIL PROTECTED] wrote: However, another problem (in addition to the ones you mentioned) with doing the exclusions in a candidate transformer function is that the anything-candidate-number-limit has

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

2007-07-31 Thread billclem
On Jul 31, 6:41 am, Tassilo Horn [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] writes: Hi Bill, (setq anything-transform-files-excludes (list /Applications/cache/ /.backups /.svn

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

2007-07-31 Thread Tassilo Horn
[EMAIL PROTECTED] writes: Hi Bill, Hey, that's nice. I'll integrate it in anything-config.el, but I'll modify it a bit to have the same interface as the action transformers. Done! That would be nice - it would keep the action and candidate transform definitions consistent. Yep. If you

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

2007-07-31 Thread billclem
Hi Tassilo, Tassilo Horn [EMAIL PROTECTED] writes: [EMAIL PROTECTED] writes: Hey, that's nice. I'll integrate it in anything-config.el, but I'll modify it a bit to have the same interface as the action transformers. Done! Yay! Looks nice! That would be nice - it would keep the action and

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

2007-07-30 Thread billclem
Hi Tamas/Tassilo, Tassilo Horn [EMAIL PROTECTED] writes: [EMAIL PROTECTED] writes: Hi Bill, (defvar anything-locate-options (if (eq system-type 'darwin) '(locate) '(locate -i -r)) A list where the `car' is the name of the

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

2007-07-30 Thread billclem
Hi Tamas, [EMAIL PROTECTED] [EMAIL PROTECTED] writes: On Jul 30, 9:45 pm, [EMAIL PROTECTED] wrote: It might be better to have the exclusions done at a lower level (e.g. - somewhere like anything-insert-match) so that the exclusions are done only once a candidate is ready to be put into the

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

2007-07-30 Thread [EMAIL PROTECTED]
Hi, On Jul 31, 12:33 am, [EMAIL PROTECTED] wrote: However, another problem (in addition to the ones you mentioned) with doing the exclusions in a candidate transformer function is that the anything-candidate-number-limit has already been checked prior to the transformer function being

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

2007-07-28 Thread Tassilo Horn
[EMAIL PROTECTED] writes: Hi Bill, It looks like anything-source-imenu was the cause of problems #1, #2, #3. A #4 issue that occurs with the anything-source-imenu code in anything-config.el is that it causes anything to not work if you call anything in a dired buffer. I've commented out the

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

2007-07-28 Thread billclem
Hi Tassilo, On Jul 28, 1:32 am, Tassilo Horn [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] writes: It looks like anything-source-imenu was the cause of problems #1, #2, #3. A #4 issue that occurs with the anything-source-imenu code in anything-config.el is that it causes anything to not work

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

2007-07-28 Thread Tassilo Horn
[EMAIL PROTECTED] writes: Hi Bill, (defvar anything-locate-options (if (eq system-type 'darwin) '(locate) '(locate -i -r)) A list where the `car' is the name of the locat program followed by options. The search pattern

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

2007-07-27 Thread Tassilo Horn
[EMAIL PROTECTED] writes: Hi Bill, (defmacro anything-add-to-actions (var action) `(setq ,var (cons (car ,var) (append (cdr ,var) (list ',action) Yep, that looks nice. I made some little changes, so that multiple evaluations don't

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

2007-07-27 Thread Tassilo Horn
Hi, now there are the variables anything-action-transformers-file anything-action-transformers-buffer anything-action-transformers-function ... which should be lists of functions with parameters ACTIONS (the list of actions so far) and CANDIDATE (the selected file / buffer /

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

2007-07-27 Thread billclem
Hi Tassilo, On Jul 27, 4:12 am, Tassilo Horn [EMAIL PROTECTED] wrote: now there are the variables anything-action-transformers-file anything-action-transformers-buffer anything-action-transformers-function ... which should be lists of functions with parameters ACTIONS (the

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

2007-07-27 Thread billclem
On Jul 27, 11:31 am, [EMAIL PROTECTED] wrote: Hi Tassilo, On Jul 27, 4:12 am, Tassilo Horn [EMAIL PROTECTED] wrote: now there are the variables anything-action-transformers-file anything-action-transformers-buffer anything-action-transformers-function ... which

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

2007-07-25 Thread Tassilo Horn
[EMAIL PROTECTED] writes: Hi Bill, Actually, the macro should be: (defmacro anything-add-to-actions (var action) `(setq ,var (cons (car ,var) (append (cdr ,var) (list ',action) Yep, that looks nice. I made some little changes,

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

2007-07-25 Thread Holger Schauer
On 5074 September 1993, [EMAIL PROTECTED] wrote: Anything doesn't work on XEmacs (not yet at least). An XEmacs user is trying to get it working, but as of now there are showstopper problems, so it's not really usable. FWIW, I have it working here on XEmacs 21.5.twenty-something. A short list

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

2007-07-25 Thread rubikitch
From: [EMAIL PROTECTED] [EMAIL PROTECTED] Subject: ;;; anything.el --- open anything Date: Fri, 22 Jun 2007 04:38:35 -0700 This package provides a single command (M-x anything) and as I type the results are shown in a structured format. No need to tell emacs first I want to switch to a buffer

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

2007-07-24 Thread Tassilo Horn
Hi Tamas, there's a little bug in anything.el. Sometimes when I invoke it several times it'll error: Debugger entered--Lisp error: (cl-assertion-failed header-pos) signal(cl-assertion-failed (header-pos)) (or header-pos (signal (quote cl-assertion-failed) (list ...))) (progn (or header-pos

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

2007-07-24 Thread billclem
Tassilo Horn [EMAIL PROTECTED] writes: [EMAIL PROTECTED] [EMAIL PROTECTED] writes: That's nice, really nice. I'll have a lot of fun adding stuff to anything-config.el. BTW, don't you want to be in charge of anything-config.el? Yes, why not? I'll create a emacswiki page for anything.el

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

2007-07-24 Thread [EMAIL PROTECTED]
On Jul 24, 10:38 am, Tassilo Horn [EMAIL PROTECTED] wrote: Hi Tamas, there's a little bug in anything.el. Sometimes when I invoke it several times it'll error: Debugger entered--Lisp error: (cl-assertion-failed header-pos) signal(cl-assertion-failed (header-pos)) Hi, I think it happens

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

2007-07-24 Thread [EMAIL PROTECTED]
On Jul 24, 10:53 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I think it happens only if your start anything when then *anything* buffer is current. Did you try it like this too? Hmm, my bug doesn't occur here anymore, so your bug is about something else. I can only do something with it if

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

2007-07-24 Thread Tassilo Horn
[EMAIL PROTECTED] [EMAIL PROTECTED] writes: Hi Tamas, I think it happens only if your start anything when then *anything* buffer is current. Did you try it like this too? Now I did so and it worked as expected. Hmm, my bug doesn't occur here anymore, so your bug is about something else. I

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

2007-07-24 Thread Tassilo Horn
[EMAIL PROTECTED] writes: Hi Bill, Where is the repository for anything-config.el? I found an emacs wiki page - is that it? The page on emacswiki that lists all this is http://www.emacswiki.org/cgi-bin/wiki/Anything Also, what is the best forum for posting mods to anything-config.el?

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

2007-07-24 Thread billclem
Hi Tassilo, Tassilo Horn [EMAIL PROTECTED] writes: [EMAIL PROTECTED] writes: Where is the repository for anything-config.el? I found an emacs wiki page - is that it? The page on emacswiki that lists all this is http://www.emacswiki.org/cgi-bin/wiki/Anything Ok, thanks. Also, what is

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

2007-07-23 Thread Tassilo Horn
Vagn Johansen [EMAIL PROTECTED] writes: Hi Vagn, Should I add this source to anything-config.el? Yes. Call it anything-source-mac-spotlight instead. Few people know about mdfind. I only discovered it by accident. Ok. Also I think you should remove the Delete File action in

  1   2   >