Re: [PATCH] Add repeat-map for navigation commands

2024-09-22 Thread Ihor Radchenko
Visuwesh writes: >> 1. You can link to "9.11 Repeating a Command" section of Emacs manual > > Can you please tell how to link to an Info node? I see two different > style of linking to another manual in Introduction/Activation and I'm > confused. I do not know how ox-texinfo works. [[info:emac

Re: [PATCH] Add repeat-map for navigation commands

2024-09-22 Thread Visuwesh
[ஞாயிறு செப்டம்பர் 22, 2024] Ihor Radchenko wrote: > Visuwesh writes: > >> Please find attached. I tried my best to write the manual entry but it >> still reads awkward. > > Thanks! > >> * lisp/org-keys.el (org-up-heading): Add new alias for >> outline-up-heading. > > Please quote Elisp symbols

Re: [PATCH] Add repeat-map for navigation commands

2024-09-22 Thread Ihor Radchenko
Visuwesh writes: > Please find attached. I tried my best to write the manual entry but it > still reads awkward. Thanks! > * lisp/org-keys.el (org-up-heading): Add new alias for > outline-up-heading. Please quote Elisp symbols as `outline-up-heading'. > +** Repeating commands > +:PROPERTIES:

Re: [PATCH] Add repeat-map for navigation commands

2024-09-16 Thread Visuwesh
[ஞாயிறு செப்டம்பர் 15, 2024] Ihor Radchenko wrote: > Visuwesh writes: > >> BTW, should we add C-n and friends to org-navigation-repeat-map or just >> have n, p, etc.? I personally find C-n in the repeat-map disruptive >> since I usually want to move the cursor after jumping to a specific >> head

Re: [PATCH] Add repeat-map for navigation commands

2024-09-15 Thread Ihor Radchenko
Visuwesh writes: > BTW, should we add C-n and friends to org-navigation-repeat-map or just > have n, p, etc.? I personally find C-n in the repeat-map disruptive > since I usually want to move the cursor after jumping to a specific > heading, in which case C-n not being next-line is annoying. +1

Re: [PATCH] Add repeat-map for navigation commands

2024-09-15 Thread Ihor Radchenko
Karthik Chikmagalur writes: > Do you think it makes sense to add repeat-maps for other next/previous > commands in Org, such as org-next-link and org-previous-link? I've been > using this for a while (they don't use defvar-keymap as I wrote them a > while ago): > > (defvar org-link-navigation-re

Re: [PATCH] Add repeat-map for navigation commands

2024-09-09 Thread Visuwesh
[திங்கள் செப்டம்பர் 09, 2024] Ihor Radchenko wrote: >> ... I've attached a patch which >> adds a repeat-map to org-keys.el but this pointed out that org-mode >> lacks a org-up-heading command so I've resorted to using >> outline-up-heading. > > It is not the only one. But outline version should al

Re: [PATCH] Add repeat-map for navigation commands

2024-09-09 Thread Karthik Chikmagalur
>> From 8b980efcd9497e395f4d82a1304267ae4426b00d Mon Sep 17 00:00:00 2001 >> From: Visuwesh >> Date: Mon, 9 Sep 2024 19:46:47 +0530 >> Subject: [PATCH] Add repeat-mode keymap for navigation commands >> >> * org-keys.el (org-navigation-repeat-map): Add repeat-map to make >> navigation easier when r

Re: [PATCH] Add repeat-map for navigation commands

2024-09-09 Thread Ihor Radchenko
Visuwesh writes: > Sorry for the month long delay. I was busy with uni stuff so could not > find the time to invest into this properly. No problem. > ... I've attached a patch which > adds a repeat-map to org-keys.el but this pointed out that org-mode > lacks a org-up-heading command so I've r

[PATCH] Add repeat-map for navigation commands

2024-09-09 Thread Visuwesh
Ihor says: > - visuwesh asked whether Org mode could have repeat maps for outline > navigation in Org mode (C-c C-n n n p n p ..., C-c C-f b f...) > - Such functionality has been added to outline-mode upstream > - Patches for Org mode equivalent are indeed welcome > - They do not even hav