[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] About org-sort -> org-sort-list with custom sort function
From: |
Nicolas Goaziou |
Subject: |
Re: [O] About org-sort -> org-sort-list with custom sort function |
Date: |
Sun, 07 May 2017 12:00:46 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) |
Hello,
Kyle Meyer <address@hidden> writes:
> I'm a bit confused about why org-call-with-arg is necessary because I
> think call-interactively already propagates the current prefix argument,
> but perhaps I'm missing some subtlety here. Either way ...
I thought the same. I think we can replace `org-call-with-arg' with
`call-interactively' in master.
>> The problem is that if you choose ?f (sorting with custom key function),
>> then org-sort-list expects another argument, the compare-func, which is
>> not passed to it.
>>
>> IMHO, there are two ways to solve this
>>
>> 1. Ask for the compare-func in org-sort-list, as it does for the
>> getkey-func. A default value could be provided for compare-func,
>> e.g., string<, <, etc. Or
>> 2. Restrict the return type to a string (or integer) so that we could
>> fix the compare-func
I'd rather have 1.
Actually, there's some confusion in `org-sort-list' about how
getkey-func and compare-func are handled. For example, the question
asked to bind GETKEY-FUNC is "Sort using function: ", which should
really be asked for COMPARE-FUNC.
IOW, we need to move this question to COMPARE-FUNC and ask a new one for
GETKEY-FUNC.
> And I think it's OK to not expose compare-func to the interactive
> caller. In cases where sort-subr's default behavior won't do and a user
> wants to supply a value for compare-func, they can create their own
> command that wraps a non-interactive org-sort-list call.
I disagree. getkey-func and compare-func work hand in hand. You cannot
let users provide one but not the other without crippling functionality.
Regards,
--
Nicolas Goaziou
- [O] About org-sort -> org-sort-list with custom sort function, Zhitao Gong, 2017/05/05
- Re: [O] About org-sort -> org-sort-list with custom sort function, Kyle Meyer, 2017/05/06
- Re: [O] About org-sort -> org-sort-list with custom sort function,
Nicolas Goaziou <=
- Re: [O] About org-sort -> org-sort-list with custom sort function, Kyle Meyer, 2017/05/07
- Re: [O] About org-sort -> org-sort-list with custom sort function, Kyle Meyer, 2017/05/07
- Re: [O] About org-sort -> org-sort-list with custom sort function, Nicolas Goaziou, 2017/05/08
- Re: [O] About org-sort -> org-sort-list with custom sort function, Kyle Meyer, 2017/05/08
- Re: [O] About org-sort -> org-sort-list with custom sort function, Nicolas Goaziou, 2017/05/08
- Re: [O] About org-sort -> org-sort-list with custom sort function, Kyle Meyer, 2017/05/08
- Re: [O] About org-sort -> org-sort-list with custom sort function, Nicolas Goaziou, 2017/05/08
- [O] [PATCH] org-sort: Read compare-func in interactive calls, Kyle Meyer, 2017/05/09
- Re: [O] [PATCH] org-sort: Read compare-func in interactive calls, Nicolas Goaziou, 2017/05/11
- Re: [O] [PATCH] org-sort: Read compare-func in interactive calls, Kyle Meyer, 2017/05/11