diff options
author | Marc Coquand <marc@mccd.space> | 2024-05-19 15:19:39 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-05-19 15:19:39 -0500 |
commit | 0bc408515cfc9c8feff686f8c758dfaf6c997bb4 (patch) | |
tree | c26cec1667292651be4108738f7c3afba588e159 | |
parent | 51be86b41d8c61228330fe13fbdb47c5c2030336 (diff) | |
download | stitch-0.0.6.tar.gz stitch-0.0.6.tar.bz2 stitch-0.0.6.zip |
Fix escape; update manpagesv0.0.6
Diffstat (limited to '')
-rw-r--r-- | bin/main.ml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/main.ml b/bin/main.ml index 1fb024f..adfd013 100644 --- a/bin/main.ml +++ b/bin/main.ml @@ -88,8 +88,8 @@ let headlines_cmd = ; `Pre "export STITCH_DIRECTORY=/home/bob/notes" ; `P "Stitch does not specify anything on how to capture your notes, but you can \ - install the following shell script to your $PATH to have a basic note capturing \ - system." + install the following shell script to your \\$PATH to have a basic note \ + capturing system." ; `Pre " #!/bin/sh\n\ \ JRNL=\"\\$STITCH_DIRECTORY/\\$(date +'%y-%m-%d.%H:%M.%S').org\"\n\ @@ -138,6 +138,9 @@ let headlines_cmd = "After that, you can capture a few TODO items by running todo in your terminal \ or !todo in stitch, and you will be able to view them if you press 2. You can \ see done items if you press 3. Press '?' to see how to toggle the todo items." + ; `P + "You can also delete notes by selecting the line of the note you want to delete \ + and then execute !rm %(file)" ] in let commands = |