Re: [DISCUSSION] "quick-help" popup for org-columns (column view)

2024-04-18 Thread Sławomir Grochowski
Philip Kaludercic writes: > Sławomir Grochowski writes: > >> Philip Kaludercic writes: >>> I have pushed the changes to master. >> >> Thank you Philip for your help. It works. >> >> But there is one more small thing. >> A message that

Re: [DISCUSSION] "quick-help" popup for org-columns (column view)

2024-04-15 Thread Sławomir Grochowski
Philip Kaludercic writes: > I have pushed the changes to master. Thank you Philip for your help. It works. But there is one more small thing. A message that is displayed in the minibuffer. It contains two pieces of information: (1) command name Right now it's hardcoded.

Re: [DISCUSSION] "quick-help" popup for org-columns (column view)

2024-04-11 Thread Sławomir Grochowski
Philip Kaludercic writes: > I tried out using your `org-columns-help-quick-sections' variable, but > it seems that `where-is' didn't find all the commands you wanted: > Are commands like `org-columns-move-up' part of the next release of Org? > I am using whatever is currently on master. Yes

Re: [DISCUSSION] "quick-help" popup for org-columns (column view)

2024-04-10 Thread Sławomir Grochowski
Thank you Philip for the explanation and preparing the code snippet. So what are the next steps? Can you merge your patch? -- Slawomir Grochowski

Re: [DISCUSSION] "quick-help" popup for org-columns (column view)

2024-04-08 Thread Sławomir Grochowski
Philip Kaludercic writes: > We could add a `help-quick-use-map' variable and bind it to `global-map' > by default. You can then re-bind it in your command. I'm sorry, but I don't quite understand it. It seems to me that the simplest way is to add a parameter to the function, like this:

Re: [DISCUSSION] "quick-help" popup for org-columns (column view)

2024-04-08 Thread Sławomir Grochowski
chad writes: > If you don't mind me asking: Thank you for sharing your views. > What are your high-level goals and immediate needs for changing > help-quick? I want to reuse quick-help for functionality in org-mode - column view package. See first email in this thread - there is even a

Re: [DISCUSSION] "quick-help" popup for org-columns (column view)

2024-04-06 Thread Sławomir Grochowski
Ihor Radchenko writes: > I see no downside supporting `help-quick' command in Org mode's column > view. Generally, better integration with Emacs built-in functionality is > welcome. Great. I'll be happy to take care of it. But first, we need to modify `help-quick' to be more reusable. I tried

Re: [FR] 'org-columns-next-allowed-value' for 'summary-checkbox'es functions should have 'intermediate state' '[-]'

2024-04-06 Thread Sławomir Grochowski
Ihor Radchenko writes: > Thanks! > I improved the patch a bit, with minor changes to the commit message and > adding more to the docstring and type spec of the defcustom. I also > changed the custom group (:group 'checkbox does not exist). Great. Thank you. It looks much better. But I think

Re: [FR] 'org-columns-next-allowed-value' for 'summary-checkbox'es functions should have 'intermediate state' '[-]'

2024-04-04 Thread Sławomir Grochowski
Ihor Radchenko writes: > Do not forget to add :package-version. Thank you for bringing it to my attention. Patch in attachment. >From eb71166693065534be9effdc28aea54bb24e64d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C5=82awomir=20Grochowski?= Date: Sat, 16 Mar 2024 13:29:53 +0100 Subject:

Re: [FR] 'org-columns-next-allowed-value' for 'summary-checkbox'es functions should have 'intermediate state' '[-]'

2024-04-03 Thread Sławomir Grochowski
Ihor Radchenko writes: > It is not very clear when this feature is useful. May you provide a > small example as a part of the news entry and also > `org-columns-checkbox-states' docstring? Yes. You are right. Thank you. After thinking about I have found a better name: (defcustom

Re: [FR] 'org-columns-next-allowed-value' for 'summary-checkbox'es functions should have 'intermediate state' '[-]'

2024-04-02 Thread Sławomir Grochowski
After careful consideration, I believe it is most prudent to only introduce a defcustom variable. This will allow for modification while simultaneously preserving the current behavior. Currently we can change the value of "org-columns-checkbox" with the following keybindings: (1)C-c C-c

Re: [FR] 'org-columns-next-allowed-value' for 'summary-checkbox'es functions should have 'intermediate state' '[-]'

2024-03-20 Thread Sławomir Grochowski
Ihor Radchenko writes: > I think that we can do the following: > > (1) modify org-columns-next-allowed-value (S-/) to use the > three states. > > (2) modify org-columns-toggle-or-columns-quit and org-columns--toggle to > follow what C-c C-c does: > > (5.6 Checkboxes section of the

Re: [PATCH] doc/org-manual.org (Checkboxes): move section 'Checkboxes' from 'TODO Items' to 'Plain Lists'

2024-02-27 Thread Sławomir Grochowski
t the changes regarding '5.6 Checkboxes'. And then later we could consider relocating. -- Sławomir Grochowski

Re: [FR] Add a way to mark an item in a checklist as failed

2024-02-26 Thread Sławomir Grochowski
mplicated. What others think? -- Sławomir Grochowski

Re: [FR] Add a way to mark an item in a checklist as failed

2024-02-26 Thread Sławomir Grochowski
` etc. You can also use statistics cookie '[/]' in checkbox items list. For example: #+begin_example - [ ] call people [1/2] - [X] Peter - [ ] Sarah #+end_example -- Sławomir Grochowski

RE: [External] : Re: [DISCUSSION] "quick-help" popup for org-columns (column view)

2024-02-14 Thread Sławomir Grochowski
key completions shown in *Completions*, > in *Help*. And likewise for any other > kind of completions for which there's a > help description. > > Showing help for completions is another > general feature that Emacs should have. I don't know if 'which-key' has this option. -- Sławomir Grochowski

[PATCH] lisp/org-colview.el: [refactor] [extract function] `org-columns-move-up' & `org-columns-move-down'

2024-02-04 Thread Sławomir Grochowski
Dear All, It's a small refactoring - extract function - and the patch is self-explanatory. Regards, Sławomir Grochowski >From e12fe4e911c90b8f0fc587286937d4c76cac4b5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C5=82awomir=20Grochowski?= Date: Sat, 3 Feb 2024 20:50:08 +0100 Subject: [PA

[PATCH] lisp/org-colview.el: [refactor] replace anonymouse function with `forward-char

2024-02-04 Thread Sławomir Grochowski
Dear All, It's a TINYCHANGE and the patch is self-explanatory. Regards, Sławomir Grochowski From 884e57101de6baf92d6d4e6c2c3476c7c3498185 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C5=82awomir=20Grochowski?= Date: Sat, 3 Feb 2024 19:30:03 +0100 Subject: [PATCH] lisp/org-colview.el: [refactor

Re: [PATCH] doc/org-manual.org: Checkboxes, add checkbox states examples

2024-01-27 Thread Sławomir Grochowski
Dear All, I noticed in my patch that I moved the description ("The ‘[2/4]’ and ‘[1/3]’ in") of an example. And it should be just below the example. So I'm sending a fixup! patch to fix this. It's my first fixup! patch so I hope this is the right procedure ;) Regards, Sławomir

[PATCH] doc/org-manual.org (Checkboxes): move section 'Checkboxes' from 'TODO Items' to 'Plain Lists'

2024-01-25 Thread Sławomir Grochowski
tion should be under 'Plain Lists' heading not under 'TODO Items'. Link https://orgmode.org/org.html#Checkboxes would stay the same. So it's just a move section to a more suitable place. Without changing the content. What do you think? Patch in the attachment. Regards, Sławomir Grochowski From ff

Re: [FR] 'org-columns-next-allowed-value' for 'summary-checkbox'es functions should have 'intermediate state' '[-]'

2024-01-23 Thread Sławomir Grochowski
Thank you for asking. Yes, I would be interested. I will prepare a patch. Regards, Sławomir Grochowski On Tue, Jan 16, 2024 at 4:47 PM Ihor Radchenko wrote: > Ihor Radchenko writes: > > >> What do you think? > > > > I think that your use-case is not necessar

[PATCH] doc/org-manual.org: update Checkboxes and TODO items cookie statistics

2024-01-23 Thread Sławomir Grochowski
his patch. Regards, Sławomir Grochowski From 0e7f14b7dc8474510993d1d9a4dd75bef7d7c12e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C5=82awomir=20Grochowski?= Date: Sun, 14 Jan 2024 21:25:32 +0100 Subject: [PATCH] doc/org-manual.org: update Checkboxes and TODO items cookie statistics * doc/org-manual.

Re: [PATCH] doc/org-manual.org: Checkboxes, add checkbox states examples

2023-11-07 Thread Sławomir Grochowski
Awesome! Thank you Bastien. I'm planning to add some examples with checkbox cookie data. Regards, Sławomir Grochowski On Wed, Nov 8, 2023 at 12:37 AM Bastien Guerry wrote: > Sławomir Grochowski writes: > > >> Applied, with a minor modification, using 1. instead of 1) for the

Re: [PATCH] doc/org-manual.org: Checkboxes, add checkbox states examples

2023-11-07 Thread Sławomir Grochowski
> Applied, with a minor modification, using 1. instead of 1) for the > list items. When will you merge the patch? https://git.savannah.gnu.org/cgit/emacs/org-mode.git/ And when update will be visible on site https://orgmode.org/org.html#Checkboxes ? Regards, Sławomir Grochowski On Mon,

Re: [FR] 'org-columns-next-allowed-value' for 'summary-checkbox'es functions should have 'intermediate state' '[-]'

2023-11-05 Thread Sławomir Grochowski
be allowed for normal checkbox only for parent checkbox, which have children. What do you think? Regards, Sławomir Grochowski On Sun, Nov 5, 2023 at 1:25 PM Ihor Radchenko wrote: > Sławomir Grochowski writes: > > > I was wondering how many states a checkbox has. > >

Re: [FR] 'org-columns-next-allowed-value' for 'summary-checkbox'es functions should have 'intermediate state' '[-]'

2023-11-01 Thread Sławomir Grochowski
sure if I was at the gym that day and maybe I just forgot to mark it as done. So for this purpose I'm marking it as [ - ] that explicitly I can't do this checkbox. Maybe others use it the same way? What do you think? Regards, Sławomir Grochowski On Wed, Nov 1, 2023 at 5:39 PM Sławomir

[FR] 'org-columns-next-allowed-value' for 'summary-checkbox'es functions should have 'intermediate state' '[-]'

2023-11-01 Thread Sławomir Grochowski
X]"))) to that: + (`(,_ ,_ ,_ ,(or "X" "X/" "X%") ,_) '("[ ]" "[-]" "[X]"))) What do you think? Regards, Sławomir Grochowski

Re: org-columns--summary-mean-time [BUG]

2023-10-14 Thread Sławomir Grochowski
Now I get it. Thank you for explanation. On Sat, Oct 14, 2023 at 9:39 PM Ihor Radchenko wrote: > Sławomir Grochowski writes: > > > But I'm talking about: > > (":mean" . org-columns--summary-mean-time) > > not ("@mean" . org-columns--summary-mean

Re: org-columns--summary-mean-time [BUG]

2023-10-14 Thread Sławomir Grochowski
But I'm talking about: (":mean" . org-columns--summary-mean-time) not ("@mean" . org-columns--summary-mean-age). So this is the right function (":mean" . org-columns--summary-mean-time)? Or do I need to write a new one? On Sat, Oct 14, 2023 at 9:19 PM Ihor

Re: org-columns--summary-mean-time [BUG]

2023-10-14 Thread Sławomir Grochowski
In ex. I want to have an average time when I go to bed. So on Monday I went to bed at 22:00 and on Tuesday at 02:00. So the average time would be midnight 00:00. But it returns 12:00 which is noon. On Sat, Oct 14, 2023 at 8:50 PM Ihor Radchenko wrote: > Sławomir Grochowski wri

org-columns--summary-mean-time [BUG]

2023-10-14 Thread Sławomir Grochowski
(org-columns--summary-mean-time '("22:00" "03:00") nil) ;=> "12:30" ; should be 00:30 What do you think? Regards, Sławomir Grochowski

Re: [RFC] [feat] org-colview/org-columns: 'column view' moving rows up/down

2023-08-20 Thread Sławomir Grochowski
I thought it would get lost in the many thousands of other TODOs you have on your plate. Thank you. But to my another surprise you have fixed the bug that was killing me everyday 'org-insert-heading: Fix when folded text is kept right at the new heading'. Thank you very much. Regards, Sławomir

Re: [BUG?] org-babel eval src block with :dir parameter

2023-08-06 Thread Sławomir Grochowski
Yes I just simplified the example. The case is if I add :dir param it result will be wrapped it #+begin_example #+end_example block. On Sun, Aug 6, 2023 at 9:02 PM Ihor Radchenko wrote: > Sławomir Grochowski writes: > > > I'm surprised by this behaviour. > > > > #+begin

[BUG?] org-babel eval src block with :dir parameter

2023-08-06 Thread Sławomir Grochowski
#+RESULTS: #+begin_example file1.txt file2.txt #+end_example Is it a bug? Org mode version 9.6.7 (9.6.7-gc74c4a @ /home/slk/.emacs.d/straight/build/org/) GNU Emacs 29.1.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.24, cairo version 1.16.0) of 2023-07-30 Regards, Sławomir Grochowski

[test] org-colview/org-columns

2023-04-17 Thread Sławomir Grochowski
Dear All, I'm trying to better understand 'org-colview/org-columns'. So I wrote some tests. File in attachment. I hope the commit message is correct. I will be very grateful for your comments & feedback on what can be done better. Regards, Sławomir Grochowski

Re: [RFC] [feat] org-colview/org-columns: 'column view' moving rows up/down

2023-04-11 Thread Sławomir Grochowski
fer. And that makes some kind of overflow? I will try to simplify the example and create a simple overlay without org-columns. If anyone has some ideas how to debug it I will be grateful for the hints. On Sun, Apr 9, 2023 at 11:13 AM Ihor Radchenko wrote: > Sławomir Grochowski writes: > > >

Re: [RFC] [feat] org-colview/org-columns: 'column view' moving rows up/down

2023-04-08 Thread Sławomir Grochowski
s...@gnu.org, yesterday. Does this test have anything to do with the new feature? > Yes, you are right. This test has nothing in common with the feature. I have removed it. On Fri, Apr 7, 2023 at 1:01 PM Ihor Radchenko wrote: > Sławomir Grochowski writes: > > > Recently I often use 'c

[RFC] [feat] org-colview/org-columns: 'column view' moving rows up/down

2023-04-06 Thread Sławomir Grochowski
ent. What others think about it? Regards, Sławomir Grochowski >From 1f0f2052b8dddf4982ab35267ed1564f2250784b Mon Sep 17 00:00:00 2001 From: Sławomir Grochowski Date: Mon, 3 Apr 2023 19:23:09 +0200 Subject: [PATCH] org-columns: add feat to move row up/down --- lisp/org-colview.el | 22

Re: [bug] org-columns-edit-value will capitalize property

2023-03-26 Thread Sławomir Grochowski
My apologies, I've made a mistake. There is not such a bug. Everythings works correctly. On Wed, 22 Mar 2023 at 13:18, Sławomir Grochowski < slawomir.grochow...@gmail.com> wrote: > Ok. I will try to send my first patch. > Desired behavior is: by using command 'org-columns-ed

Re: [bug] org-columns-edit-value will capitalize property

2023-03-22 Thread Sławomir Grochowski
Ok. I will try to send my first patch. Desired behavior is: by using command 'org-columns-edit-value' do not change 'property' name, just its value. On Wed, 22 Mar 2023 at 12:52, Ihor Radchenko wrote: > Sławomir Grochowski writes: > > > After updating the value of property using co

[bug] org-columns-edit-value will capitalize property

2023-03-22 Thread Sławomir Grochowski
sing upper case. https://www.psychnewsdaily.com/new-study-shows-all-caps-harder-to-read/ GNU Emacs 29.0.60 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.24, cairo version 1.16.0) of 2023-02-26 org release_9.6.1-34 Regards, Sławomir Grochowski

[BUG] org-catch-invisible-edits has stopped working [9.5.5 (9.5.5-geb5ef0 @ /home/slk/.emacs.default/straight/build/org/)]

2022-09-09 Thread Sławomir Grochowski
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See https://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org mailing list.