├── .github ├── FUNDING.yml └── workflows │ └── macos.yml ├── .gitignore ├── ACEView.framework ├── ACEView ├── Headers ├── PrivateHeaders ├── Resources └── Versions │ ├── A │ ├── ACEView │ ├── Headers │ │ ├── ACEKeyboardHandlerNames.h │ │ ├── ACEKeyboardHandlers.h │ │ ├── ACEModeNames.h │ │ ├── ACEModes.h │ │ ├── ACESearchItem.h │ │ ├── ACEThemeNames.h │ │ ├── ACEThemes.h │ │ └── ACEView.h │ ├── PrivateHeaders │ │ ├── ACELogger.h │ │ └── ACEView-Prefix.pch │ ├── Resources │ │ ├── Info.plist │ │ ├── ace.js │ │ ├── emmet.js │ │ ├── ext-beautify.js │ │ ├── ext-chromevox.js │ │ ├── ext-elastic_tabstops_lite.js │ │ ├── ext-emmet.js │ │ ├── ext-error_marker.js │ │ ├── ext-keybinding_menu.js │ │ ├── ext-language_tools.js │ │ ├── ext-linking.js │ │ ├── ext-modelist.js │ │ ├── ext-old_ie.js │ │ ├── ext-searchbox.js │ │ ├── ext-settings_menu.js │ │ ├── ext-spellcheck.js │ │ ├── ext-split.js │ │ ├── ext-static_highlight.js │ │ ├── ext-statusbar.js │ │ ├── ext-textarea.js │ │ ├── ext-themelist.js │ │ ├── ext-whitespace.js │ │ ├── index.html │ │ ├── keybinding-emacs.js │ │ ├── keybinding-vim.js │ │ ├── mode-abap.js │ │ ├── mode-actionscript.js │ │ ├── mode-ada.js │ │ ├── mode-apache_conf.js │ │ ├── mode-applescript.js │ │ ├── mode-asciidoc.js │ │ ├── mode-assembly_x86.js │ │ ├── mode-autohotkey.js │ │ ├── mode-batchfile.js │ │ ├── mode-c9search.js │ │ ├── mode-c_cpp.js │ │ ├── mode-cirru.js │ │ ├── mode-clojure.js │ │ ├── mode-cobol.js │ │ ├── mode-coffee.js │ │ ├── mode-coldfusion.js │ │ ├── mode-csharp.js │ │ ├── mode-css.js │ │ ├── mode-curly.js │ │ ├── mode-d.js │ │ ├── mode-dart.js │ │ ├── mode-diff.js │ │ ├── mode-django.js │ │ ├── mode-dockerfile.js │ │ ├── mode-dot.js │ │ ├── mode-eiffel.js │ │ ├── mode-ejs.js │ │ ├── mode-elixir.js │ │ ├── mode-elm.js │ │ ├── mode-erlang.js │ │ ├── mode-forth.js │ │ ├── mode-ftl.js │ │ ├── mode-gcode.js │ │ ├── mode-gherkin.js │ │ ├── mode-gitignore.js │ │ ├── mode-glsl.js │ │ ├── mode-golang.js │ │ ├── mode-groovy.js │ │ ├── mode-haml.js │ │ ├── mode-handlebars.js │ │ ├── mode-haskell.js │ │ ├── mode-haxe.js │ │ ├── mode-html.js │ │ ├── mode-html_ruby.js │ │ ├── mode-ini.js │ │ ├── mode-io.js │ │ ├── mode-jack.js │ │ ├── mode-jade.js │ │ ├── mode-java.js │ │ ├── mode-javascript.js │ │ ├── mode-json.js │ │ ├── mode-jsoniq.js │ │ ├── mode-jsp.js │ │ ├── mode-jsx.js │ │ ├── mode-julia.js │ │ ├── mode-latex.js │ │ ├── mode-less.js │ │ ├── mode-liquid.js │ │ ├── mode-lisp.js │ │ ├── mode-livescript.js │ │ ├── mode-logiql.js │ │ ├── mode-lsl.js │ │ ├── mode-lua.js │ │ ├── mode-luapage.js │ │ ├── mode-lucene.js │ │ ├── mode-makefile.js │ │ ├── mode-markdown.js │ │ ├── mode-mask.js │ │ ├── mode-matlab.js │ │ ├── mode-mel.js │ │ ├── mode-mushcode.js │ │ ├── mode-mysql.js │ │ ├── mode-nix.js │ │ ├── mode-objectivec.js │ │ ├── mode-ocaml.js │ │ ├── mode-pascal.js │ │ ├── mode-perl.js │ │ ├── mode-pgsql.js │ │ ├── mode-php.js │ │ ├── mode-plain_text.js │ │ ├── mode-powershell.js │ │ ├── mode-praat.js │ │ ├── mode-prolog.js │ │ ├── mode-properties.js │ │ ├── mode-protobuf.js │ │ ├── mode-python.js │ │ ├── mode-r.js │ │ ├── mode-rdoc.js │ │ ├── mode-rhtml.js │ │ ├── mode-ruby.js │ │ ├── mode-rust.js │ │ ├── mode-sass.js │ │ ├── mode-scad.js │ │ ├── mode-scala.js │ │ ├── mode-scheme.js │ │ ├── mode-scss.js │ │ ├── mode-sh.js │ │ ├── mode-sjs.js │ │ ├── mode-smarty.js │ │ ├── mode-snippets.js │ │ ├── mode-soy_template.js │ │ ├── mode-space.js │ │ ├── mode-sql.js │ │ ├── mode-stylus.js │ │ ├── mode-svg.js │ │ ├── mode-tcl.js │ │ ├── mode-tex.js │ │ ├── mode-text.js │ │ ├── mode-textile.js │ │ ├── mode-toml.js │ │ ├── mode-twig.js │ │ ├── mode-typescript.js │ │ ├── mode-vala.js │ │ ├── mode-vbscript.js │ │ ├── mode-velocity.js │ │ ├── mode-verilog.js │ │ ├── mode-vhdl.js │ │ ├── mode-xml.js │ │ ├── mode-xquery.js │ │ ├── mode-yaml.js │ │ ├── snippets │ │ │ ├── abap.js │ │ │ ├── actionscript.js │ │ │ ├── ada.js │ │ │ ├── apache_conf.js │ │ │ ├── applescript.js │ │ │ ├── asciidoc.js │ │ │ ├── assembly_x86.js │ │ │ ├── autohotkey.js │ │ │ ├── batchfile.js │ │ │ ├── c9search.js │ │ │ ├── c_cpp.js │ │ │ ├── cirru.js │ │ │ ├── clojure.js │ │ │ ├── cobol.js │ │ │ ├── coffee.js │ │ │ ├── coldfusion.js │ │ │ ├── csharp.js │ │ │ ├── css.js │ │ │ ├── curly.js │ │ │ ├── d.js │ │ │ ├── dart.js │ │ │ ├── diff.js │ │ │ ├── django.js │ │ │ ├── dockerfile.js │ │ │ ├── dot.js │ │ │ ├── eiffel.js │ │ │ ├── ejs.js │ │ │ ├── elixir.js │ │ │ ├── elm.js │ │ │ ├── erlang.js │ │ │ ├── forth.js │ │ │ ├── ftl.js │ │ │ ├── gcode.js │ │ │ ├── gherkin.js │ │ │ ├── gitignore.js │ │ │ ├── glsl.js │ │ │ ├── golang.js │ │ │ ├── groovy.js │ │ │ ├── haml.js │ │ │ ├── handlebars.js │ │ │ ├── haskell.js │ │ │ ├── haxe.js │ │ │ ├── html.js │ │ │ ├── html_ruby.js │ │ │ ├── ini.js │ │ │ ├── io.js │ │ │ ├── jack.js │ │ │ ├── jade.js │ │ │ ├── java.js │ │ │ ├── javascript.js │ │ │ ├── json.js │ │ │ ├── jsoniq.js │ │ │ ├── jsp.js │ │ │ ├── jsx.js │ │ │ ├── julia.js │ │ │ ├── latex.js │ │ │ ├── less.js │ │ │ ├── liquid.js │ │ │ ├── lisp.js │ │ │ ├── livescript.js │ │ │ ├── logiql.js │ │ │ ├── lsl.js │ │ │ ├── lua.js │ │ │ ├── luapage.js │ │ │ ├── lucene.js │ │ │ ├── makefile.js │ │ │ ├── markdown.js │ │ │ ├── mask.js │ │ │ ├── matlab.js │ │ │ ├── mel.js │ │ │ ├── mushcode.js │ │ │ ├── mysql.js │ │ │ ├── nix.js │ │ │ ├── objectivec.js │ │ │ ├── ocaml.js │ │ │ ├── pascal.js │ │ │ ├── perl.js │ │ │ ├── pgsql.js │ │ │ ├── php.js │ │ │ ├── plain_text.js │ │ │ ├── powershell.js │ │ │ ├── praat.js │ │ │ ├── prolog.js │ │ │ ├── properties.js │ │ │ ├── protobuf.js │ │ │ ├── python.js │ │ │ ├── r.js │ │ │ ├── rdoc.js │ │ │ ├── rhtml.js │ │ │ ├── ruby.js │ │ │ ├── rust.js │ │ │ ├── sass.js │ │ │ ├── scad.js │ │ │ ├── scala.js │ │ │ ├── scheme.js │ │ │ ├── scss.js │ │ │ ├── sh.js │ │ │ ├── sjs.js │ │ │ ├── smarty.js │ │ │ ├── snippets.js │ │ │ ├── soy_template.js │ │ │ ├── space.js │ │ │ ├── sql.js │ │ │ ├── stylus.js │ │ │ ├── svg.js │ │ │ ├── tcl.js │ │ │ ├── tex.js │ │ │ ├── text.js │ │ │ ├── textile.js │ │ │ ├── toml.js │ │ │ ├── twig.js │ │ │ ├── typescript.js │ │ │ ├── vala.js │ │ │ ├── vbscript.js │ │ │ ├── velocity.js │ │ │ ├── verilog.js │ │ │ ├── vhdl.js │ │ │ ├── xml.js │ │ │ ├── xquery.js │ │ │ └── yaml.js │ │ ├── theme-ambiance.js │ │ ├── theme-chaos.js │ │ ├── theme-chrome.js │ │ ├── theme-clouds.js │ │ ├── theme-clouds_midnight.js │ │ ├── theme-cobalt.js │ │ ├── theme-crimson_editor.js │ │ ├── theme-dawn.js │ │ ├── theme-dreamweaver.js │ │ ├── theme-eclipse.js │ │ ├── theme-github.js │ │ ├── theme-idle_fingers.js │ │ ├── theme-katzenmilch.js │ │ ├── theme-kr_theme.js │ │ ├── theme-kuroir.js │ │ ├── theme-merbivore.js │ │ ├── theme-merbivore_soft.js │ │ ├── theme-mono_industrial.js │ │ ├── theme-monokai.js │ │ ├── theme-pastel_on_dark.js │ │ ├── theme-solarized_dark.js │ │ ├── theme-solarized_light.js │ │ ├── theme-terminal.js │ │ ├── theme-textmate.js │ │ ├── theme-tomorrow.js │ │ ├── theme-tomorrow_night.js │ │ ├── theme-tomorrow_night_blue.js │ │ ├── theme-tomorrow_night_bright.js │ │ ├── theme-tomorrow_night_eighties.js │ │ ├── theme-twilight.js │ │ ├── theme-vibrant_ink.js │ │ ├── theme-xcode.js │ │ ├── worker-coffee.js │ │ ├── worker-css.js │ │ ├── worker-html.js │ │ ├── worker-javascript.js │ │ ├── worker-json.js │ │ ├── worker-lua.js │ │ ├── worker-php.js │ │ └── worker-xquery.js │ └── _CodeSignature │ │ └── CodeResources │ └── Current ├── CHANGES.md ├── Icons ├── ManDrakeAppIcon.iconset │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ └── icon_512x512@2x.png ├── ManDrakeAppIcon1024.png ├── Old │ ├── DocumentIcon.icns │ ├── OldAppIcon.icns │ ├── OldDocumentIcon.icns │ ├── OldManDrakeAppIcon.ai │ └── OldManDrakeAppIcon1024.png └── make_iconset.sh ├── License.txt ├── ManDrake.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ManDrake ├── Common.h ├── CustomACEView.h ├── CustomACEView.m ├── ManDrake-Info.plist ├── ManDrake-Prefix.pch ├── ManDrake.entitlements ├── ManDrakeApplicationDelegate.h ├── ManDrakeApplicationDelegate.m ├── ManDrakeDocument.h ├── ManDrakeDocument.m ├── NSTask+Description.h ├── NSTask+Description.m ├── NSWorkspace+Additions.h ├── NSWorkspace+Additions.m ├── Resources │ ├── AppIcon.icns │ ├── Credits.rtf │ ├── License.html │ ├── MainMenu.xib │ ├── ManDrake-Info.plist │ ├── ManDrake.entitlements │ ├── ManDrakeDocument.xib │ ├── ace.js │ ├── default.man │ ├── ext-beautify.js │ ├── ext-chromevox.js │ ├── ext-elastic_tabstops_lite.js │ ├── ext-emmet.js │ ├── ext-error_marker.js │ ├── ext-keybinding_menu.js │ ├── ext-language_tools.js │ ├── ext-linking.js │ ├── ext-modelist.js │ ├── ext-old_ie.js │ ├── ext-searchbox.js │ ├── ext-settings_menu.js │ ├── ext-spellcheck.js │ ├── ext-split.js │ ├── ext-static_highlight.js │ ├── ext-statusbar.js │ ├── ext-textarea.js │ ├── ext-themelist.js │ ├── ext-whitespace.js │ ├── index.html │ ├── keybinding-emacs.js │ ├── keybinding-vim.js │ ├── mode-groff.js │ ├── theme-ambiance.js │ ├── theme-chaos.js │ ├── theme-chrome.js │ ├── theme-clouds.js │ ├── theme-clouds_midnight.js │ ├── theme-cobalt.js │ ├── theme-crimson_editor.js │ ├── theme-dawn.js │ ├── theme-dreamweaver.js │ ├── theme-eclipse.js │ ├── theme-github.js │ ├── theme-idle_fingers.js │ ├── theme-katzenmilch.js │ ├── theme-kr_theme.js │ ├── theme-kuroir.js │ ├── theme-merbivore.js │ ├── theme-merbivore_soft.js │ ├── theme-mono_industrial.js │ ├── theme-monokai.js │ ├── theme-pastel_on_dark.js │ ├── theme-solarized_dark.js │ ├── theme-solarized_light.js │ ├── theme-terminal.js │ ├── theme-textmate.js │ ├── theme-tomorrow.js │ ├── theme-tomorrow_night.js │ ├── theme-tomorrow_night_blue.js │ ├── theme-tomorrow_night_bright.js │ ├── theme-tomorrow_night_eighties.js │ ├── theme-twilight.js │ ├── theme-vibrant_ink.js │ └── theme-xcode.js ├── ace.js ├── cat2html │ ├── build_cat2html.sh │ ├── cat2html │ └── cat2html.l ├── ext-beautify.js ├── ext-chromevox.js ├── ext-elastic_tabstops_lite.js ├── ext-emmet.js ├── ext-error_marker.js ├── ext-keybinding_menu.js ├── ext-language_tools.js ├── ext-linking.js ├── ext-modelist.js ├── ext-old_ie.js ├── ext-searchbox.js ├── ext-settings_menu.js ├── ext-spellcheck.js ├── ext-split.js ├── ext-static_highlight.js ├── ext-statusbar.js ├── ext-textarea.js ├── ext-themelist.js ├── ext-whitespace.js ├── index.html ├── keybinding-emacs.js ├── keybinding-vim.js ├── main.m ├── mode-groff.js ├── theme-ambiance.js ├── theme-chaos.js ├── theme-chrome.js ├── theme-clouds.js ├── theme-clouds_midnight.js ├── theme-cobalt.js ├── theme-crimson_editor.js ├── theme-dawn.js ├── theme-dreamweaver.js ├── theme-eclipse.js ├── theme-github.js ├── theme-idle_fingers.js ├── theme-katzenmilch.js ├── theme-kr_theme.js ├── theme-kuroir.js ├── theme-merbivore.js ├── theme-merbivore_soft.js ├── theme-mono_industrial.js ├── theme-monokai.js ├── theme-pastel_on_dark.js ├── theme-solarized_dark.js ├── theme-solarized_light.js ├── theme-terminal.js ├── theme-textmate.js ├── theme-tomorrow.js ├── theme-tomorrow_night.js ├── theme-tomorrow_night_blue.js ├── theme-tomorrow_night_bright.js ├── theme-tomorrow_night_eighties.js ├── theme-twilight.js ├── theme-vibrant_ink.js └── theme-xcode.js ├── README.md ├── Releases ├── ManDrake-1.1.src.zip ├── ManDrake-1.1.zip ├── ManDrake-1.2.src.zip ├── ManDrake-1.2.zip ├── ManDrake-2.1.zip ├── Mandrake-1.0.zip └── Mandrake-2.1.src.zip ├── Sparkle ├── ManDrakeAppcast.xml ├── Sparkle.framework │ ├── Autoupdate │ ├── Headers │ ├── Modules │ ├── PrivateHeaders │ ├── Resources │ ├── Sparkle │ ├── Updater.app │ ├── Versions │ │ ├── B │ │ │ ├── Autoupdate │ │ │ ├── Headers │ │ │ │ ├── SPUDownloadData.h │ │ │ │ ├── SPUStandardUpdaterController.h │ │ │ │ ├── SPUStandardUserDriver.h │ │ │ │ ├── SPUStandardUserDriverDelegate.h │ │ │ │ ├── SPUUpdateCheck.h │ │ │ │ ├── SPUUpdatePermissionRequest.h │ │ │ │ ├── SPUUpdater.h │ │ │ │ ├── SPUUpdaterDelegate.h │ │ │ │ ├── SPUUpdaterSettings.h │ │ │ │ ├── SPUUserDriver.h │ │ │ │ ├── SPUUserUpdateState.h │ │ │ │ ├── SUAppcast.h │ │ │ │ ├── SUAppcastItem.h │ │ │ │ ├── SUErrors.h │ │ │ │ ├── SUExport.h │ │ │ │ ├── SUStandardVersionComparator.h │ │ │ │ ├── SUUpdatePermissionResponse.h │ │ │ │ ├── SUUpdater.h │ │ │ │ ├── SUUpdaterDelegate.h │ │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ │ ├── SUVersionDisplayProtocol.h │ │ │ │ └── Sparkle.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── PrivateHeaders │ │ │ │ ├── SPUAppcastItemStateResolver.h │ │ │ │ ├── SPUGentleUserDriverReminders.h │ │ │ │ ├── SPUInstallationType.h │ │ │ │ ├── SPUStandardUserDriver+Private.h │ │ │ │ ├── SPUUserAgent+Private.h │ │ │ │ ├── SUAppcastItem+Private.h │ │ │ │ └── SUInstallerLauncher+Private.h │ │ │ ├── Resources │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ ├── keyedobjects-101300.nib │ │ │ │ │ │ └── keyedobjects-110000.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── ReleaseNotesColorStyle.css │ │ │ │ ├── SUStatus.nib │ │ │ │ └── en.lproj │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ └── SUUpdatePermissionPrompt.strings │ │ │ ├── Sparkle │ │ │ ├── Updater.app │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── Updater │ │ │ │ │ ├── PkgInfo │ │ │ │ │ ├── Resources │ │ │ │ │ └── SUStatus.nib │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── XPCServices │ │ │ │ ├── Downloader.xpc │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ └── Downloader │ │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ └── Installer.xpc │ │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── Installer │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ └── Current │ └── XPCServices ├── dsa_pub.pem ├── generate_keys.rb ├── sign_update.rb └── update_appcast.sh ├── TODO.md └── images ├── mandrake_captain.jpg ├── mandrake_icon.png ├── mandrake_screenshot1.jpg └── mandrake_screenshot2.jpg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/.gitignore -------------------------------------------------------------------------------- /ACEView.framework/ACEView: -------------------------------------------------------------------------------- 1 | Versions/Current/ACEView -------------------------------------------------------------------------------- /ACEView.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /ACEView.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /ACEView.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/ACEView: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/ACEView -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Headers/ACEKeyboardHandlerNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Headers/ACEKeyboardHandlerNames.h -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Headers/ACEKeyboardHandlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Headers/ACEKeyboardHandlers.h -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Headers/ACEModeNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Headers/ACEModeNames.h -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Headers/ACEModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Headers/ACEModes.h -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Headers/ACESearchItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Headers/ACESearchItem.h -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Headers/ACEThemeNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Headers/ACEThemeNames.h -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Headers/ACEThemes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Headers/ACEThemes.h -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Headers/ACEView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Headers/ACEView.h -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/PrivateHeaders/ACELogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/PrivateHeaders/ACELogger.h -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/PrivateHeaders/ACEView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/PrivateHeaders/ACEView-Prefix.pch -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ace.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/emmet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/emmet.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-beautify.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-chromevox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-chromevox.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-elastic_tabstops_lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-elastic_tabstops_lite.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-emmet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-emmet.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-error_marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-error_marker.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-keybinding_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-keybinding_menu.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-language_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-language_tools.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-linking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-linking.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-modelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-modelist.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-old_ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-old_ie.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-searchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-searchbox.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-settings_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-settings_menu.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-spellcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-spellcheck.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-split.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-static_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-static_highlight.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-statusbar.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-textarea.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-themelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-themelist.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/ext-whitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/ext-whitespace.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/index.html -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/keybinding-emacs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/keybinding-emacs.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/keybinding-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/keybinding-vim.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-abap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-abap.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-actionscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-actionscript.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-ada.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-ada.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-apache_conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-apache_conf.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-applescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-applescript.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-asciidoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-asciidoc.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-assembly_x86.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-assembly_x86.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-autohotkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-autohotkey.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-batchfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-batchfile.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-c9search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-c9search.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-c_cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-c_cpp.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-cirru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-cirru.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-clojure.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-cobol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-cobol.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-coffee.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-coldfusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-coldfusion.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-csharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-csharp.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-css.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-curly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-curly.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-d.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-dart.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-diff.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-django.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-django.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-dockerfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-dockerfile.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-dot.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-eiffel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-eiffel.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-ejs.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-elixir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-elixir.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-elm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-elm.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-erlang.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-forth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-forth.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-ftl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-ftl.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-gcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-gcode.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-gherkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-gherkin.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-gitignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-gitignore.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-glsl.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-golang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-golang.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-groovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-groovy.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-haml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-haml.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-handlebars.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-haskell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-haskell.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-haxe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-haxe.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-html.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-html_ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-html_ruby.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-ini.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-io.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-jack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-jack.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-jade.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-java.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-javascript.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-json.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-jsoniq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-jsoniq.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-jsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-jsp.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-jsx.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-julia.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-latex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-latex.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-less.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-liquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-liquid.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-lisp.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-livescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-livescript.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-logiql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-logiql.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-lsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-lsl.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-lua.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-luapage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-luapage.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-lucene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-lucene.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-makefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-makefile.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-markdown.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-mask.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-matlab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-matlab.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-mel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-mel.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-mushcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-mushcode.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-mysql.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-nix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-nix.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-objectivec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-objectivec.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-ocaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-ocaml.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-pascal.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-perl.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-pgsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-pgsql.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-php.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-plain_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-plain_text.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-powershell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-powershell.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-praat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-praat.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-prolog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-prolog.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-properties.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-protobuf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-protobuf.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-python.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-r.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-rdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-rdoc.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-rhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-rhtml.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-ruby.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-rust.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-sass.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-scad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-scad.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-scala.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-scheme.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-scss.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-sh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-sh.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-sjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-sjs.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-smarty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-smarty.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-snippets.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-soy_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-soy_template.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-space.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-space.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-sql.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-stylus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-stylus.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-svg.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-tcl.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-tex.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-text.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-textile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-textile.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-toml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-toml.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-twig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-twig.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-typescript.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-vala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-vala.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-vbscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-vbscript.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-velocity.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-verilog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-verilog.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-vhdl.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-xml.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-xquery.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/mode-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/mode-yaml.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/abap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/abap.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/actionscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/actionscript.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/ada.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/ada.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/apache_conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/apache_conf.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/applescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/applescript.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/asciidoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/asciidoc.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/assembly_x86.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/assembly_x86.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/autohotkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/autohotkey.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/batchfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/batchfile.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/c9search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/c9search.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/c_cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/c_cpp.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/cirru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/cirru.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/clojure.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/cobol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/cobol.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/coffee.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/coldfusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/coldfusion.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/csharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/csharp.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/css.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/curly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/curly.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/d.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/dart.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/diff.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/django.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/django.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/dockerfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/dockerfile.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/dot.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/eiffel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/eiffel.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/ejs.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/elixir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/elixir.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/elm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/elm.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/erlang.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/forth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/forth.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/ftl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/ftl.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/gcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/gcode.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/gherkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/gherkin.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/gitignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/gitignore.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/glsl.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/golang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/golang.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/groovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/groovy.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/haml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/haml.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/handlebars.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/haskell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/haskell.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/haxe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/haxe.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/html.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/html_ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/html_ruby.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/ini.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/io.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/jack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/jack.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/jade.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/java.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/javascript.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/json.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/jsoniq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/jsoniq.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/jsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/jsp.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/jsx.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/julia.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/latex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/latex.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/less.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/liquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/liquid.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/lisp.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/livescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/livescript.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/logiql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/logiql.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/lsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/lsl.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/lua.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/luapage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/luapage.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/lucene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/lucene.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/makefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/makefile.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/markdown.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/mask.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/matlab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/matlab.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/mel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/mel.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/mushcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/mushcode.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/mysql.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/nix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/nix.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/objectivec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/objectivec.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/ocaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/ocaml.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/pascal.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/perl.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/pgsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/pgsql.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/php.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/plain_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/plain_text.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/powershell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/powershell.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/praat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/praat.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/prolog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/prolog.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/properties.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/protobuf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/protobuf.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/python.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/r.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/rdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/rdoc.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/rhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/rhtml.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/ruby.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/rust.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/sass.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/scad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/scad.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/scala.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/scheme.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/scss.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/sh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/sh.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/sjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/sjs.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/smarty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/smarty.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/snippets.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/soy_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/soy_template.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/space.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/space.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/sql.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/stylus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/stylus.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/svg.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/tcl.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/tex.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/text.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/textile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/textile.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/toml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/toml.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/twig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/twig.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/typescript.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/vala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/vala.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/vbscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/vbscript.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/velocity.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/verilog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/verilog.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/vhdl.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/xml.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/xquery.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/snippets/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/snippets/yaml.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-ambiance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-ambiance.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-chaos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-chaos.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-chrome.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-clouds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-clouds.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-clouds_midnight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-clouds_midnight.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-cobalt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-cobalt.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-crimson_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-crimson_editor.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-dawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-dawn.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-dreamweaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-dreamweaver.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-eclipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-eclipse.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-github.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-idle_fingers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-idle_fingers.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-katzenmilch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-katzenmilch.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-kr_theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-kr_theme.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-kuroir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-kuroir.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-merbivore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-merbivore.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-merbivore_soft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-merbivore_soft.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-mono_industrial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-mono_industrial.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-monokai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-monokai.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-pastel_on_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-pastel_on_dark.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-solarized_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-solarized_dark.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-solarized_light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-solarized_light.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-terminal.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-textmate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-textmate.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-tomorrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-tomorrow.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-tomorrow_night.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-tomorrow_night.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-tomorrow_night_blue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-tomorrow_night_blue.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-tomorrow_night_bright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-tomorrow_night_bright.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-tomorrow_night_eighties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-tomorrow_night_eighties.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-twilight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-twilight.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-vibrant_ink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-vibrant_ink.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/theme-xcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/theme-xcode.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/worker-coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/worker-coffee.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/worker-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/worker-css.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/worker-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/worker-html.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/worker-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/worker-javascript.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/worker-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/worker-json.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/worker-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/worker-lua.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/worker-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/worker-php.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/Resources/worker-xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/Resources/worker-xquery.js -------------------------------------------------------------------------------- /ACEView.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ACEView.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /ACEView.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Icons/ManDrakeAppIcon.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/ManDrakeAppIcon.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Icons/ManDrakeAppIcon.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/ManDrakeAppIcon.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Icons/ManDrakeAppIcon.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/ManDrakeAppIcon.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Icons/ManDrakeAppIcon.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/ManDrakeAppIcon.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Icons/ManDrakeAppIcon.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/ManDrakeAppIcon.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Icons/ManDrakeAppIcon.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/ManDrakeAppIcon.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Icons/ManDrakeAppIcon.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/ManDrakeAppIcon.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Icons/ManDrakeAppIcon.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/ManDrakeAppIcon.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Icons/ManDrakeAppIcon.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/ManDrakeAppIcon.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Icons/ManDrakeAppIcon.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/ManDrakeAppIcon.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Icons/ManDrakeAppIcon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/ManDrakeAppIcon1024.png -------------------------------------------------------------------------------- /Icons/Old/DocumentIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/Old/DocumentIcon.icns -------------------------------------------------------------------------------- /Icons/Old/OldAppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/Old/OldAppIcon.icns -------------------------------------------------------------------------------- /Icons/Old/OldDocumentIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/Old/OldDocumentIcon.icns -------------------------------------------------------------------------------- /Icons/Old/OldManDrakeAppIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/Old/OldManDrakeAppIcon.ai -------------------------------------------------------------------------------- /Icons/Old/OldManDrakeAppIcon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/Old/OldManDrakeAppIcon1024.png -------------------------------------------------------------------------------- /Icons/make_iconset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Icons/make_iconset.sh -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/License.txt -------------------------------------------------------------------------------- /ManDrake.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ManDrake.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ManDrake/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Common.h -------------------------------------------------------------------------------- /ManDrake/CustomACEView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/CustomACEView.h -------------------------------------------------------------------------------- /ManDrake/CustomACEView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/CustomACEView.m -------------------------------------------------------------------------------- /ManDrake/ManDrake-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ManDrake-Info.plist -------------------------------------------------------------------------------- /ManDrake/ManDrake-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ManDrake-Prefix.pch -------------------------------------------------------------------------------- /ManDrake/ManDrake.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ManDrake.entitlements -------------------------------------------------------------------------------- /ManDrake/ManDrakeApplicationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ManDrakeApplicationDelegate.h -------------------------------------------------------------------------------- /ManDrake/ManDrakeApplicationDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ManDrakeApplicationDelegate.m -------------------------------------------------------------------------------- /ManDrake/ManDrakeDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ManDrakeDocument.h -------------------------------------------------------------------------------- /ManDrake/ManDrakeDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ManDrakeDocument.m -------------------------------------------------------------------------------- /ManDrake/NSTask+Description.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/NSTask+Description.h -------------------------------------------------------------------------------- /ManDrake/NSTask+Description.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/NSTask+Description.m -------------------------------------------------------------------------------- /ManDrake/NSWorkspace+Additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/NSWorkspace+Additions.h -------------------------------------------------------------------------------- /ManDrake/NSWorkspace+Additions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/NSWorkspace+Additions.m -------------------------------------------------------------------------------- /ManDrake/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/AppIcon.icns -------------------------------------------------------------------------------- /ManDrake/Resources/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/Credits.rtf -------------------------------------------------------------------------------- /ManDrake/Resources/License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/License.html -------------------------------------------------------------------------------- /ManDrake/Resources/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/MainMenu.xib -------------------------------------------------------------------------------- /ManDrake/Resources/ManDrake-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ManDrake-Info.plist -------------------------------------------------------------------------------- /ManDrake/Resources/ManDrake.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ManDrake.entitlements -------------------------------------------------------------------------------- /ManDrake/Resources/ManDrakeDocument.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ManDrakeDocument.xib -------------------------------------------------------------------------------- /ManDrake/Resources/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ace.js -------------------------------------------------------------------------------- /ManDrake/Resources/default.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/default.man -------------------------------------------------------------------------------- /ManDrake/Resources/ext-beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-beautify.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-chromevox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-chromevox.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-elastic_tabstops_lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-elastic_tabstops_lite.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-emmet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-emmet.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-error_marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-error_marker.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-keybinding_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-keybinding_menu.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-language_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-language_tools.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-linking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-linking.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-modelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-modelist.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-old_ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-old_ie.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-searchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-searchbox.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-settings_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-settings_menu.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-spellcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-spellcheck.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-split.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-static_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-static_highlight.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-statusbar.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-textarea.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-themelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-themelist.js -------------------------------------------------------------------------------- /ManDrake/Resources/ext-whitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/ext-whitespace.js -------------------------------------------------------------------------------- /ManDrake/Resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/index.html -------------------------------------------------------------------------------- /ManDrake/Resources/keybinding-emacs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/keybinding-emacs.js -------------------------------------------------------------------------------- /ManDrake/Resources/keybinding-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/keybinding-vim.js -------------------------------------------------------------------------------- /ManDrake/Resources/mode-groff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/mode-groff.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-ambiance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-ambiance.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-chaos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-chaos.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-chrome.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-clouds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-clouds.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-clouds_midnight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-clouds_midnight.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-cobalt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-cobalt.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-crimson_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-crimson_editor.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-dawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-dawn.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-dreamweaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-dreamweaver.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-eclipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-eclipse.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-github.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-idle_fingers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-idle_fingers.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-katzenmilch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-katzenmilch.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-kr_theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-kr_theme.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-kuroir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-kuroir.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-merbivore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-merbivore.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-merbivore_soft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-merbivore_soft.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-mono_industrial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-mono_industrial.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-monokai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-monokai.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-pastel_on_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-pastel_on_dark.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-solarized_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-solarized_dark.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-solarized_light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-solarized_light.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-terminal.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-textmate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-textmate.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-tomorrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-tomorrow.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-tomorrow_night.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-tomorrow_night.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-tomorrow_night_blue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-tomorrow_night_blue.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-tomorrow_night_bright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-tomorrow_night_bright.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-tomorrow_night_eighties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-tomorrow_night_eighties.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-twilight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-twilight.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-vibrant_ink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-vibrant_ink.js -------------------------------------------------------------------------------- /ManDrake/Resources/theme-xcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/Resources/theme-xcode.js -------------------------------------------------------------------------------- /ManDrake/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ace.js -------------------------------------------------------------------------------- /ManDrake/cat2html/build_cat2html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/cat2html/build_cat2html.sh -------------------------------------------------------------------------------- /ManDrake/cat2html/cat2html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/cat2html/cat2html -------------------------------------------------------------------------------- /ManDrake/cat2html/cat2html.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/cat2html/cat2html.l -------------------------------------------------------------------------------- /ManDrake/ext-beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-beautify.js -------------------------------------------------------------------------------- /ManDrake/ext-chromevox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-chromevox.js -------------------------------------------------------------------------------- /ManDrake/ext-elastic_tabstops_lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-elastic_tabstops_lite.js -------------------------------------------------------------------------------- /ManDrake/ext-emmet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-emmet.js -------------------------------------------------------------------------------- /ManDrake/ext-error_marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-error_marker.js -------------------------------------------------------------------------------- /ManDrake/ext-keybinding_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-keybinding_menu.js -------------------------------------------------------------------------------- /ManDrake/ext-language_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-language_tools.js -------------------------------------------------------------------------------- /ManDrake/ext-linking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-linking.js -------------------------------------------------------------------------------- /ManDrake/ext-modelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-modelist.js -------------------------------------------------------------------------------- /ManDrake/ext-old_ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-old_ie.js -------------------------------------------------------------------------------- /ManDrake/ext-searchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-searchbox.js -------------------------------------------------------------------------------- /ManDrake/ext-settings_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-settings_menu.js -------------------------------------------------------------------------------- /ManDrake/ext-spellcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-spellcheck.js -------------------------------------------------------------------------------- /ManDrake/ext-split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-split.js -------------------------------------------------------------------------------- /ManDrake/ext-static_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-static_highlight.js -------------------------------------------------------------------------------- /ManDrake/ext-statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-statusbar.js -------------------------------------------------------------------------------- /ManDrake/ext-textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-textarea.js -------------------------------------------------------------------------------- /ManDrake/ext-themelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-themelist.js -------------------------------------------------------------------------------- /ManDrake/ext-whitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/ext-whitespace.js -------------------------------------------------------------------------------- /ManDrake/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/index.html -------------------------------------------------------------------------------- /ManDrake/keybinding-emacs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/keybinding-emacs.js -------------------------------------------------------------------------------- /ManDrake/keybinding-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/keybinding-vim.js -------------------------------------------------------------------------------- /ManDrake/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/main.m -------------------------------------------------------------------------------- /ManDrake/mode-groff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/mode-groff.js -------------------------------------------------------------------------------- /ManDrake/theme-ambiance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-ambiance.js -------------------------------------------------------------------------------- /ManDrake/theme-chaos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-chaos.js -------------------------------------------------------------------------------- /ManDrake/theme-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-chrome.js -------------------------------------------------------------------------------- /ManDrake/theme-clouds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-clouds.js -------------------------------------------------------------------------------- /ManDrake/theme-clouds_midnight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-clouds_midnight.js -------------------------------------------------------------------------------- /ManDrake/theme-cobalt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-cobalt.js -------------------------------------------------------------------------------- /ManDrake/theme-crimson_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-crimson_editor.js -------------------------------------------------------------------------------- /ManDrake/theme-dawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-dawn.js -------------------------------------------------------------------------------- /ManDrake/theme-dreamweaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-dreamweaver.js -------------------------------------------------------------------------------- /ManDrake/theme-eclipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-eclipse.js -------------------------------------------------------------------------------- /ManDrake/theme-github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-github.js -------------------------------------------------------------------------------- /ManDrake/theme-idle_fingers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-idle_fingers.js -------------------------------------------------------------------------------- /ManDrake/theme-katzenmilch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-katzenmilch.js -------------------------------------------------------------------------------- /ManDrake/theme-kr_theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-kr_theme.js -------------------------------------------------------------------------------- /ManDrake/theme-kuroir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-kuroir.js -------------------------------------------------------------------------------- /ManDrake/theme-merbivore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-merbivore.js -------------------------------------------------------------------------------- /ManDrake/theme-merbivore_soft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-merbivore_soft.js -------------------------------------------------------------------------------- /ManDrake/theme-mono_industrial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-mono_industrial.js -------------------------------------------------------------------------------- /ManDrake/theme-monokai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-monokai.js -------------------------------------------------------------------------------- /ManDrake/theme-pastel_on_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-pastel_on_dark.js -------------------------------------------------------------------------------- /ManDrake/theme-solarized_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-solarized_dark.js -------------------------------------------------------------------------------- /ManDrake/theme-solarized_light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-solarized_light.js -------------------------------------------------------------------------------- /ManDrake/theme-terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-terminal.js -------------------------------------------------------------------------------- /ManDrake/theme-textmate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-textmate.js -------------------------------------------------------------------------------- /ManDrake/theme-tomorrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-tomorrow.js -------------------------------------------------------------------------------- /ManDrake/theme-tomorrow_night.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-tomorrow_night.js -------------------------------------------------------------------------------- /ManDrake/theme-tomorrow_night_blue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-tomorrow_night_blue.js -------------------------------------------------------------------------------- /ManDrake/theme-tomorrow_night_bright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-tomorrow_night_bright.js -------------------------------------------------------------------------------- /ManDrake/theme-tomorrow_night_eighties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-tomorrow_night_eighties.js -------------------------------------------------------------------------------- /ManDrake/theme-twilight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-twilight.js -------------------------------------------------------------------------------- /ManDrake/theme-vibrant_ink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-vibrant_ink.js -------------------------------------------------------------------------------- /ManDrake/theme-xcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/ManDrake/theme-xcode.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/README.md -------------------------------------------------------------------------------- /Releases/ManDrake-1.1.src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Releases/ManDrake-1.1.src.zip -------------------------------------------------------------------------------- /Releases/ManDrake-1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Releases/ManDrake-1.1.zip -------------------------------------------------------------------------------- /Releases/ManDrake-1.2.src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Releases/ManDrake-1.2.src.zip -------------------------------------------------------------------------------- /Releases/ManDrake-1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Releases/ManDrake-1.2.zip -------------------------------------------------------------------------------- /Releases/ManDrake-2.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Releases/ManDrake-2.1.zip -------------------------------------------------------------------------------- /Releases/Mandrake-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Releases/Mandrake-1.0.zip -------------------------------------------------------------------------------- /Releases/Mandrake-2.1.src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Releases/Mandrake-2.1.src.zip -------------------------------------------------------------------------------- /Sparkle/ManDrakeAppcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/ManDrakeAppcast.xml -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Autoupdate: -------------------------------------------------------------------------------- 1 | Versions/Current/Autoupdate -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Updater.app: -------------------------------------------------------------------------------- 1 | Versions/Current/Updater.app -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Autoupdate -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SPUDownloadData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SPUDownloadData.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SPUStandardUpdaterController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SPUStandardUpdaterController.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SPUStandardUserDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SPUStandardUserDriver.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SPUStandardUserDriverDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SPUStandardUserDriverDelegate.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SPUUpdateCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SPUUpdateCheck.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SPUUpdatePermissionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SPUUpdatePermissionRequest.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SPUUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SPUUpdater.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SPUUpdaterDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SPUUpdaterDelegate.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SPUUpdaterSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SPUUpdaterSettings.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SPUUserDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SPUUserDriver.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SPUUserUpdateState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SPUUserUpdateState.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SUAppcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SUAppcast.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SUAppcastItem.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SUErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SUErrors.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SUExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SUExport.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SUStandardVersionComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SUStandardVersionComparator.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SUUpdatePermissionResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SUUpdatePermissionResponse.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SUUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SUUpdater.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SUUpdaterDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SUUpdaterDelegate.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SUVersionComparisonProtocol.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/SUVersionDisplayProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/SUVersionDisplayProtocol.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Headers/Sparkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Headers/Sparkle.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Modules/module.modulemap -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SPUAppcastItemStateResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SPUAppcastItemStateResolver.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SPUGentleUserDriverReminders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SPUGentleUserDriverReminders.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SPUInstallationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SPUInstallationType.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SPUStandardUserDriver+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SPUStandardUserDriver+Private.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SPUUserAgent+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SPUUserAgent+Private.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SUAppcastItem+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SUAppcastItem+Private.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SUInstallerLauncher+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/PrivateHeaders/SUInstallerLauncher+Private.h -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-101300.nib -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Resources/Base.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Resources/Base.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Resources/Info.plist -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Resources/ReleaseNotesColorStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Resources/ReleaseNotesColorStyle.css -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Resources/en.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Resources/en.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Resources/en.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Resources/en.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Sparkle -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/Info.plist -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/MacOS/Updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/MacOS/Updater -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/Info.plist -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/MacOS/Downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/MacOS/Downloader -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/Info.plist -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/MacOS/Installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/MacOS/Installer -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/B/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/Sparkle.framework/Versions/B/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | B -------------------------------------------------------------------------------- /Sparkle/Sparkle.framework/XPCServices: -------------------------------------------------------------------------------- 1 | Versions/Current/XPCServices -------------------------------------------------------------------------------- /Sparkle/dsa_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/dsa_pub.pem -------------------------------------------------------------------------------- /Sparkle/generate_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/generate_keys.rb -------------------------------------------------------------------------------- /Sparkle/sign_update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/sign_update.rb -------------------------------------------------------------------------------- /Sparkle/update_appcast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/Sparkle/update_appcast.sh -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/TODO.md -------------------------------------------------------------------------------- /images/mandrake_captain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/images/mandrake_captain.jpg -------------------------------------------------------------------------------- /images/mandrake_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/images/mandrake_icon.png -------------------------------------------------------------------------------- /images/mandrake_screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/images/mandrake_screenshot1.jpg -------------------------------------------------------------------------------- /images/mandrake_screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/ManDrake/HEAD/images/mandrake_screenshot2.jpg --------------------------------------------------------------------------------