├── .gitignore ├── Expand-Rright-Click-Menus-on-Directory-Background-shell.reg ├── Expand-Rright-Click-Menus-on-Directory-shell.reg ├── Expand-Rright-Click-Menus-on-Files-gVim1.reg ├── Expand-Rright-Click-Menus-on-Files-gVim2.reg ├── Expand-Rright-Click-Menus-on-Files-gVim3-Alternate-Method.reg ├── Git-Shell.bo ├── LICENSE ├── README.md ├── See-Also-IIS-Express-Here-master ├── IISExpressHere32bit.reg ├── IISExpressHere64bit.reg ├── LICENSE.txt └── readme.md ├── See-Also-ShellExt-1-BIN ├── ShellExt.bo └── ShellExt.dll ├── See-Also-ShellExt-1-SRC ├── ShellExt.cpp ├── ShellExt.def ├── ShellExt.dsp ├── ShellExt.h ├── ShellExt.idl ├── ShellExt.rc ├── ShellExt_i.c ├── ShellExt_p.c ├── ShellExtern.cpp ├── ShellExtern.h ├── ShellExtern.rgs ├── ShellExtps.def ├── ShellExtps.mk ├── StdAfx.cpp ├── StdAfx.h ├── dlldata.c ├── readme.txt └── resource.h ├── forceGitPushEmptyFolder.sh └── gVim-Shell.bo /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/.gitignore -------------------------------------------------------------------------------- /Expand-Rright-Click-Menus-on-Directory-Background-shell.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/Expand-Rright-Click-Menus-on-Directory-Background-shell.reg -------------------------------------------------------------------------------- /Expand-Rright-Click-Menus-on-Directory-shell.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/Expand-Rright-Click-Menus-on-Directory-shell.reg -------------------------------------------------------------------------------- /Expand-Rright-Click-Menus-on-Files-gVim1.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/Expand-Rright-Click-Menus-on-Files-gVim1.reg -------------------------------------------------------------------------------- /Expand-Rright-Click-Menus-on-Files-gVim2.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/Expand-Rright-Click-Menus-on-Files-gVim2.reg -------------------------------------------------------------------------------- /Expand-Rright-Click-Menus-on-Files-gVim3-Alternate-Method.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/Expand-Rright-Click-Menus-on-Files-gVim3-Alternate-Method.reg -------------------------------------------------------------------------------- /Git-Shell.bo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/Git-Shell.bo -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/README.md -------------------------------------------------------------------------------- /See-Also-IIS-Express-Here-master/IISExpressHere32bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-IIS-Express-Here-master/IISExpressHere32bit.reg -------------------------------------------------------------------------------- /See-Also-IIS-Express-Here-master/IISExpressHere64bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-IIS-Express-Here-master/IISExpressHere64bit.reg -------------------------------------------------------------------------------- /See-Also-IIS-Express-Here-master/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-IIS-Express-Here-master/LICENSE.txt -------------------------------------------------------------------------------- /See-Also-IIS-Express-Here-master/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-IIS-Express-Here-master/readme.md -------------------------------------------------------------------------------- /See-Also-ShellExt-1-BIN/ShellExt.bo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-BIN/ShellExt.bo -------------------------------------------------------------------------------- /See-Also-ShellExt-1-BIN/ShellExt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-BIN/ShellExt.dll -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/ShellExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/ShellExt.cpp -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/ShellExt.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/ShellExt.def -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/ShellExt.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/ShellExt.dsp -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/ShellExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/ShellExt.h -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/ShellExt.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/ShellExt.idl -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/ShellExt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/ShellExt.rc -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/ShellExt_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/ShellExt_i.c -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/ShellExt_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/ShellExt_p.c -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/ShellExtern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/ShellExtern.cpp -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/ShellExtern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/ShellExtern.h -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/ShellExtern.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/ShellExtern.rgs -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/ShellExtps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/ShellExtps.def -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/ShellExtps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/ShellExtps.mk -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/StdAfx.cpp -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/StdAfx.h -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/dlldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/dlldata.c -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/readme.txt -------------------------------------------------------------------------------- /See-Also-ShellExt-1-SRC/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/See-Also-ShellExt-1-SRC/resource.h -------------------------------------------------------------------------------- /forceGitPushEmptyFolder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/forceGitPushEmptyFolder.sh -------------------------------------------------------------------------------- /gVim-Shell.bo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ralph-Lee/Win-Shell-Menu-WinShellExt/HEAD/gVim-Shell.bo --------------------------------------------------------------------------------