This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Open path cursor is sitting on into new window | |
| map gf <C-w><C-f> | |
| " Git shortcuts | |
| " Do a git diff on current buffer | |
| map gd :!git diff -b %<CR> | |
| " ShowGitStatus -- KD function to open buffer/window and display 'git status' | |
| " to allow quick jumps to modded files in a repo. | |
| map gs :ShowGitStatus<CR> |