Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] Update sqlite3 completion for version 3.42.0
- X-seq: zsh-workers 52034
- From: Shohei YOSHIDA <syohex@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Cc: Shohei YOSHIDA <syohex@xxxxxxxxx>
- Subject: [PATCH] Update sqlite3 completion for version 3.42.0
- Date: Wed, 9 Aug 2023 18:32:34 +0900
- Archived-at: <https://zsh.org/workers/52034>
- List-id: <zsh-workers.zsh.org>
Reference
- https://www.sqlite.org/cli.html#command_line_options
---
Completion/Unix/Command/_sqlite | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Completion/Unix/Command/_sqlite b/Completion/Unix/Command/_sqlite
index 7ef3c6daa..6425732f1 100644
--- a/Completion/Unix/Command/_sqlite
+++ b/Completion/Unix/Command/_sqlite
@@ -55,9 +55,13 @@ options+=(
$^dashes'-mmap[set default mmap size]:size'
$^dashes'-newline[set output row separator]:separator [\n]'
$^dashes'-nofollow[refuse to open symbolic links to database files]'
+ $^dashes'-nonce[set the safe-mode escape nonce]:string'
$^dashes'-pagecache[specify size and number of slots for page cache memory]:size (bytes): :slots'
+ $^dashes'-pcachetrace[trace all page cache operations]'
$^dashes'-readonly[open the database read-only]'
+ $^dashes'-safe[enable safe-mode]'
$^dashes'-stats[print memory stats before each finalize]'
+ $^dashes'-unsafe-testing[allow unsafe commands and modes for testing]'
$^dashes'-vfs[use specified default VFS]:vfs:(unix-dotfile unix-excl unix-none unix-namedsem)'
$^dashes'-zip[open the file as a ZIP Archive]'
)
--
2.39.2
Messages sorted by:
Reverse Date,
Date,
Thread,
Author