From 74263bbf98de43dec07a612185d2dcec148efd22 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Sun, 25 Sep 2022 14:53:37 -0700 Subject: [PATCH] :memo: Made further notes on other native vim keybindings --- nvim_custom_keys.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nvim_custom_keys.txt b/nvim_custom_keys.txt index 500354c3..0b8c0191 100644 --- a/nvim_custom_keys.txt +++ b/nvim_custom_keys.txt @@ -85,6 +85,11 @@ shift + f - same as f, but goes backwards (i.e. shift+f+g will go to the last in t - same as f, but will go to one character before entered character shift + t -same as shift + f, but goes backwards to one character before entered character +GOOD FOR USE WITHIN FUNCTITON ENCAPSULATIONS +[{ - go to beginning encapsulation that begins with { ( can also be used with '(' ) +]} - got o the ending encapsulation that ends with } ( can also be used with ')' ) + + FROM NORMAL MODE, ENTERING OTHER MODES i - enter INSERT mode at the current cursor position a - enter INSERT mode at the following cursor position (appending)