From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Hugo Schmitt" Subject: Remember and then refile Date: Mon, 7 Jan 2008 13:05:27 -0300 Message-ID: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1466113516==" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBuTn-0008Me-0x for emacs-orgmode@gnu.org; Mon, 07 Jan 2008 11:05:35 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBuTi-0008Ii-8A for emacs-orgmode@gnu.org; Mon, 07 Jan 2008 11:05:34 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBuTi-0008Ia-3e for emacs-orgmode@gnu.org; Mon, 07 Jan 2008 11:05:30 -0500 Received: from nz-out-0506.google.com ([64.233.162.238]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JBuTh-0002eY-PV for emacs-orgmode@gnu.org; Mon, 07 Jan 2008 11:05:29 -0500 Received: by nz-out-0506.google.com with SMTP id f1so1569419nzc.21 for ; Mon, 07 Jan 2008 08:05:28 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --===============1466113516== Content-Type: multipart/alternative; boundary="----=_Part_27328_17573094.1199721927040" ------=_Part_27328_17573094.1199721927040 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello everyone! I know Remember allows one to select where we want to file an entry with C-u C-c C-c, but now that we have org-refile (great!), it would be really nice to be able to call org-refile after the text is inserted on it's default place (mine is the Tasks tree on todo.org) Now, I couldn't find a way to insert this nicely into the code, since that is done via the remember command. Any ideas? Thanks in advance, Hugo ------=_Part_27328_17573094.1199721927040 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello everyone!

I know Remember allows one to select where we want to file an entry with C-u C-c C-c, but now that we have org-refile (great!), it would be really nice to be able to call org-refile after the text is inserted on it's default place (mine is the Tasks tree on todo.org)
Now, I couldn't find a way to insert this nicely into the code, since that is done via the remember command.
Any ideas?

Thanks in advance,
Hugo


------=_Part_27328_17573094.1199721927040-- --===============1466113516== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============1466113516==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Hugo Schmitt" Subject: Re: Remember and then refile Date: Mon, 7 Jan 2008 13:16:31 -0300 Message-ID: <2f1c7d020801070816g18fc4e9eob742e1f9cfdf74f4@mail.gmail.com> References: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0806052956==" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBueS-0001SC-5M for emacs-orgmode@gnu.org; Mon, 07 Jan 2008 11:16:36 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBueQ-0001Ri-6d for emacs-orgmode@gnu.org; Mon, 07 Jan 2008 11:16:35 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBueP-0001Rb-Tv for emacs-orgmode@gnu.org; Mon, 07 Jan 2008 11:16:34 -0500 Received: from wa-out-1112.google.com ([209.85.146.183]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JBueP-0005CI-Mb for emacs-orgmode@gnu.org; Mon, 07 Jan 2008 11:16:33 -0500 Received: by wa-out-1112.google.com with SMTP id k34so12652416wah.10 for ; Mon, 07 Jan 2008 08:16:32 -0800 (PST) In-Reply-To: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --===============0806052956== Content-Type: multipart/alternative; boundary="----=_Part_27411_22096937.1199722591631" ------=_Part_27411_22096937.1199722591631 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi again... i took a second look and adding something like this: (when org-remember-then-refile (org-refile)) on the end of the function org-remember-handler did the trick. It's not as nice as it could be though, because you get a *Remember* buffer opened until you refile. Cheers, Hugo On Jan 7, 2008 1:05 PM, Hugo Schmitt wrote: > Hello everyone! > > I know Remember allows one to select where we want to file an entry with > C-u C-c C-c, but now that we have org-refile (great!), it would be really > nice to be able to call org-refile after the text is inserted on it's > default place (mine is the Tasks tree on todo.org) > Now, I couldn't find a way to insert this nicely into the code, since that > is done via the remember command. > Any ideas? > > Thanks in advance, > Hugo > > > ------=_Part_27411_22096937.1199722591631 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi again...
i took a second look and adding something like this:

(when org-remember-then-refile
          (org-refile))

on the end of the function org-remember-handler did the trick.
It's not as nice as it could be though, because you get a *Remember* buffer opened until you refile.

Cheers,
Hugo

On Jan 7, 2008 1:05 PM, Hugo Schmitt <hugows@gmail.com> wrote:
Hello everyone!

I know Remember allows one to select where we want to file an entry with C-u C-c C-c, but now that we have org-refile (great!), it would be really nice to be able to call org-refile after the text is inserted on it's default place (mine is the Tasks tree on todo.org)
Now, I couldn't find a way to insert this nicely into the code, since that is done via the remember command.
Any ideas?

Thanks in advance,
Hugo



------=_Part_27411_22096937.1199722591631-- --===============0806052956== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============0806052956==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Remember and then refile Date: Tue, 15 Jan 2008 16:00:21 +0100 Message-ID: <6E591A93-E37C-494F-97AC-CB475328DC50@gmail.com> References: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> Mime-Version: 1.0 (Apple Message framework v915) Content-Type: multipart/mixed; boundary="===============0828680439==" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEnHC-00085i-LD for emacs-orgmode@gnu.org; Tue, 15 Jan 2008 10:00:30 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEnH9-000819-JF for emacs-orgmode@gnu.org; Tue, 15 Jan 2008 10:00:29 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEnH9-00080u-Dk for emacs-orgmode@gnu.org; Tue, 15 Jan 2008 10:00:27 -0500 Received: from hu-out-0506.google.com ([72.14.214.229]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JEnH9-0005QY-28 for emacs-orgmode@gnu.org; Tue, 15 Jan 2008 10:00:27 -0500 Received: by hu-out-0506.google.com with SMTP id 23so971336huc.1 for ; Tue, 15 Jan 2008 07:00:25 -0800 (PST) In-Reply-To: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Hugo Schmitt Cc: emacs-orgmode@gnu.org --===============0828680439== Content-Type: multipart/alternative; boundary=Apple-Mail-1-911205879 --Apple-Mail-1-911205879 Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit On Jan 7, 2008, at 5:05 PM, Hugo Schmitt wrote: > Hello everyone! > > I know Remember allows one to select where we want to file an entry > with C-u C-c C-c, but now that we have org-refile (great!), it would > be really nice to be able to call org-refile after the text is > inserted on it's default place (mine is the Tasks tree on todo.org) > Now, I couldn't find a way to insert this nicely into the code, > since that is done via the remember command. > Any ideas? Hi Hugo, great idea. We could even (optionally) replace the storing interface with the refile interface, so that C-c C-c would do a direct filing and C-u C-c C-c would give you the refile interface to determine a location. Much faster than the rog-goto interface that is being used now. Tanks. - Carsten --Apple-Mail-1-911205879 Content-Type: text/html; charset=US-ASCII Content-Transfer-Encoding: quoted-printable
On Jan 7, 2008, = at 5:05 PM, Hugo Schmitt wrote:

Hello = everyone!

I know Remember allows one to select where we want to = file an entry with C-u C-c C-c, but now that we have org-refile = (great!), it would be really nice to be able to call org-refile after = the text is inserted on it's default place (mine is the Tasks tree on todo.org)
Now, I couldn't find a way to = insert this nicely into the code, since that is done via the remember = command.
Any ideas?


Hi Hugo,


great idea.  We could = even (optionally) replace the storing interface with the refile = interface, so that C-c C-c would do a direct filing and C-u C-c C-c = would give you the refile interface to determine a location.  Much = faster than the rog-goto interface that is being used now.

Tanks.

- = Carsten

= --Apple-Mail-1-911205879-- --===============0828680439== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============0828680439==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Remember and then refile Date: Fri, 18 Jan 2008 09:47:33 +0100 Message-ID: References: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> Mime-Version: 1.0 (Apple Message framework v915) Content-Type: multipart/mixed; boundary="===============1529073378==" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFnLd-0001mr-Q8 for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 04:17:14 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFnLY-0001gb-Io for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 04:17:11 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFnLX-0001g0-9i for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 04:17:07 -0500 Received: from ug-out-1314.google.com ([66.249.92.172]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JFnLX-0000vw-DG for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 04:17:07 -0500 Received: by ug-out-1314.google.com with SMTP id a2so502186ugf.48 for ; Fri, 18 Jan 2008 01:17:06 -0800 (PST) In-Reply-To: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Hugo Schmitt Cc: emacs-orgmode@gnu.org --===============1529073378== Content-Type: multipart/alternative; boundary=Apple-Mail-1--999445357 --Apple-Mail-1--999445357 Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit This will be in 5.19. Thanks for the proposal!. - Carsten On Jan 7, 2008, at 5:05 PM, Hugo Schmitt wrote: > Hello everyone! > > I know Remember allows one to select where we want to file an entry > with C-u C-c C-c, but now that we have org-refile (great!), it would > be really nice to be able to call org-refile after the text is > inserted on it's default place (mine is the Tasks tree on todo.org) > Now, I couldn't find a way to insert this nicely into the code, > since that is done via the remember command. > Any ideas? > > Thanks in advance, > Hugo > > --Apple-Mail-1--999445357 Content-Type: text/html; charset=US-ASCII Content-Transfer-Encoding: 7bit This will be in 5.19.  Thanks for the proposal!.

- Carsten

On Jan 7, 2008, at 5:05 PM, Hugo Schmitt wrote:

Hello everyone!

I know Remember allows one to select where we want to file an entry with C-u C-c C-c, but now that we have org-refile (great!), it would be really nice to be able to call org-refile after the text is inserted on it's default place (mine is the Tasks tree on todo.org)
Now, I couldn't find a way to insert this nicely into the code, since that is done via the remember command.
Any ideas?

Thanks in advance,
Hugo



--Apple-Mail-1--999445357-- --===============1529073378== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============1529073378==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Hugo Schmitt" Subject: Re: Remember and then refile Date: Fri, 18 Jan 2008 07:14:42 -0300 Message-ID: <2f1c7d020801180214m37684a98qa86612e1e6dc441@mail.gmail.com> References: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFoFK-0006UE-II for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 05:14:46 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFoFJ-0006Tv-Pe for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 05:14:46 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFoFJ-0006Tr-D2 for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 05:14:45 -0500 Received: from wa-out-1112.google.com ([209.85.146.180]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JFoFJ-0007ae-2A for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 05:14:45 -0500 Received: by wa-out-1112.google.com with SMTP id k34so1670804wah.10 for ; Fri, 18 Jan 2008 02:14:43 -0800 (PST) In-Reply-To: Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: emacs-orgmode@gnu.org Can't wait! Thank you very much for all the work on org-mode. -Hugo On Jan 18, 2008 5:47 AM, Carsten Dominik wrote: > This will be in 5.19. Thanks for the proposal!. > > - Carsten > > > On Jan 7, 2008, at 5:05 PM, Hugo Schmitt wrote: > > > Hello everyone! > > I know Remember allows one to select where we want to file an entry with C-u > C-c C-c, but now that we have org-refile (great!), it would be really nice > to be able to call org-refile after the text is inserted on it's default > place (mine is the Tasks tree on todo.org) > Now, I couldn't find a way to insert this nicely into the code, since that > is done via the remember command. > Any ideas? > > Thanks in advance, > Hugo > > > > From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steven Lumos Subject: Re: Remember and then refile Date: Fri, 18 Jan 2008 12:40:58 -0800 Message-ID: References: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFy1d-0002o6-Na for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 15:41:17 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFy1c-0002nu-8K for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 15:41:17 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFy1c-0002nr-34 for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 15:41:16 -0500 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JFy1b-00078f-Lt for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 15:41:15 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JFy1T-0005gy-JX for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 20:41:07 +0000 Received: from wsip-24-234-106-159.lv.lv.cox.net ([24.234.106.159]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 18 Jan 2008 20:41:07 +0000 Received: from steven by wsip-24-234-106-159.lv.lv.cox.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 18 Jan 2008 20:41:07 +0000 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Carsten Dominik writes: > This will be in 5.19. Thanks for the proposal!. > > - Carsten Hi. Have you considered somehow merging the tree selection and minibuffer with completion methods so that both are available simultaneously? Steve > On Jan 7, 2008, at 5:05 PM, Hugo Schmitt wrote: > >> Hello everyone! >> >> I know Remember allows one to select where we want to file an entry >> with C-u C-c C-c, but now that we have org-refile (great!), it would >> be really nice to be able to call org-refile after the text is >> inserted on it's default place (mine is the Tasks tree on todo.org) >> Now, I couldn't find a way to insert this nicely into the code, >> since that is done via the remember command. >> Any ideas? >> >> Thanks in advance, >> Hugo From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Re: Remember and then refile Date: Fri, 18 Jan 2008 22:43:10 +0100 Message-ID: <2420B6DC-17A1-4E9D-AC75-3F85D31C78F2@science.uva.nl> References: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> Mime-Version: 1.0 (Apple Message framework v915) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFyzh-0000Yp-Jd for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 16:43:21 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFyzf-0000Wp-RD for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 16:43:21 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFyzf-0000Wf-Ng for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 16:43:19 -0500 Received: from fg-out-1718.google.com ([72.14.220.153]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JFyzf-0002pF-D6 for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 16:43:19 -0500 Received: by fg-out-1718.google.com with SMTP id d23so1281207fga.30 for ; Fri, 18 Jan 2008 13:43:19 -0800 (PST) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Steven Lumos Cc: emacs-orgmode@gnu.org On Jan 18, 2008, at 9:40 PM, Steven Lumos wrote: > Carsten Dominik writes: >> This will be in 5.19. Thanks for the proposal!. >> >> - Carsten > > Hi. > > Have you considered somehow merging the tree selection and minibuffer > with completion methods so that both are available simultaneously? Could you please be more specific? Thanks. - Carsten > > > Steve > >> On Jan 7, 2008, at 5:05 PM, Hugo Schmitt wrote: >> >>> Hello everyone! >>> >>> I know Remember allows one to select where we want to file an entry >>> with C-u C-c C-c, but now that we have org-refile (great!), it would >>> be really nice to be able to call org-refile after the text is >>> inserted on it's default place (mine is the Tasks tree on todo.org) >>> Now, I couldn't find a way to insert this nicely into the code, >>> since that is done via the remember command. >>> Any ideas? >>> >>> Thanks in advance, >>> Hugo > > > > _______________________________________________ > Emacs-orgmode mailing list > Remember: use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steven Lumos Subject: Re: Remember and then refile Date: Fri, 18 Jan 2008 14:19:02 -0800 Message-ID: References: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> <2420B6DC-17A1-4E9D-AC75-3F85D31C78F2@science.uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFzYP-0000gr-Md for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 17:19:13 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFzYO-0000f9-7G for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 17:19:13 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFzYN-0000ey-RP for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 17:19:11 -0500 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JFzYN-000227-Aj for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 17:19:11 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JFzYK-00026Y-AL for emacs-orgmode@gnu.org; Fri, 18 Jan 2008 22:19:08 +0000 Received: from wsip-24-234-106-159.lv.lv.cox.net ([24.234.106.159]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 18 Jan 2008 22:19:08 +0000 Received: from steven by wsip-24-234-106-159.lv.lv.cox.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 18 Jan 2008 22:19:08 +0000 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Carsten Dominik writes: > On Jan 18, 2008, at 9:40 PM, Steven Lumos wrote: > >> Carsten Dominik writes: >>> This will be in 5.19. Thanks for the proposal!. >>> >>> - Carsten >> >> Hi. >> >> Have you considered somehow merging the tree selection and minibuffer >> with completion methods so that both are available simultaneously? > > Could you please be more specific? > > Thanks. > > - Carsten Maybe. :-) Currently, C-u C-c C-c in remember uses this "Select a destination location for the note" mode where you navigate the org tree in the usual way and then RET to select a headline. On the other hand, org-refile uses the minibuffer and you type a headline, with completion and history. So recently I've been thinking it should be possible (though only arguably desirable) to allow both of these modes to be active at once, so movement commands would navigate the tree and typing commands would append to the minibuffer. There are key conflicts that need to be worked out, but I think it could be done. For one example, TAB could do completion if there is text in the minibuffer, and tree navigation otherwise. Steve >> >> >> Steve >> >>> On Jan 7, 2008, at 5:05 PM, Hugo Schmitt wrote: >>> >>>> Hello everyone! >>>> >>>> I know Remember allows one to select where we want to file an entry >>>> with C-u C-c C-c, but now that we have org-refile (great!), it would >>>> be really nice to be able to call org-refile after the text is >>>> inserted on it's default place (mine is the Tasks tree on todo.org) >>>> Now, I couldn't find a way to insert this nicely into the code, >>>> since that is done via the remember command. >>>> Any ideas? >>>> >>>> Thanks in advance, >>>> Hugo From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Piotr Zielinski" Subject: Re: Re: Remember and then refile Date: Sun, 20 Jan 2008 14:31:28 +0000 Message-ID: <3c12eb8d0801200631h3ce643c9q89dcd7f542d431da@mail.gmail.com> References: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> <2420B6DC-17A1-4E9D-AC75-3F85D31C78F2@science.uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JGbCv-0006VO-8t for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 09:31:33 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JGbCt-0006TL-O4 for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 09:31:32 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JGbCt-0006TF-Ld for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 09:31:31 -0500 Received: from wa-out-1112.google.com ([209.85.146.179]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JGbCt-0001Wp-H4 for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 09:31:31 -0500 Received: by wa-out-1112.google.com with SMTP id k34so3081491wah.10 for ; Sun, 20 Jan 2008 06:31:28 -0800 (PST) In-Reply-To: Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Steven Lumos Cc: emacs-orgmode@gnu.org On Jan 18, 2008 10:19 PM, Steven Lumos wrote: >>> Have you considered somehow merging the tree selection and >>> minibuffer with completion methods so that both are available >>> simultaneously? I haven't made up my mind about org-refile yet, but I'd like to speak in defense of org-goto. In my setup, when you start typing in org-goto, it automatically enters the isearch mode that searches only headlines, which is very useful for refiling and kind of achieves what you are asking for. This requires some additional elisp code; I can repost it if somebody is interested. As for completion, both org-refile and org-goto should work with icicles but I haven't tried it extensively yet (icicles provides general-purpose extensive completion support for emacs). My main point is that I'd rather vote for making org-mode work well with otherspecialized modes (eg icicles) than for reimplementing the features. Thanks, Piotr From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Re: Remember and then refile Date: Sun, 20 Jan 2008 15:32:17 +0100 Message-ID: References: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> <2420B6DC-17A1-4E9D-AC75-3F85D31C78F2@science.uva.nl> Mime-Version: 1.0 (Apple Message framework v915) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JGbDk-0007xW-Qb for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 09:32:24 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JGbDj-0007ur-PK for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 09:32:23 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JGbDj-0007uZ-HV for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 09:32:23 -0500 Received: from fk-out-0910.google.com ([209.85.128.186]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JGbDj-0001gx-28 for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 09:32:23 -0500 Received: by fk-out-0910.google.com with SMTP id 26so1030686fkx.10 for ; Sun, 20 Jan 2008 06:32:22 -0800 (PST) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Steven Lumos Cc: emacs-orgmode@gnu.org On Jan 18, 2008, at 11:19 PM, Steven Lumos wrote: > Carsten Dominik writes: >> On Jan 18, 2008, at 9:40 PM, Steven Lumos wrote: >> >>> Carsten Dominik writes: >>>> This will be in 5.19. Thanks for the proposal!. >>>> >>>> - Carsten >>> >>> Hi. >>> >>> Have you considered somehow merging the tree selection and >>> minibuffer >>> with completion methods so that both are available simultaneously? >> >> Could you please be more specific? >> >> Thanks. >> >> - Carsten > > Maybe. :-) > > Currently, C-u C-c C-c in remember uses this "Select a destination > location for the note" mode where you navigate the org tree in the > usual way and then RET to select a headline. > > On the other hand, org-refile uses the minibuffer and you type a > headline, with completion and history. > > So recently I've been thinking it should be possible (though only > arguably desirable) to allow both of these modes to be active at once, > so movement commands would navigate the tree and typing commands would > append to the minibuffer. > > There are key conflicts that need to be worked out, but I think it > could be done. For one example, TAB could do completion if there is > text in the minibuffer, and tree navigation otherwise. Hmm, this sound like over-complx to me. I would use the interface that makes sense most of the time and then move by hand in the remaining cases. Or do you think tat the interface you want is dependent on the template you are using? - Carsten > > > Steve > >>> >>> >>> Steve >>> >>>> On Jan 7, 2008, at 5:05 PM, Hugo Schmitt wrote: >>>> >>>>> Hello everyone! >>>>> >>>>> I know Remember allows one to select where we want to file an >>>>> entry >>>>> with C-u C-c C-c, but now that we have org-refile (great!), it >>>>> would >>>>> be really nice to be able to call org-refile after the text is >>>>> inserted on it's default place (mine is the Tasks tree on >>>>> todo.org) >>>>> Now, I couldn't find a way to insert this nicely into the code, >>>>> since that is done via the remember command. >>>>> Any ideas? >>>>> >>>>> Thanks in advance, >>>>> Hugo > > > > _______________________________________________ > Emacs-orgmode mailing list > Remember: use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Subject: Re: Remember and then refile Date: Sun, 20 Jan 2008 14:44:17 +0000 Message-ID: References: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> <2420B6DC-17A1-4E9D-AC75-3F85D31C78F2@science.uva.nl> <3c12eb8d0801200631h3ce643c9q89dcd7f542d431da@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JGbQe-0000Li-63 for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 09:45:44 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JGbQY-0000IP-NL for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 09:45:42 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JGbQY-0000IE-Kw for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 09:45:38 -0500 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JGbQY-00041g-E0 for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 09:45:38 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JGbQO-0003kq-Ku for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 14:45:28 +0000 Received: from sl392.st-edmunds.cam.ac.uk ([131.111.223.202]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 20 Jan 2008 14:45:28 +0000 Received: from sdl.web by sl392.st-edmunds.cam.ac.uk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 20 Jan 2008 14:45:28 +0000 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org On 2008-01-20 14:31 +0000, Piotr Zielinski wrote: > As for completion, both org-refile and org-goto should work with > icicles but I haven't tried it extensively yet (icicles provides > general-purpose extensive completion support for emacs). My main > point is that I'd rather vote for making org-mode work well with > otherspecialized modes (eg icicles) than for reimplementing the > features. But the problem with icicles is that it might never be included in Emacs. -- .: Leo :. [ sdl.web AT gmail.com ] .: [ GPG Key: 9283AA3F ] :. Use the best OS -- http://www.fedoraproject.org/ From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Hugo Schmitt" Subject: Re: Re: Remember and then refile Date: Sun, 20 Jan 2008 13:54:21 -0200 Message-ID: <2f1c7d020801200754v5fd71484g5bc2ad3a3be8dc3a@mail.gmail.com> References: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> <2420B6DC-17A1-4E9D-AC75-3F85D31C78F2@science.uva.nl> <3c12eb8d0801200631h3ce643c9q89dcd7f542d431da@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JGcV6-0003xr-MX for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 10:54:24 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JGcV5-0003x4-Q4 for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 10:54:24 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JGcV5-0003wr-LU for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 10:54:23 -0500 Received: from wa-out-1112.google.com ([209.85.146.179]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JGcV5-0001nH-GO for emacs-orgmode@gnu.org; Sun, 20 Jan 2008 10:54:23 -0500 Received: by wa-out-1112.google.com with SMTP id k34so3119375wah.10 for ; Sun, 20 Jan 2008 07:54:21 -0800 (PST) In-Reply-To: Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Leo Cc: emacs-orgmode@gnu.org I use ido all day, and I find ido-completing-read much nicer/cooler than the default. If anyone wants to try, just change the sexp (completing-read ...) inside org-refile for something like: (if (fboundp 'ido-completing-read) (ido-completing-read "Refile to: " tbl nil t nil 'org-refile-history) (completing-read "Refile to: " tbl nil t nil 'org-refile-history)) ... and the good thing is that ido comes with emacs22. Cheers, Hugo On Jan 20, 2008 12:44 PM, Leo wrote: > On 2008-01-20 14:31 +0000, Piotr Zielinski wrote: > > As for completion, both org-refile and org-goto should work with > > icicles but I haven't tried it extensively yet (icicles provides > > general-purpose extensive completion support for emacs). My main > > point is that I'd rather vote for making org-mode work well with > > otherspecialized modes (eg icicles) than for reimplementing the > > features. > > But the problem with icicles is that it might never be included in > Emacs. > > -- > .: Leo :. [ sdl.web AT gmail.com ] .: [ GPG Key: 9283AA3F ] :. > > Use the best OS -- http://www.fedoraproject.org/ > > > > > _______________________________________________ > Emacs-orgmode mailing list > Remember: use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steven Lumos Subject: Re: Remember and then refile Date: Thu, 31 Jan 2008 15:21:30 -0800 Message-ID: References: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> <2420B6DC-17A1-4E9D-AC75-3F85D31C78F2@science.uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JKij4-0002Mb-79 for emacs-orgmode@gnu.org; Thu, 31 Jan 2008 18:21:46 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JKij3-0002L3-Br for emacs-orgmode@gnu.org; Thu, 31 Jan 2008 18:21:45 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKij3-0002Ku-4F for emacs-orgmode@gnu.org; Thu, 31 Jan 2008 18:21:45 -0500 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JKij2-0002VZ-Mj for emacs-orgmode@gnu.org; Thu, 31 Jan 2008 18:21:45 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JKiiy-0006dr-7X for emacs-orgmode@gnu.org; Thu, 31 Jan 2008 23:21:40 +0000 Received: from wsip-24-234-106-159.lv.lv.cox.net ([24.234.106.159]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 31 Jan 2008 23:21:40 +0000 Received: from steven by wsip-24-234-106-159.lv.lv.cox.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 31 Jan 2008 23:21:40 +0000 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Carsten Dominik writes: > On Jan 18, 2008, at 11:19 PM, Steven Lumos wrote: > >> Carsten Dominik writes: >>> On Jan 18, 2008, at 9:40 PM, Steven Lumos wrote: >>> >>>> Carsten Dominik writes: >>>>> This will be in 5.19. Thanks for the proposal!. >>>>> >>>>> - Carsten >>>> >>>> Hi. >>>> >>>> Have you considered somehow merging the tree selection and >>>> minibuffer >>>> with completion methods so that both are available simultaneously? >>> >>> Could you please be more specific? >>> >>> Thanks. >>> >>> - Carsten >> >> Maybe. :-) >> >> Currently, C-u C-c C-c in remember uses this "Select a destination >> location for the note" mode where you navigate the org tree in the >> usual way and then RET to select a headline. >> >> On the other hand, org-refile uses the minibuffer and you type a >> headline, with completion and history. >> >> So recently I've been thinking it should be possible (though only >> arguably desirable) to allow both of these modes to be active at once, >> so movement commands would navigate the tree and typing commands would >> append to the minibuffer. >> >> There are key conflicts that need to be worked out, but I think it >> could be done. For one example, TAB could do completion if there is >> text in the minibuffer, and tree navigation otherwise. > > Hmm, this sound like over-complx to me. I would use the interface > that makes sense most of the time and then move by hand in the > remaining cases. Or do you think tat the interface you want > is dependent on the template you are using? > > - Carsten That could be. I'm still very much figuring out what the interface between my brain and org looks like, and not currently using any of the established planning styles. I've only been using the agenda for about half as long as I've been using org for example. >From my perspective, I saw two methods to do exactly the same thing(*), which led to thinking about the advantages of each, which led to thinking why not just merge them and have the advantages of both. (*) Maybe this assumption was wrong? Steve From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Re: Remember and then refile Date: Mon, 4 Feb 2008 11:00:40 +0100 Message-ID: <3AF4BF3B-1388-4582-BA50-6614C8846D4A@science.uva.nl> References: <2f1c7d020801070805u5c3f9567uc957c745bbe2e5b3@mail.gmail.com> <2420B6DC-17A1-4E9D-AC75-3F85D31C78F2@science.uva.nl> Mime-Version: 1.0 (Apple Message framework v915) Content-Type: multipart/mixed; boundary="===============1551488503==" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JLy9M-0005h9-8F for emacs-orgmode@gnu.org; Mon, 04 Feb 2008 05:02:04 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JLy9G-0005cX-Hi for emacs-orgmode@gnu.org; Mon, 04 Feb 2008 05:02:03 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JLy9G-0005cJ-2s for emacs-orgmode@gnu.org; Mon, 04 Feb 2008 05:01:58 -0500 Received: from fg-out-1718.google.com ([72.14.220.158]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JLy9E-0008Lp-1A for emacs-orgmode@gnu.org; Mon, 04 Feb 2008 05:01:57 -0500 Received: by fg-out-1718.google.com with SMTP id d23so2166813fga.30 for ; Mon, 04 Feb 2008 02:00:45 -0800 (PST) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Steven Lumos Cc: emacs-orgmode@gnu.org --===============1551488503== Content-Type: multipart/alternative; boundary=Apple-Mail-1-473741091 --Apple-Mail-1-473741091 Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit On Feb 1, 2008, at 12:21 AM, Steven Lumos wrote: > Carsten Dominik writes: > >> On Jan 18, 2008, at 11:19 PM, Steven Lumos wrote: >> >>> Carsten Dominik writes: >>>> On Jan 18, 2008, at 9:40 PM, Steven Lumos wrote: >>>> >>>>> Carsten Dominik writes: >>>>>> This will be in 5.19. Thanks for the proposal!. >>>>>> >>>>>> - Carsten >>>>> >>>>> Hi. >>>>> >>>>> Have you considered somehow merging the tree selection and >>>>> minibuffer >>>>> with completion methods so that both are available simultaneously? >>>> >>>> Could you please be more specific? >>>> >>>> Thanks. >>>> >>>> - Carsten >>> >>> Maybe. :-) >>> >>> Currently, C-u C-c C-c in remember uses this "Select a destination >>> location for the note" mode where you navigate the org tree in the >>> usual way and then RET to select a headline. >>> >>> On the other hand, org-refile uses the minibuffer and you type a >>> headline, with completion and history. >>> >>> So recently I've been thinking it should be possible (though only >>> arguably desirable) to allow both of these modes to be active at >>> once, >>> so movement commands would navigate the tree and typing commands >>> would >>> append to the minibuffer. >>> >>> There are key conflicts that need to be worked out, but I think it >>> could be done. For one example, TAB could do completion if there is >>> text in the minibuffer, and tree navigation otherwise. >> >> Hmm, this sound like over-complx to me. I would use the interface >> that makes sense most of the time and then move by hand in the >> remaining cases. Or do you think tat the interface you want >> is dependent on the template you are using? >> >> - Carsten > > That could be. I'm still very much figuring out what the interface > between my brain and org looks like, and not currently using any of > the established planning styles. I've only been using the agenda for > about half as long as I've been using org for example. > >> From my perspective, I saw two methods to do exactly the same >> thing(*), > which led to thinking about the advantages of each, which led to > thinking why not just merge them and have the advantages of both. yes, they do the exact same thing in the way that they achieve the same, but in different ways. However, what you ask for is difficult to program and also (IMO) confusing. I am dropping it for now. If you want to switch between the two interfaces, just define a command that toggles the corresponding variable. Then you can switch just before finishing remember with C-c C-c. - Carsten --Apple-Mail-1-473741091 Content-Type: text/html; charset=US-ASCII Content-Transfer-Encoding: quoted-printable
On Feb 1, 2008, = at 12:21 AM, Steven Lumos wrote:

Carsten = Dominik <dominik@science.uva.nl> = writes:

On Jan 18, 2008, at 11:19 PM, = Steven Lumos wrote:

Carsten Dominik <dominik@science.uva.nl> = writes:
On Jan 18, 2008, at 9:40 PM, = Steven Lumos = wrote:

Carsten Dominik <carsten.dominik@gmail.com>= ; = writes:
This = will be in 5.19.  Thanks for the = proposal!.

- = Carsten

Hi.
<= blockquote type=3D"cite">

Have you considered somehow = merging the tree selection = and
minibuffer
with completion methods so that = both are available = simultaneously?

Could = you please be more = specific?

Thanks.

- = Carsten

Maybe. = :-)

Currently, C-u C-c C-c in = remember uses this "Select a = destination
location for the note" mode = where you navigate the org tree in = the
usual way and then RET to select a = headline.

On the other hand, org-refile = uses the minibuffer and you type = a
headline, with completion and = history.

So recently I've been thinking = it should be possible (though = only
arguably desirable) to allow both of these modes to be = active at once,
so movement commands would = navigate the tree and typing commands = would
append to the = minibuffer.

There are key conflicts that = need to be worked out, but I think = it
could be done.  For one example, TAB could do = completion if there is
text in the minibuffer, and tree = navigation otherwise.

Hmm, this sound = like over-complx to me.  I would use the = interface
that makes sense = most of the time and then move by hand in = the
remaining cases.  Or = do you think tat the interface you want
is dependent on the template you are = using?

- = Carsten

That could be.  I'm still very much = figuring out what the interface
between my brain and org looks like, = and not currently using any of
the established planning styles. =  I've only been using the agenda for
about half as long as I've = been using org for example.

=46rom my = perspective, I saw two methods to do exactly the same = thing(*),
which led to thinking about the advantages of = each, which led to
thinking why not just merge them and have the = advantages of both.

yes, they do the exact = same thing in the way that they achieve the same, but
in = different ways.  However, what you ask for is difficult to program = and
also (IMO) confusing.  I am dropping it for now. =  If you want to switch
between the two interfaces, just = define a command that toggles the
corresponding variable. =  Then you can switch just before finishing remember
with = C-c C-c.

- Carsten
= --Apple-Mail-1-473741091-- --===============1551488503== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============1551488503==--