[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 00/11] Add filepath autcomplete
[Thread Prev] | [Thread Next]
- Subject: [PATCH 00/11] Add filepath autcomplete
- From: Rory Dudley <rory@xxxxxxx>
- Reply-to: rory@xxxxxxx
- Date: Mon, 30 Sep 2024 21:55:31 -0600
- To: lore@xxxxxxxxxxxx
This patch series adds a fully functional autocomplete for filepaths for dwarvish. Rory Dudley (11): Replace io::stdin().read_line() with custom function Keep track of position in getline() Slight refactor of getchar() and more handling for getline() Allow escaping characters Refactor Verse::clause() Fixed a bug introduced with termios Add autocomplete Expand filepath autocomplete Don't panic if autcomplete() fails Fix Tab/Shift+Tab autocomplete behavior Add backslashes to words with spaces in autocomplete() -- 2.46.2
[PATCH 01/11] Replace io::stdin().read_line() with custom function | Rory Dudley <rory@xxxxxxx> |
[PATCH 02/11] Keep track of position in getline() | Rory Dudley <rory@xxxxxxx> |
[PATCH 03/11] Slight refactor of getchar() and more handling for getline() | Rory Dudley <rory@xxxxxxx> |
[PATCH 04/11] Allow escaping characters | Rory Dudley <rory@xxxxxxx> |
[PATCH 06/11] Fixed a bug introduced with termios | Rory Dudley <rory@xxxxxxx> |
[PATCH 09/11] Don't panic if autcomplete() fails | Rory Dudley <rory@xxxxxxx> |
[PATCH 10/11] Fix Tab/Shift+Tab autocomplete behavior | Rory Dudley <rory@xxxxxxx> |
[PATCH 07/11] Add autocomplete | Rory Dudley <rory@xxxxxxx> |
[PATCH 08/11] Expand filepath autocomplete | Rory Dudley <rory@xxxxxxx> |
[PATCH 11/11] Add backslashes to words with spaces in autocomplete() | Rory Dudley <rory@xxxxxxx> |
[PATCH 05/11] Refactor Verse::clause() | Rory Dudley <rory@xxxxxxx> |