[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 01/12] Ignore patch files
[Thread Prev] | [Thread Next]
- Subject: [PATCH 01/12] Ignore patch files
- From: Rory Dudley <rory@xxxxxxx>
- Reply-to: rory@xxxxxxx
- Date: Mon, 30 Sep 2024 21:42:51 -0600
- To: lore@xxxxxxxxxxxx
Ignore patch files generated by 'git format-patch'. Signed-off-by: Rory Dudley <rory@xxxxxxx> --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index ea8c4bf..698f0d7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /target +*.patch -- 2.46.2
[PATCH 02/12] Replace io::stdin().read_line() with custom function | Rory Dudley <rory@xxxxxxx> |
[PATCH 03/12] Keep track of position in getline() | Rory Dudley <rory@xxxxxxx> |
[PATCH 04/12] Slight refactor of getchar() and more handling for getline() | Rory Dudley <rory@xxxxxxx> |
[PATCH 05/12] Allow escaping characters | Rory Dudley <rory@xxxxxxx> |
[PATCH 07/12] Fixed a bug introduced with termios | Rory Dudley <rory@xxxxxxx> |
[PATCH 10/12] Don't panic if autcomplete() fails | Rory Dudley <rory@xxxxxxx> |
[PATCH 09/12] Expand filepath autocomplete | Rory Dudley <rory@xxxxxxx> |
[PATCH 08/12] Add autocomplete | Rory Dudley <rory@xxxxxxx> |
[PATCH 11/12] Fix Tab/Shift+Tab autocomplete behavior | Rory Dudley <rory@xxxxxxx> |
[PATCH 06/12] Refactor Verse::clause() | Rory Dudley <rory@xxxxxxx> |
[PATCH 12/12] Add backslashes to words with spaces in autocomplete() | Rory Dudley <rory@xxxxxxx> |