@@ -599,33 +599,33 @@ JANET_CORE_FN(cfun_filewatch_make,
599
599
JANET_CORE_FN (cfun_filewatch_add ,
600
600
"(filewatch/add watcher path &opt flags)" ,
601
601
"Add a path to the watcher. Available flags depend on the current OS, and are as follows:\n\n"
602
- "Windows/MINGW (flags correspond to FILE_NOTIFY_CHANGE_* flags in win32 documentation):\n\n"
602
+ "Windows/MINGW (flags correspond to ` FILE_NOTIFY_CHANGE_*` flags in win32 documentation):\n\n"
603
603
"* `:all` - trigger an event for all of the below triggers.\n\n"
604
- "* `:attributes` - FILE_NOTIFY_CHANGE_ATTRIBUTES\n\n"
605
- "* `:creation` - FILE_NOTIFY_CHANGE_CREATION\n\n"
606
- "* `:dir-name` - FILE_NOTIFY_CHANGE_DIR_NAME\n\n"
607
- "* `:last-access` - FILE_NOTIFY_CHANGE_LAST_ACCESS\n\n"
608
- "* `:last-write` - FILE_NOTIFY_CHANGE_LAST_WRITE\n\n"
609
- "* `:security` - FILE_NOTIFY_CHANGE_SECURITY\n\n"
610
- "* `:size` - FILE_NOTIFY_CHANGE_SIZE\n\n"
604
+ "* `:attributes` - ` FILE_NOTIFY_CHANGE_ATTRIBUTES` \n\n"
605
+ "* `:creation` - ` FILE_NOTIFY_CHANGE_CREATION` \n\n"
606
+ "* `:dir-name` - ` FILE_NOTIFY_CHANGE_DIR_NAME` \n\n"
607
+ "* `:last-access` - ` FILE_NOTIFY_CHANGE_LAST_ACCESS` \n\n"
608
+ "* `:last-write` - ` FILE_NOTIFY_CHANGE_LAST_WRITE` \n\n"
609
+ "* `:security` - ` FILE_NOTIFY_CHANGE_SECURITY` \n\n"
610
+ "* `:size` - ` FILE_NOTIFY_CHANGE_SIZE` \n\n"
611
611
"* `:recursive` - watch subdirectories recursively\n\n"
612
- "Linux (flags correspond to IN_* flags from <sys/inotify.h>):\n\n"
613
- "* `:access` - IN_ACCESS\n\n"
614
- "* `:all` - IN_ALL_EVENTS\n\n"
615
- "* `:attrib` - IN_ATTRIB\n\n"
616
- "* `:close-nowrite` - IN_CLOSE_NOWRITE\n\n"
617
- "* `:close-write` - IN_CLOSE_WRITE\n\n"
618
- "* `:create` - IN_CREATE\n\n"
619
- "* `:delete` - IN_DELETE\n\n"
620
- "* `:delete-self` - IN_DELETE_SELF\n\n"
621
- "* `:ignored` - IN_IGNORED\n\n"
622
- "* `:modify` - IN_MODIFY\n\n"
623
- "* `:move-self` - IN_MOVE_SELF\n\n"
624
- "* `:moved-from` - IN_MOVED_FROM\n\n"
625
- "* `:moved-to` - IN_MOVED_TO\n\n"
626
- "* `:open` - IN_OPEN\n\n"
627
- "* `:q-overflow` - IN_Q_OVERFLOW\n\n"
628
- "* `:unmount` - IN_UNMOUNT\n\n\n"
612
+ "Linux (flags correspond to ` IN_*` flags from <sys/inotify.h>):\n\n"
613
+ "* `:access` - ` IN_ACCESS` \n\n"
614
+ "* `:all` - ` IN_ALL_EVENTS` \n\n"
615
+ "* `:attrib` - ` IN_ATTRIB` \n\n"
616
+ "* `:close-nowrite` - ` IN_CLOSE_NOWRITE` \n\n"
617
+ "* `:close-write` - ` IN_CLOSE_WRITE` \n\n"
618
+ "* `:create` - ` IN_CREATE` \n\n"
619
+ "* `:delete` - ` IN_DELETE` \n\n"
620
+ "* `:delete-self` - ` IN_DELETE_SELF` \n\n"
621
+ "* `:ignored` - ` IN_IGNORED` \n\n"
622
+ "* `:modify` - ` IN_MODIFY` \n\n"
623
+ "* `:move-self` - ` IN_MOVE_SELF` \n\n"
624
+ "* `:moved-from` - ` IN_MOVED_FROM` \n\n"
625
+ "* `:moved-to` - ` IN_MOVED_TO` \n\n"
626
+ "* `:open` - ` IN_OPEN` \n\n"
627
+ "* `:q-overflow` - ` IN_Q_OVERFLOW` \n\n"
628
+ "* `:unmount` - ` IN_UNMOUNT` \n\n\n"
629
629
"On Windows, events will have the following possible types:\n\n"
630
630
"* `:unknown`\n\n"
631
631
"* `:added`\n\n"
0 commit comments