diff .vimrc @ 23:827efbf4d73c main-dev

Huge changes to the relationships for models and more complex
author Luka Sitas <sitas.luka.97@gmail.com>
date Fri, 11 Apr 2025 20:50:20 -0400
parents 4bb4daa9e3f1
children 55d2e5c5dad9
line wrap: on
line diff
--- a/.vimrc	Wed Feb 26 20:12:17 2025 -0500
+++ b/.vimrc	Fri Apr 11 20:50:20 2025 -0400
@@ -28,30 +28,6 @@
 " Committing commands
 map <C-k> :wa<CR>:!hg addremove && hg commit <CR>
 
-" Git commands, for now don't port to hg
-" function! GitDiffCached()
-"   let files = system('git diff --cached --name-only')
-" 
-"   if v:shell_error
-"     echo "Error running git diff"
-"     return
-"   endif
-" 
-"   let filelist = split(files, "\n")
-"   let chosen_file = inputlist(filelist)
-" 
-"   if chosen_file != -1
-" 		let cmd = 'tabnew ' . filelist[chosen_file]
-"     execute cmd
-"   endif
-" endfunction
-" 
-" execute "set <M-d>=\033d"
-" map <M-d> :call GitDiffCached()<CR>
-"
-"
-"
-"
 
 
 function! SendBufferToProgram()