vimrc

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules

commit c554d015ff1edc1423740e41ff91644ae71539fc
parent a24ec46c2243d02daed7797d0ea4b00775661762
Author: Pablo Cárdenas <pablo.cardenas@imca.edu.pe>
Date:   Wed, 26 Jun 2024 17:41:48 -0500

block some commands for learning

Diffstat:
Mvimrc | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/vimrc b/vimrc @@ -33,6 +33,17 @@ nnoremap h $ nnoremap l 0 nnoremap j gg nnoremap k G +nnoremap e :echo "Use ge"<CR> +nnoremap b :echo "Use ge"<CR> +nnoremap $ :echo "Use g$ or g_"<CR> +nnoremap ^ :echo "Use g^ or g0"<CR> +nnoremap 0 :echo "Use g0 or g^"<CR> +nnoremap _ :echo "Use g0"<CR> +nnoremap r :echo "Use gr"<CR> +nnoremap R :echo "Use gR"<CR> +nnoremap ~ :echo "Use g~"<CR> +nnoremap * :echo "Use g*"<CR> +nnoremap # :echo "Use g#"<CR> nnoremap <Left> $ nnoremap <Right> 0 nnoremap <Up> G