From 68de8582d204f7ea9ac9ed1cce30e595a08006f1 Mon Sep 17 00:00:00 2001 From: Takayuki Maeda Date: Sun, 12 Sep 2021 12:57:02 +0900 Subject: [PATCH] add "IN" to reserved words --- src/components/completion.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/completion.rs b/src/components/completion.rs index 42b36f8..5b4ea39 100644 --- a/src/components/completion.rs +++ b/src/components/completion.rs @@ -11,7 +11,7 @@ use tui::{ Frame, }; -const RESERVED_WORDS: &[&str] = &["IN", "AND", "OR", "NOT", "NULL", "IS"]; +const RESERVED_WORDS: &[&str] = &["IN", "AND", "OR", "NOT", "NULL", "IS", "IN"]; pub struct CompletionComponent { key_config: KeyConfig,