diff --git a/README.md b/README.md index 8cc43b2..20664ab 100644 --- a/README.md +++ b/README.md @@ -201,6 +201,7 @@ files contain key mappings as well (TODO: probably will move them out to skwp-ke * ,T - Tag list (list of methods in a class) **File Navigation** + * ,t - Command-T fuzzy file selector * ,jm jump (command-t) app/models * ,jc app/controllers @@ -223,7 +224,7 @@ files contain key mappings as well (TODO: probably will move them out to skwp-ke **Tab Navigation** - * Cmd-H and Cmd-L - left an right on tabs + * Ctrl-H and Ctrl-L - left an right on tabs * Use Cmd-1..Cmd-0 to switch to a specific tab number (like iTerm) - and tabs have been set up to show numbers **Window Navigation** diff --git a/vim/plugin/settings/skwp-keymap.vim b/vim/plugin/settings/skwp-keymap.vim index bf6901e..0a7efee 100644 --- a/vim/plugin/settings/skwp-keymap.vim +++ b/vim/plugin/settings/skwp-keymap.vim @@ -86,9 +86,9 @@ nnoremap L l nnoremap I k nnoremap M j -" Move between tabs with Cmd-Shift-H and Cmd-Shift-L -map :tabprevious -map :tabnext +" Move between tabs with Ctrl-Shift-H and Ctrl-Shift-L +map :tabprevious +map :tabnext " Zoom in and out of current window with ,, map ,, o @@ -154,7 +154,7 @@ nnoremap ' ` nnoremap ` ' " ============================ -" Tabularize - alignment +" Tabularize - alignment " ============================ " Hit Cmd-Shift-A then type a character you want to align by nmap :Tabularize / @@ -180,7 +180,7 @@ nmap ,bc :ClearBookmarks " Abbreviations to use... " ============================ " snippets that are expanded with space -abbr pry! require 'pry'; binding.pry +abbr pry! require 'pry'; binding.pry " ============================ " vim-rspec