* org-mode: Would like to add custom chars as org-list bullets
@ 2018-10-13 1:54 Tom Burbage
2018-10-13 5:33 ` Nicolas Goaziou
2018-10-13 6:55 ` Colin Baxter
0 siblings, 2 replies; 6+ messages in thread
From: Tom Burbage @ 2018-10-13 1:54 UTC (permalink / raw)
To: emacs-orgmode
When I use simple lists, I would like to be able to mix in '!' and '?'
with '-' as these are sometimes more expressive of what the list item
represents.
My request is that the list of characters org-list recognizes as being a
valid "bullet" be customizable by the user.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-mode: Would like to add custom chars as org-list bullets
2018-10-13 1:54 org-mode: Would like to add custom chars as org-list bullets Tom Burbage
@ 2018-10-13 5:33 ` Nicolas Goaziou
2018-10-13 6:55 ` Colin Baxter
1 sibling, 0 replies; 6+ messages in thread
From: Nicolas Goaziou @ 2018-10-13 5:33 UTC (permalink / raw)
To: Tom Burbage; +Cc: emacs-orgmode
Hello,
Tom Burbage <tiburbage@gmail.com> writes:
> My request is that the list of characters org-list recognizes as being
> a valid "bullet" be customizable by the user.
The syntax is not meant to be customizable. It goes against having
a standard Org format.
You can however, put overlays on top of bullets and /display/ them as
you wish. The extension "org-bullets" does something similar.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-mode: Would like to add custom chars as org-list bullets
2018-10-13 1:54 org-mode: Would like to add custom chars as org-list bullets Tom Burbage
2018-10-13 5:33 ` Nicolas Goaziou
@ 2018-10-13 6:55 ` Colin Baxter
2018-10-25 0:47 ` Grant Rettke
1 sibling, 1 reply; 6+ messages in thread
From: Colin Baxter @ 2018-10-13 6:55 UTC (permalink / raw)
To: Tom Burbage; +Cc: emacs-orgmode
>>>>> Tom Burbage <tiburbage@gmail.com> writes:
> When I use simple lists, I would like to be able to mix in '!' and
> '?' with '-' as these are sometimes more expressive of what the
> list item represents. My request is that the list of characters
> org-list recognizes as being a valid "bullet" be customizable by
> the user.
Have a look at https://emacs.stackexchange.com/questions/35626/how-to-make-my-own-org-mode-text-emphasis-work-again.
Best wishes,
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-mode: Would like to add custom chars as org-list bullets
2018-10-13 6:55 ` Colin Baxter
@ 2018-10-25 0:47 ` Grant Rettke
2018-10-25 15:22 ` Colin Baxter
2018-10-29 19:21 ` Tom Burbage
0 siblings, 2 replies; 6+ messages in thread
From: Grant Rettke @ 2018-10-25 0:47 UTC (permalink / raw)
To: m43cap; +Cc: tiburbage, Org-mode
On Sat, Oct 13, 2018 at 1:56 AM Colin Baxter <m43cap@yandex.com> wrote:
>
> >>>>> Tom Burbage <tiburbage@gmail.com> writes:
>
> > When I use simple lists, I would like to be able to mix in '!' and
> > '?' with '-' as these are sometimes more expressive of what the
> > list item represents. My request is that the list of characters
> > org-list recognizes as being a valid "bullet" be customizable by
> > the user.
>
> Have a look at https://emacs.stackexchange.com/questions/35626/how-to-make-my-own-org-mode-text-emphasis-work-again.
Which code are you recommending?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-mode: Would like to add custom chars as org-list bullets
2018-10-25 0:47 ` Grant Rettke
@ 2018-10-25 15:22 ` Colin Baxter
2018-10-29 19:21 ` Tom Burbage
1 sibling, 0 replies; 6+ messages in thread
From: Colin Baxter @ 2018-10-25 15:22 UTC (permalink / raw)
To: Grant Rettke; +Cc: tiburbage, Org-mode
>>>>> Grant Rettke <gcr@wisdomandwonder.com> writes:
> On Sat, Oct 13, 2018 at 1:56 AM Colin Baxter <m43cap@yandex.com> wrote:
>>
>> >>>>> Tom Burbage <tiburbage@gmail.com> writes:
>>
>> > When I use simple lists, I would like to be able to mix in '!'
>> and > '?' with '-' as these are sometimes more expressive of
>> what the > list item represents. My request is that the list of
>> characters > org-list recognizes as being a valid "bullet" be
>> customizable by > the user.
>>
>> Have a look at
>> https://emacs.stackexchange.com/questions/35626/how-to-make-my-own-org-mode-text-emphasis-work-again.
> Which code are you recommending?
I'm not recommending anything. I'm suggesting that if you want
one or more characters in a list to act as emphasis then perhaps they
could be defined in terms of org-font-lock-extra-keywords, as in 'Answer
2'.
Best wishes,
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-mode: Would like to add custom chars as org-list bullets
2018-10-25 0:47 ` Grant Rettke
2018-10-25 15:22 ` Colin Baxter
@ 2018-10-29 19:21 ` Tom Burbage
1 sibling, 0 replies; 6+ messages in thread
From: Tom Burbage @ 2018-10-29 19:21 UTC (permalink / raw)
To: Grant Rettke, m43cap; +Cc: Org-mode
[-- Attachment #1: Type: text/plain, Size: 1511 bytes --]
I don't think the suggestions made in that thread are going to help in
terms of org-mode recognizing a line as being a list item.
What I tried that I did think might work was to customize
org-list-full-item-re:
org-list-full-item-re is a variable defined in ‘org-list.el’.
Its value is
"^[ ]*\\(\\*(?:[-+*]\\|\\(?:[0-9]+\\|[A-Za-z]\\)[.)]\\)*\\(?:[
]+\\|$\\)\\)\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][
]*\\)?\\(?:\\(\\[[ X-]\\]\\)\\(?:[ ]+\\|$\\)\\)?\\(?:\\(.*\\)[
]+::\\(?:[ ]+\\|$\\)\\)?"
This variable may be risky if used as a file-local variable.
Documentation:
Matches a list item and puts everything into groups:
*group 1: bullet*
group 2: counter
group 3: checkbox
group 4: description tag
to add '!' and '?' to '-+' in the group 1 expression, but that didn't do
it. ( *[-+*] => [-+!?*]* )
On 10/24/2018 5:47 PM, Grant Rettke wrote:
> On Sat, Oct 13, 2018 at 1:56 AM Colin Baxter <m43cap@yandex.com> wrote:
>>>>>>> Tom Burbage <tiburbage@gmail.com> writes:
>> > When I use simple lists, I would like to be able to mix in '!' and
>> > '?' with '-' as these are sometimes more expressive of what the
>> > list item represents. My request is that the list of characters
>> > org-list recognizes as being a valid "bullet" be customizable by
>> > the user.
>>
>> Have a look at https://emacs.stackexchange.com/questions/35626/how-to-make-my-own-org-mode-text-emphasis-work-again.
> Which code are you recommending?
[-- Attachment #2: Type: text/html, Size: 2942 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-10-29 19:21 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-13 1:54 org-mode: Would like to add custom chars as org-list bullets Tom Burbage
2018-10-13 5:33 ` Nicolas Goaziou
2018-10-13 6:55 ` Colin Baxter
2018-10-25 0:47 ` Grant Rettke
2018-10-25 15:22 ` Colin Baxter
2018-10-29 19:21 ` Tom Burbage
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).