diff options
| author | Teddy Wing | 2021-10-16 01:01:36 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2021-10-16 01:01:36 +0200 | 
| commit | d524665024efe253f8d8fe4a96045b59a3aed9cb (patch) | |
| tree | ba80e20cf01d666ad1549f5c1ee989be2aee99e0 /doc | |
| parent | 53ba8107609daacb617351a0e11b304196a13a4a (diff) | |
| download | vim-twodo-d524665024efe253f8d8fe4a96045b59a3aed9cb.tar.bz2 | |
doc/todo.txt: Replace backtick separators with quotes
Backticks are used to refer to Vim commands in help files. The Vim docs
explain:
> When referring to a Vim command and to create a hot-link, place the
> name between two backticks, eg. inside `:filetype`.  You will see this
> is highlighted as a command, like a code block (see below).
These aren't Vim commands, so use a different surrounding mark. Settled
on double quotes.
This also fixes a display problem with the "`- `" text, which was
rendered as "`- " (without the final backtick) in the highlighted help
due to the parsing for syntax highlight concealing.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/todo.txt | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/doc/todo.txt b/doc/todo.txt index f0dfd35..410ef76 100644 --- a/doc/todo.txt +++ b/doc/todo.txt @@ -8,12 +8,12 @@ Version: 0.1.1  INTRODUCTION                                                            *todo*  Syntax highlighting and mappings to view and manipulate to-do lists. Files -should end in a `.todo` extension. +should end in a ".todo" extension.  ==============================================================================  EXAMPLE                                                         *todo-example* -    - Regular priority to-dos are prefixed with a `- ` +    - Regular priority to-dos are prefixed with a "- "      _ A low priority to-do      ! A high priority to-do      x A deleted to-do | 
