From 8876c1d0f616d55a0c0957683781fd32af815ae3 Mon Sep 17 00:00:00 2001 From: Mo <76752051+mo8it@users.noreply.github.com> Date: Wed, 21 Feb 2024 15:20:05 +0100 Subject: [PATCH] Remove references to bit flags --- vim_style_key_config.ron | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/vim_style_key_config.ron b/vim_style_key_config.ron index e4288b8c..5f3b30c3 100644 --- a/vim_style_key_config.ron +++ b/vim_style_key_config.ron @@ -1,13 +1,8 @@ -// bit for modifiers -// bits: 0 None -// bits: 1 SHIFT -// bits: 2 CONTROL -// // Note: // If the default key layout is lower case, // and you want to use `Shift + q` to trigger the exit event, // the setting should like this `exit: Some(( code: Char('Q'), modifiers: "SHIFT")),` -// The Char should be upper case, and the shift modified bit should be set to 1. +// The Char should be upper case, and the modifier should be set to "SHIFT". // // Note: // find `KeysList` type in src/keys/key_list.rs for all possible keys.