├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── CI_build.yml ├── .vs └── RandomValuesNppPlugin │ └── v16 │ └── .suo ├── RandomValuesNppPlugin.sln ├── RandomValuesNppPlugin ├── Forms │ ├── AboutForm.Designer.cs │ ├── AboutForm.cs │ ├── AboutForm.resx │ ├── GenerateForm.Designer.cs │ ├── GenerateForm.cs │ ├── GenerateForm.resx │ ├── OptionsForm.Designer.cs │ ├── OptionsForm.cs │ └── OptionsForm.resx ├── Main.cs ├── PluginInfrastructure │ ├── ClikeStringArray.cs │ ├── DllExport │ │ ├── DllExportAttribute.cs │ │ ├── Mono.Cecil.dll │ │ ├── NppPlugin.DllExport.MSBuild.dll │ │ ├── NppPlugin.DllExport.dll │ │ └── NppPlugin.DllExport.targets │ ├── Docking_h.cs │ ├── GatewayDomain.cs │ ├── IScintillaGateway.cs │ ├── MenuCmdID_h.cs │ ├── Msgs_h.cs │ ├── NotepadPPGateway.cs │ ├── NppPluginNETBase.cs │ ├── NppPluginNETHelper.cs │ ├── Preference_h.cs │ ├── Resource_h.cs │ ├── ScintillaGateway.cs │ ├── Scintilla_iface.cs │ ├── UnmanagedExports.cs │ └── Win32.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── btn_add.png │ ├── btn_delete.png │ ├── btn_move_down.png │ ├── btn_move_up.png │ ├── clover.png │ ├── easteregg.png │ ├── oliebol.png │ ├── pumpkin.png │ ├── random_icon_bmp.png │ ├── random_icon_png.png │ ├── star.png │ └── star_bmp.bmp ├── RandomValue.cs ├── RandomValueListItem.cs ├── RandomValues.cs ├── RandomValuesNppPlugin.csproj ├── Resources │ ├── dice_black_32px.ico │ └── dice_white_32px.ico ├── Tools │ ├── Settings.cs │ ├── SettingsBase.cs │ └── SettingsChangedEventArgs.cs ├── bin │ ├── Debug-x64 │ │ ├── RandomValuesNppPlugin.dll │ │ └── RandomValuesNppPlugin.pdb │ ├── Debug │ │ ├── RandomValuesNppPlugin.dll │ │ └── RandomValuesNppPlugin.pdb │ ├── Release-x64 │ │ └── RandomValuesNppPlugin.dll │ └── Release │ │ └── RandomValuesNppPlugin.dll └── obj │ ├── x64 │ └── Debug │ │ ├── .NETFramework,Version=v4.0.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Kbg.NppPluginNET.frmMyDlg.resources │ │ ├── RandomValuesNppPlugin.AboutForm.resources │ │ ├── RandomValuesNppPlugin.GenerateForm.resources │ │ ├── RandomValuesNppPlugin.Properties.Resources.resources │ │ ├── RandomValuesNppPlugin.csproj.AssemblyReference.cache │ │ ├── RandomValuesNppPlugin.csproj.CoreCompileInputs.cache │ │ ├── RandomValuesNppPlugin.csproj.FileListAbsolute.txt │ │ ├── RandomValuesNppPlugin.csproj.GenerateResource.cache │ │ ├── RandomValuesNppPlugin.dll │ │ ├── RandomValuesNppPlugin.pdb │ │ └── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ └── x86 │ └── Debug │ ├── .NETFramework,Version=v4.0.AssemblyAttributes.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── RandomValuesNppPlugin.AboutForm.resources │ ├── RandomValuesNppPlugin.GenerateForm.resources │ ├── RandomValuesNppPlugin.OptionsForm.resources │ ├── RandomValuesNppPlugin.Properties.Resources.resources │ ├── RandomValuesNppPlugin.csproj.AssemblyReference.cache │ ├── RandomValuesNppPlugin.csproj.CoreCompileInputs.cache │ ├── RandomValuesNppPlugin.csproj.FileListAbsolute.txt │ ├── RandomValuesNppPlugin.csproj.GenerateResource.cache │ ├── RandomValuesNppPlugin.dll │ ├── RandomValuesNppPlugin.pdb │ └── TempPE │ └── Properties.Resources.Designer.cs.dll ├── random_values.py ├── randomvalues_preview.png └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CI_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/.github/workflows/CI_build.yml -------------------------------------------------------------------------------- /.vs/RandomValuesNppPlugin/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/.vs/RandomValuesNppPlugin/v16/.suo -------------------------------------------------------------------------------- /RandomValuesNppPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin.sln -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Forms/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Forms/AboutForm.Designer.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Forms/AboutForm.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Forms/AboutForm.resx -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Forms/GenerateForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Forms/GenerateForm.Designer.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Forms/GenerateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Forms/GenerateForm.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Forms/GenerateForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Forms/GenerateForm.resx -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Forms/OptionsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Forms/OptionsForm.Designer.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Forms/OptionsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Forms/OptionsForm.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Forms/OptionsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Forms/OptionsForm.resx -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Main.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/ClikeStringArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/ClikeStringArray.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/DllExport/DllExportAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/DllExport/DllExportAttribute.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/DllExport/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/DllExport/Mono.Cecil.dll -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/DllExport/NppPlugin.DllExport.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/DllExport/NppPlugin.DllExport.MSBuild.dll -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/DllExport/NppPlugin.DllExport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/DllExport/NppPlugin.DllExport.dll -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/DllExport/NppPlugin.DllExport.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/DllExport/NppPlugin.DllExport.targets -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/Docking_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/Docking_h.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/GatewayDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/GatewayDomain.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/IScintillaGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/IScintillaGateway.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/MenuCmdID_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/MenuCmdID_h.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/Msgs_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/Msgs_h.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/NotepadPPGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/NotepadPPGateway.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/NppPluginNETBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/NppPluginNETBase.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/NppPluginNETHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/NppPluginNETHelper.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/Preference_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/Preference_h.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/Resource_h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/Resource_h.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/ScintillaGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/ScintillaGateway.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/Scintilla_iface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/Scintilla_iface.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/UnmanagedExports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/UnmanagedExports.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/PluginInfrastructure/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/PluginInfrastructure/Win32.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/Resources.resx -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/btn_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/btn_add.png -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/btn_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/btn_delete.png -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/btn_move_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/btn_move_down.png -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/btn_move_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/btn_move_up.png -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/clover.png -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/easteregg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/easteregg.png -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/oliebol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/oliebol.png -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/pumpkin.png -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/random_icon_bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/random_icon_bmp.png -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/random_icon_png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/random_icon_png.png -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/star.png -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Properties/star_bmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Properties/star_bmp.bmp -------------------------------------------------------------------------------- /RandomValuesNppPlugin/RandomValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/RandomValue.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/RandomValueListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/RandomValueListItem.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/RandomValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/RandomValues.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/RandomValuesNppPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/RandomValuesNppPlugin.csproj -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Resources/dice_black_32px.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Resources/dice_black_32px.ico -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Resources/dice_white_32px.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Resources/dice_white_32px.ico -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Tools/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Tools/Settings.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Tools/SettingsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Tools/SettingsBase.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/Tools/SettingsChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/Tools/SettingsChangedEventArgs.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/bin/Debug-x64/RandomValuesNppPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/bin/Debug-x64/RandomValuesNppPlugin.dll -------------------------------------------------------------------------------- /RandomValuesNppPlugin/bin/Debug-x64/RandomValuesNppPlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/bin/Debug-x64/RandomValuesNppPlugin.pdb -------------------------------------------------------------------------------- /RandomValuesNppPlugin/bin/Debug/RandomValuesNppPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/bin/Debug/RandomValuesNppPlugin.dll -------------------------------------------------------------------------------- /RandomValuesNppPlugin/bin/Debug/RandomValuesNppPlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/bin/Debug/RandomValuesNppPlugin.pdb -------------------------------------------------------------------------------- /RandomValuesNppPlugin/bin/Release-x64/RandomValuesNppPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/bin/Release-x64/RandomValuesNppPlugin.dll -------------------------------------------------------------------------------- /RandomValuesNppPlugin/bin/Release/RandomValuesNppPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/bin/Release/RandomValuesNppPlugin.dll -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/Kbg.NppPluginNET.frmMyDlg.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/Kbg.NppPluginNET.frmMyDlg.resources -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.AboutForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.AboutForm.resources -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.GenerateForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.GenerateForm.resources -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.Properties.Resources.resources -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.dll -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/RandomValuesNppPlugin.pdb -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x64/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x64/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x86/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.AboutForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.AboutForm.resources -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.GenerateForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.GenerateForm.resources -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.OptionsForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.OptionsForm.resources -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.Properties.Resources.resources -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 806169cd9a4719c0b7b167b09a9d4a680b07be57 2 | -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.dll -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x86/Debug/RandomValuesNppPlugin.pdb -------------------------------------------------------------------------------- /RandomValuesNppPlugin/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/RandomValuesNppPlugin/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /random_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/random_values.py -------------------------------------------------------------------------------- /randomvalues_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/randomvalues_preview.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BdR76/RandomValuesNPP/HEAD/readme.md --------------------------------------------------------------------------------