├── .gitignore ├── Conf └── VimD.ini.help.txt ├── Core ├── Main.ahk ├── Vim.ahk └── VimDConfig.ahk ├── Doc ├── Example.ahk ├── Images │ ├── vimdesktop_128.jpg │ ├── vimdesktop_32.jpg │ └── vimdesktop_64.jpg └── PluginTemplete.ahk ├── LICENSE ├── Lib ├── Acc.ahk ├── EasyIni.ahk ├── GDIP.ahk └── Logger.ahk ├── Plugins ├── BeyondCompare4 │ └── BeyondCompare4.ahk ├── DoubleCommander │ ├── DoubleCommander.ahk │ └── Readme.md ├── Explorer │ └── Explorer.ahk ├── Foobar2000 │ └── Foobar2000.ahk ├── General │ └── General.ahk ├── MicrosoftExcel │ ├── InputColor.ahk │ ├── MicrosoftExcel.ahk │ └── readme.ini ├── Plugins.ahk ├── Readme.txt ├── TCCompare │ └── TCCompare.ahk ├── TCDialog │ ├── Readme.md │ └── TCDialog.ahk ├── TotalCommander │ ├── GenerateCommands.zsh │ ├── TCCommand.ahk │ ├── TotalCommander.ahk │ └── a-zhistory.icl └── WinMerge │ └── WinMerge.ahk ├── README.md ├── VERSION ├── VimD.ahk └── VimD.ico /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | /Conf/VimD.ini 3 | /Custom.ahk 4 | -------------------------------------------------------------------------------- /Conf/VimD.ini.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Conf/VimD.ini.help.txt -------------------------------------------------------------------------------- /Core/Main.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Core/Main.ahk -------------------------------------------------------------------------------- /Core/Vim.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Core/Vim.ahk -------------------------------------------------------------------------------- /Core/VimDConfig.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Core/VimDConfig.ahk -------------------------------------------------------------------------------- /Doc/Example.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Doc/Example.ahk -------------------------------------------------------------------------------- /Doc/Images/vimdesktop_128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Doc/Images/vimdesktop_128.jpg -------------------------------------------------------------------------------- /Doc/Images/vimdesktop_32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Doc/Images/vimdesktop_32.jpg -------------------------------------------------------------------------------- /Doc/Images/vimdesktop_64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Doc/Images/vimdesktop_64.jpg -------------------------------------------------------------------------------- /Doc/PluginTemplete.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Doc/PluginTemplete.ahk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/Acc.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Lib/Acc.ahk -------------------------------------------------------------------------------- /Lib/EasyIni.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Lib/EasyIni.ahk -------------------------------------------------------------------------------- /Lib/GDIP.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Lib/GDIP.ahk -------------------------------------------------------------------------------- /Lib/Logger.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Lib/Logger.ahk -------------------------------------------------------------------------------- /Plugins/BeyondCompare4/BeyondCompare4.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/BeyondCompare4/BeyondCompare4.ahk -------------------------------------------------------------------------------- /Plugins/DoubleCommander/DoubleCommander.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/DoubleCommander/DoubleCommander.ahk -------------------------------------------------------------------------------- /Plugins/DoubleCommander/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/DoubleCommander/Readme.md -------------------------------------------------------------------------------- /Plugins/Explorer/Explorer.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/Explorer/Explorer.ahk -------------------------------------------------------------------------------- /Plugins/Foobar2000/Foobar2000.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/Foobar2000/Foobar2000.ahk -------------------------------------------------------------------------------- /Plugins/General/General.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/General/General.ahk -------------------------------------------------------------------------------- /Plugins/MicrosoftExcel/InputColor.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/MicrosoftExcel/InputColor.ahk -------------------------------------------------------------------------------- /Plugins/MicrosoftExcel/MicrosoftExcel.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/MicrosoftExcel/MicrosoftExcel.ahk -------------------------------------------------------------------------------- /Plugins/MicrosoftExcel/readme.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/MicrosoftExcel/readme.ini -------------------------------------------------------------------------------- /Plugins/Plugins.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/Plugins.ahk -------------------------------------------------------------------------------- /Plugins/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/Readme.txt -------------------------------------------------------------------------------- /Plugins/TCCompare/TCCompare.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/TCCompare/TCCompare.ahk -------------------------------------------------------------------------------- /Plugins/TCDialog/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/TCDialog/Readme.md -------------------------------------------------------------------------------- /Plugins/TCDialog/TCDialog.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/TCDialog/TCDialog.ahk -------------------------------------------------------------------------------- /Plugins/TotalCommander/GenerateCommands.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/TotalCommander/GenerateCommands.zsh -------------------------------------------------------------------------------- /Plugins/TotalCommander/TCCommand.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/TotalCommander/TCCommand.ahk -------------------------------------------------------------------------------- /Plugins/TotalCommander/TotalCommander.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/TotalCommander/TotalCommander.ahk -------------------------------------------------------------------------------- /Plugins/TotalCommander/a-zhistory.icl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/TotalCommander/a-zhistory.icl -------------------------------------------------------------------------------- /Plugins/WinMerge/WinMerge.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/Plugins/WinMerge/WinMerge.ahk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | latest 2 | -------------------------------------------------------------------------------- /VimD.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/VimD.ahk -------------------------------------------------------------------------------- /VimD.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreliu/vimdesktop/HEAD/VimD.ico --------------------------------------------------------------------------------