Re: [Orgmode] org-bookmark.el

2008-02-29 Thread Bastien
Tokuya Kameshima <[EMAIL PROTECTED]> writes: > Bastien, thanks for changing the code. I totally agree with your > suggestion. The new code is much better! Ok, good. > I also changed the code a little bit as in the attached. The variable > `bookmark-alist' seems to be an internal variable, so

Re: [Orgmode] org-bookmark.el

2008-02-29 Thread Tokuya Kameshima
Hi, Bastien, thanks for changing the code. I totally agree with your suggestion. The new code is much better! I also changed the code a little bit as in the attached. The variable `bookmark-alist' seems to be an internal variable, so I updated it not to use the variable. Please update the git

Re: [Orgmode] org-bookmark.el

2008-02-28 Thread Bastien Guerry
Phil Jackson <[EMAIL PROTECTED]> writes: > Bastien <[EMAIL PROTECTED]> writes: > >>> I don't think it needs to go into org.el does it? When org-bookmark gets >>> it's turn upon `org-store-link' it should check a variable called, for >>> example, `org-bookmark-check-bookmarks-first' and then if tha

Re: [Orgmode] org-bookmark.el

2008-02-28 Thread Phil Jackson
Bastien <[EMAIL PROTECTED]> writes: >> I don't think it needs to go into org.el does it? When org-bookmark gets >> it's turn upon `org-store-link' it should check a variable called, for >> example, `org-bookmark-check-bookmarks-first' and then if that's non-nil >> check major-mode and act accordin

Re: [Orgmode] org-bookmark.el

2008-02-28 Thread Bastien
Phil Jackson <[EMAIL PROTECTED]> writes: > Bastien <[EMAIL PROTECTED]> writes: > >> In any case, this should be implemented in org.el directly. When >> `org-store-link' checks whether we are in dired-mode or in a buffer >> visiting a file, then it would also check whether 'org-bookmark is >> prov

Re: [Orgmode] org-bookmark.el

2008-02-28 Thread Phil Jackson
Bastien <[EMAIL PROTECTED]> writes: > In any case, this should be implemented in org.el directly. When > `org-store-link' checks whether we are in dired-mode or in a buffer > visiting a file, then it would also check whether 'org-bookmark is > provided (with (featurep 'org-bookmark)...) and act a

Re: [Orgmode] org-bookmark.el

2008-02-28 Thread Bastien
Tokuya Kameshima <[EMAIL PROTECTED]> writes: > Thank you for your comments and suggestions. I would appreciate if > you add the code to the distribution. Done, thanks! >> On top of this, when `org-bookmark' is in use, storing a link while >> visiting a file (or while in dired-mode) could first

Re: [Orgmode] org-bookmark.el

2008-02-28 Thread Tokuya Kameshima
Carstens and Bastien, Thank you for your comments and suggestions. I would appreciate if you add the code to the distribution. > On top of this, when `org-bookmark' is in use, storing a link while > visiting a file (or while in dired-mode) could first check if the file > at point is bookmarked:

Re: [Orgmode] org-bookmark.el

2008-02-27 Thread Bastien Guerry
Tokuya Kameshima <[EMAIL PROTECTED]> writes: > I wrote an emacs code, org-bookmark.el, which supports for orgmode > links to Emacs bookmarks. You can store the links in the Bookmark > List buffer by running M-x org-store-link. Great, thanks. > Not sure it's useful, but I regularly uses this boo

Re: [Orgmode] org-bookmark.el

2008-02-27 Thread Carsten Dominik
Hi Tokuya, this is nice, do you want me to add this to our distribution? - Carsten On Feb 27, 2008, at 4:39 PM, Tokuya Kameshima wrote: Hi, I wrote an emacs code, org-bookmark.el, which supports for orgmode links to Emacs bookmarks. You can store the links in the Bookmark List buffer by run

[Orgmode] org-bookmark.el

2008-02-27 Thread Tokuya Kameshima
Hi, I wrote an emacs code, org-bookmark.el, which supports for orgmode links to Emacs bookmarks. You can store the links in the Bookmark List buffer by running M-x org-store-link. Not sure it's useful, but I regularly uses this bookmark links to follow daily or weekly changing file links. Thank