diff options
-rw-r--r-- | src/nvim/fileio.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 05a0a59874..4486d43578 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -72,25 +72,25 @@ * The result is an array of Autopat lists, which point to AutoCmd lists: * * first_autopat[0] --> Autopat.next --> Autopat.next --> NULL - * Autopat.cmds Autopat.cmds - * | | - * V V - * AutoCmd.next AutoCmd.next - * | | - * V V - * AutoCmd.next NULL - * | - * V - * NULL + * Autopat.cmds Autopat.cmds + * | | + * V V + * AutoCmd.next AutoCmd.next + * | | + * V V + * AutoCmd.next NULL + * | + * V + * NULL * * first_autopat[1] --> Autopat.next --> NULL - * Autopat.cmds - * | - * V - * AutoCmd.next - * | - * V - * NULL + * Autopat.cmds + * | + * V + * AutoCmd.next + * | + * V + * NULL * etc. * * The order of AutoCmds is important, this is the order in which they were |