mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Add a keyboard shortcut that opens a new tab with vimdiff showing VCS differences for the current file
This commit is contained in:
parent
432d4768db
commit
4311324119
1 changed files with 5 additions and 0 deletions
|
@ -77,6 +77,8 @@
|
|||
" # | (N) -> center vertically on nth last search term
|
||||
"
|
||||
" (toggles and features)
|
||||
" <Leader>d | (N) -> VCS vimdiff in a new tab with signify
|
||||
"
|
||||
" ik | (N) -> add cursor character as a keyword
|
||||
" iK | (N) -> remove cursor character as a keyword
|
||||
"
|
||||
|
@ -404,6 +406,9 @@
|
|||
"}
|
||||
|
||||
"TOGGLES AND FEATURES:{
|
||||
"VCS vimdiff in a new tab with signify
|
||||
nnoremap <silent><expr> <Leader>d ':SignifyDiff<CR>'
|
||||
|
||||
"add/remove cursor character as a keyword
|
||||
nmap <expr><silent> <Leader>k ':execute "setlocal iskeyword+=".getline(".")[col(".")-1]<CR>:echo "The character ".getline(".")[col(".")-1]." has been added to iskeyword"<CR>'
|
||||
nmap <expr><silent> <Leader>K ':execute "setlocal iskeyword-=".getline(".")[col(".")-1]<CR>:echo "The character ".getline(".")[col(".")-1]." has been removed from iskeyword"<CR>'
|
||||
|
|
Loading…
Reference in a new issue