From c35af7f7cab984244f7cefb63c7caeb2c10a7f12 Mon Sep 17 00:00:00 2001 From: Takayuki Maeda Date: Sun, 12 Sep 2021 14:40:08 +0900 Subject: [PATCH] remove "IN" --- 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 5b4ea39..42b36f8 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", "IN"]; +const RESERVED_WORDS: &[&str] = &["IN", "AND", "OR", "NOT", "NULL", "IS"]; pub struct CompletionComponent { key_config: KeyConfig,