From 2767369c51badce77fbbc47ff4ffa47b90a6fd02 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Wed, 6 Mar 2024 15:23:20 -0500 Subject: [PATCH] Remove some abbreviation --- vim/config/keyboard.vim | 41 ++--------------------------------------- 1 file changed, 2 insertions(+), 39 deletions(-) diff --git a/vim/config/keyboard.vim b/vim/config/keyboard.vim index 157239b..672bf6f 100644 --- a/vim/config/keyboard.vim +++ b/vim/config/keyboard.vim @@ -9,22 +9,6 @@ " " "=============================================================" " -"Aliases: -" :GitLog & :gitlog | (C) -> show a navigatable log of commit history -" :GitDiff & :gitdiff | (C) -> current file and last commit in vimdiff -" :GitStatus & :gitstatus | (C) -> shows the output of git status -" :GitCommit & :gitcommit | (C) -> commits changes to the current file -" :git | (C) -> open a vert split with the file in diff mode -" -" :vs33 | (C) -> create a vertical split using 33% width -" :vs66 | (C) -> create a vertical split using 66% width -" :sp33 | (C) -> create a split using 33% of the height -" :sp66 | (C) -> create a split using 66% of the height -" :diff | (C) -> open a new file in diff mode -" -" :ik | (C) -> add following character to keywords -" :iK | (C) -> remove following character from keywords -" "Mappings: " (mouse) " | (A) -> scroll left @@ -204,8 +188,8 @@ " ., | (N) -> update differences " > | (N) -> replace diff in other pane with current pane " . | (N) -> replace diff in other pane with current pane -" replace diff in current pane with other pane -" replace diff in current pane with other pane +" < | (N) -> replace diff in current pane with other pane +" , | (N) -> replace diff in current pane with other pane "DISABLED DEFAULT MAPPING: UNSET SHORTCUTS {{{ "-unmapping tabbing from < and > for use with diff @@ -228,27 +212,6 @@ nnoremap "}}} -"ALIASES: COMMAND SHORTCUTS {{{ - "shortcuts to git commands - cabbrev GitDiff ':Gdiff' - cabbrev gitdiff ':Gdiff' - cabbrev GitStatus ':Gstatus' - cabbrev gitstatus ':Gstatus' - cabbrev GitCommit ':Gcommit' - cabbrev gitcommit ':Gcommit' - - "create various sizes of splits - cabbrev vs33 ':VS33' - cabbrev vs66 ':VS66' - cabbrev sp33 ':SP33' - cabbrev sp66 ':SP66' - cabbrev diff vertical diffsplit - - "add/remove character as keyword - cabbrev ik setlocal iskeyword+= - cabbrev iK setlocal iskeyword-= -"}}} - "MAPPINGS: GENERAL KEYBINDINGS AND REBINDINGS {{{ "MOUSE:{ "hold ctrl to scroll left/right instead of up/down