{"commit":"02aa568c0e9f7fac77276081c3e78f03c1cda545","old_file":"load\/md.el","new_file":"load\/md.el","old_contents":"(add-to-list 'auto-mode-alist '(\"\\\\.md\\\\'\" . markdown-mode))\n\n(add-hook\n 'markdown-mode-hook\n (lambda ()\n (local-unset-key (kbd \"\"))))\n","new_contents":"(add-to-list 'auto-mode-alist '(\"\\\\.md\\\\'\" . markdown-mode))\n\n(add-hook\n 'markdown-mode-hook\n (lambda ()\n (local-unset-key (kbd \"\"))\n (defvar markdown-indent-on-enter \"markdown-mode.el\")\n (setq markdown-indent-on-enter nil)))\n","subject":"Disable indent on newline for markdown files","message":"Disable indent on newline for markdown files\n","lang":"Emacs Lisp","license":"mit","repos":"kaidadragonfly\/.emacs"} {"commit":"7fb9c399ec466a53623046cfc9a2154e078bbcaa","old_file":"dotfiles\/spacemacs.d\/sql-indent-config.el","new_file":"dotfiles\/spacemacs.d\/sql-indent-config.el","old_contents":"(defun configure-sql-indentation ()\n \"Configure the indentation settings for `sqlind-minor-mode'.\"\n (require 'sql-indent-left)\n (setq\n sqlind-basic-offset 2\n sqlind-indentation-offsets-alist `((in-select-clause +)\n (select-join-condition +)\n ,@sqlind-indentation-left-offsets-alist)))\n(add-hook 'sqlind-minor-mode-hook 'configure-sql-indentation)\n","new_contents":"(defun configure-sql-indentation ()\n \"Configure the indentation settings for `sqlind-minor-mode'.\"\n (require 'sql-indent-left)\n (setq\n sqlind-basic-offset 2\n sqlind-indentation-offsets-alist\n `((in-select-clause +)\n (select-join-condition +)\n (nested-statement-open sqlind-use-anchor-indentation +)\n (nested-statement-continuation sqlind-use-anchor-indentation +)\n ,@sqlind-indentation-left-offsets-alist)))\n(add-hook 'sqlind-minor-mode-hook 'configure-sql-indentation)\n","subject":"Indent by a fixed amount inside parens","message":"Indent by a fixed amount inside parens\n","lang":"Emacs Lisp","license":"mit","repos":"razzolini\/dotfiles,razzolini\/dotfiles,razzolini\/dotfiles"} {"commit":"28e6239472ee4c19385d03a74aafa30d797363db","old_file":"site-lisp\/linc01n-gui.el","new_file":"site-lisp\/linc01n-gui.el","old_contents":"; ~\/.emacs.d\/my-gui.el\n\n;; Remove scrollbars, menu bars, and toolbars\n; when is a special form of \"if\", with no else clause, it reads:\n; (when ...)\n(when (fboundp 'menu-bar-mode) (menu-bar-mode -1))\n(when (fboundp 'tool-bar-mode) (tool-bar-mode -1))\n(when (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))\n","new_contents":";; Remove scrollbars, menu bars, and toolbars\n\n(unless (eq window-system 'mac)\n (when (and (fboundp 'menu-bar-mode) (not (eq menu-bar-mode -1)))\n (menu-bar-mode -1)))\n(when (and (fboundp 'scroll-bar-mode) (not (eq scroll-bar-mode -1)))\n (scroll-bar-mode -1))\n(when (and (fboundp 'tool-bar-mode) (not (eq tool-bar-mode -1)))\n (tool-bar-mode -1))\n;; tooltips in echo-aera\n(when (and (fboundp 'tooltip-mode) (not (eq tooltip-mode -1)))\n (tooltip-mode -1))\n","subject":"Add tooltip mode to remove tooltips","message":"Add tooltip mode to remove tooltips\n","lang":"Emacs Lisp","license":"mit","repos":"linc01n\/.emacs.d,linc01n\/.emacs.d"} {"commit":"04b8c39d44b2f87ba460fd06c7bae514809317ad","old_file":"tag-emacs-next\/emacs.d\/features\/init-system.el","new_file":"tag-emacs-next\/emacs.d\/features\/init-system.el","old_contents":";; modernizing Emacs' Package Menu\n;; with package ratings, usage statistics, customizability, and more\n(use-package paradox\n :defer 0.1\n :init\n (setq\n paradox-github-token \"5572ad3a003df76865d5a039b4a2152452c8aff9\"\n paradox-execute-asynchronously t\n paradox-automatically-star t)\n :config\n ;; replace the default interface with paradox\n (paradox-enable))\n\n(use-package exec-path-from-shell\n :init\n (setq exec-path-from-shell-check-startup-files nil)\n :config\n (exec-path-from-shell-copy-envs '(\"WAKATIME_API_KEY\"))\n (when (memq window-system '(mac ns x))\n (exec-path-from-shell-initialize)))\n\n(use-package use-package-ensure-system-package)\n\n;; (use-package use-package-chords\n;; :config (key-chord-mode 1))\n\n(use-package server\n :config\n (unless (server-running-p)\n (server-start)))\n\n(use-package auto-package-update\n :config\n (setq\n auto-package-update-delete-old-versions t\n auto-package-update-interval 4)\n (auto-package-update-maybe))\n\n(provide 'init-system)\n","new_contents":";; modernizing Emacs' Package Menu\n;; with package ratings, usage statistics, customizability, and more\n(use-package paradox\n :defer 0.1\n :init\n (setq\n paradox-execute-asynchronously t\n paradox-automatically-star t)\n :config\n ;; replace the default interface with paradox\n (paradox-enable))\n\n(use-package exec-path-from-shell\n :init\n (setq exec-path-from-shell-check-startup-files nil)\n :config\n (exec-path-from-shell-copy-envs '(\"WAKATIME_API_KEY\"))\n (when (memq window-system '(mac ns x))\n (exec-path-from-shell-initialize)))\n\n(use-package use-package-ensure-system-package)\n\n;; (use-package use-package-chords\n;; :config (key-chord-mode 1))\n\n(use-package server\n :config\n (unless (server-running-p)\n (server-start)))\n\n(use-package auto-package-update\n :config\n (setq\n auto-package-update-delete-old-versions t\n auto-package-update-interval 4)\n (auto-package-update-maybe))\n\n(provide 'init-system)\n","subject":"Remove revoken oauth token lol","message":"Remove revoken oauth token lol\n","lang":"Emacs Lisp","license":"mit","repos":"vyorkin-personal\/d,vyorkin-personal\/d,vyorkin-personal\/d,vyorkin-personal\/d"} {"commit":"4d2e1dd5268c188c35d0e0155f51e296a742c42a","old_file":"modules\/ui\/doom-modeline\/autoload.el","new_file":"modules\/ui\/doom-modeline\/autoload.el","old_contents":";;; ui\/doom-modeline\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(defun +doom-modeline|resize-for-big-font ()\n \"Adjust the modeline's height when `doom-big-font-mode' is enabled. This was\nmade to be added to `doom-big-font-mode-hook'.\"\n (let ((default-height (default-value '+doom-modeline-height)))\n (if doom-big-font-mode\n (let* ((font-size (font-get doom-font :size))\n (big-size (font-get doom-big-font :size))\n (ratio (\/ (float big-size) font-size)))\n (setq +doom-modeline-height (ceiling (* default-height ratio))))\n (setq +doom-modeline-height default-height))\n ;; already has a variable watcher in Emacs 26+\n (unless EMACS26+ (+doom-modeline|refresh-bars))))\n\n","new_contents":";;; ui\/doom-modeline\/autoload.el -*- lexical-binding: t; -*-\n\n(defvar +doom-modeline--old-bar-height nil)\n;;;###autoload\n(defun +doom-modeline|resize-for-big-font ()\n \"Adjust the modeline's height when `doom-big-font-mode' is enabled. This was\nmade to be added to `doom-big-font-mode-hook'.\"\n (unless +doom-modeline--old-bar-height\n (setq +doom-modeline--old-bar-height +doom-modeline-height))\n (let ((default-height +doom-modeline--old-bar-height))\n (if doom-big-font-mode\n (let* ((font-size (font-get doom-font :size))\n (big-size (font-get doom-big-font :size))\n (ratio (\/ (float big-size) font-size)))\n (setq +doom-modeline-height (ceiling (* default-height ratio 0.75))))\n (setq +doom-modeline-height default-height))\n ;; already has a variable watcher in Emacs 26+\n (unless EMACS26+ (+doom-modeline|refresh-bars))))\n\n","subject":"Fix modeline growing incrementally on big font mode","message":"Fix modeline growing incrementally on big font mode\n\nFixes #575\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom"} {"commit":"66f54543c619d969894ef21fd7f22fa8f5633fb9","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n ivy\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n pdf\n ein\n\n :lang\n agda\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk)\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n (write ; emacs as a word processor (latex + org + markdown)\n +wordnut ; wordnet (wn) search\n +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +childframe)\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n pdf\n ein\n\n :lang\n agda\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk)\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n (write ; emacs as a word processor (latex + org + markdown)\n +wordnut ; wordnet (wn) search\n +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","subject":"Enable +icons and +childframe for ivy in emacs","message":"Enable +icons and +childframe for ivy in emacs\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"b50fe150399208acedd89af750448d9b87f8ad4a","old_file":"load\/ts.el","new_file":"load\/ts.el","old_contents":"(add-hook\n 'typescript-mode-hook\n (lambda ()\n ;; Activate auto-fill-mode.\n (set-fill-column 100)\n (auto-fill-mode t)\n ;; Enable Flyspell.\n (flyspell-prog-mode)\n ;; Make enter indent.\n (local-set-key (kbd \"RET\") 'newline-and-indent)\n ;; Set indent level.\n (defvar typescript-indent-level)\n (setq typescript-indent-level 2)\n ;; Clean whitespace on save.\n (add-hook 'before-save-hook 'whitespace-cleanup nil t)\n ;; Allow movement between subwords.\n (subword-mode 1)\n (require 'diminish)\n (diminish 'subword-mode)))\n","new_contents":"(add-hook\n 'typescript-mode-hook\n (lambda ()\n ;; Activate auto-fill-mode.\n (set-fill-column 100)\n (auto-fill-mode t)\n ;; Enable Flyspell.\n (flyspell-prog-mode)\n ;; Disable eslint\n (defvar flycheck-disabled-checkers)\n (setq-local flycheck-disabled-checkers\n (cons 'javascript-eslint flycheck-disabled-checkers))\n ;; Make enter indent.\n (local-set-key (kbd \"RET\") 'newline-and-indent)\n ;; Set indent level.\n (defvar typescript-indent-level)\n (setq typescript-indent-level 2)\n ;; Clean whitespace on save.\n (add-hook 'before-save-hook 'whitespace-cleanup nil t)\n ;; Allow movement between subwords.\n (subword-mode 1)\n (require 'diminish)\n (diminish 'subword-mode)))\n","subject":"Disable eslint for typescript files","message":"Disable eslint for typescript files\n","lang":"Emacs Lisp","license":"mit","repos":"kaidadragonfly\/.emacs"} {"commit":"c81733e58e65fafdf84b7e7cbdce63178110ef92","old_file":"setup-wrap-region.el","new_file":"setup-wrap-region.el","old_contents":"(require 'wrap-region)\n\n;; Active in all modes\n(wrap-region-global-mode t)\n\n;; Only wrap region if trigger key is given a negative prefix argument\n(setq wrap-region-only-with-negative-prefix t)\n\n;; Custom wrappers\n\n(wrap-region-add-wrapper \"{ value: \" \" }\" \"v\" 'js2-mode)\n\n(wrap-region-add-wrapper \"\" \"o\" 'html-mode)\n(wrap-region-add-wrapper \"

\" \"<\/p>\" \"p\" 'html-mode)\n(wrap-region-add-wrapper \"

  • \" \"<\/li>\" \"l\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/span>\" \"r\" 'html-mode)\n\n(provide 'setup-wrap-region)\n","new_contents":"(require 'wrap-region)\n\n;; Active in all modes\n(wrap-region-global-mode t)\n\n;; Only wrap region if trigger key is given a negative prefix argument\n(setq wrap-region-only-with-negative-prefix t)\n\n;; Custom wrappers\n\n(wrap-region-add-wrapper \"{ value: \" \" }\" \"v\" 'js2-mode)\n\n(wrap-region-add-wrapper \"\" \"o\" 'html-mode)\n(wrap-region-add-wrapper \"

    \" \"<\/p>\" \"p\" 'html-mode)\n(wrap-region-add-wrapper \"

  • \" \"<\/li>\" \"l\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/strong>\" \"s\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/a>\" \"a\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/span>\" \"r\" 'html-mode)\n(wrap-region-add-wrapper \"

    \" \"<\/h1>\" \"h\" 'html-mode)\n\n(provide 'setup-wrap-region)\n","subject":"Add strong, a and h1 to html-mode wrap-region.","message":"Add strong, a and h1 to html-mode wrap-region.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"2f15e44f66f324d54997297bc62d5fc33f43a264","old_file":"setup-files\/setup-latex.el","new_file":"setup-files\/setup-latex.el","old_contents":";; Time-stamp: <2014-08-13 11:46:17 kmodi>\n\n;; LaTeX\n(load \"auctex.el\" nil t t)\n(load \"preview-latex.el\" nil t t)\n\n(setq LaTeX-command \"latex -shell-escape\")\n\n;; Source: http:\/\/www.sigmafield.org\/2009\/10\/03\/using-doc-view-with-auto-revert-to-view-latex-pdf-output-in-emacs\n(add-hook 'doc-view-mode-hook 'auto-revert-mode)\n;; Source: http:\/\/www.gnu.org\/software\/auctex\/manual\/auctex\/Multifile.html\n(setq TeX-PDF-mode t\n TeX-auto-save t\n TeX-parse-self t\n TeX-save-query nil)\n\n(setq-default TeX-master nil) ; Query for master file.\n\n\n(provide 'setup-latex)\n","new_contents":";; Time-stamp: <2014-10-18 13:00:27 kmodi>\n\n;; LaTeX\n(load \"auctex.el\" nil t t)\n\n;; preview-latex doesn't work in emacs 24.4 (also doesn't seem like it's needed)\n(==e243\n (load \"preview-latex.el\" nil t t))\n\n(setq LaTeX-command \"latex -shell-escape\")\n\n;; Source: http:\/\/www.sigmafield.org\/2009\/10\/03\/using-doc-view-with-auto-revert-to-view-latex-pdf-output-in-emacs\n(add-hook 'doc-view-mode-hook 'auto-revert-mode)\n;; Source: http:\/\/www.gnu.org\/software\/auctex\/manual\/auctex\/Multifile.html\n(setq TeX-PDF-mode t\n TeX-auto-save t\n TeX-parse-self t\n TeX-save-query nil)\n\n(setq-default TeX-master nil) ; Query for master file.\n\n\n(provide 'setup-latex)\n","subject":"Disable loading of `preview-latex' in emacs 24.4; that would still be loaded in emacs 24.3","message":"Disable loading of `preview-latex' in emacs 24.4; that would still be\nloaded in emacs 24.3\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"a34c90b5089cf7d21b626578c0ca04eaa48f50cd","old_file":"home\/.emacs.d\/lisp\/init-projectile.el","new_file":"home\/.emacs.d\/lisp\/init-projectile.el","old_contents":";;; init-projectile.el -- projetile setup\n\n;;; Commentary:\n;;; load projectile and customizations\n\n;;; Code:\n(require 'use-package)\n\n(use-package projectile\n :commands (projectile-global-mode)\n :config\n (projectile-global-mode 1)\n (define-key projectile-mode-map (kbd \"C-c p R\") 'my\/projectile-regenerate-tags)\n (with-eval-after-load 'evil\n (key-seq-define evil-normal-state-map \",t\" 'helm-projectile))\n (setq projectile-switch-project-action 'projectile-commander)\n (def-projectile-commander-method ?s\n \"Open a *shell* buffer for the project.\"\n (projectile-run-shell))\n (def-projectile-commander-method ?d\n \"Open project root in dired.\"\n (projectile-dired))\n :diminish projectile-mode\n :init\n (add-hook 'after-init-hook 'projectile-global-mode))\n\n(defun my\/projectile-regenerate-tags ()\n \"Regenerate projectile tags using git ctags.\"\n (interactive)\n (progn\n (start-process-shell-command\n \"tags\" nil (format \"cd %s; git ctags\"\n (projectile-project-root)))\n (message \"Generating tags file\")))\n\n(provide 'init-projectile)\n;;; init-projectile.el ends here\n","new_contents":";;; init-projectile.el -- projetile setup\n\n;;; Commentary:\n;;; load projectile and customizations\n\n;;; Code:\n(require 'use-package)\n\n(use-package projectile\n :commands (projectile-global-mode)\n :config\n (projectile-global-mode 1)\n (define-key projectile-mode-map (kbd \"C-c p\") 'projectile-command-map)\n (define-key projectile-mode-map (kbd \"C-c p R\") 'my\/projectile-regenerate-tags)\n (with-eval-after-load 'evil\n (key-seq-define evil-normal-state-map \",t\" 'helm-projectile))\n (setq projectile-switch-project-action 'projectile-commander)\n (def-projectile-commander-method ?s\n \"Open a *shell* buffer for the project.\"\n (projectile-run-shell))\n (def-projectile-commander-method ?d\n \"Open project root in dired.\"\n (projectile-dired))\n :diminish projectile-mode\n :init\n (add-hook 'after-init-hook 'projectile-global-mode))\n\n(defun my\/projectile-regenerate-tags ()\n \"Regenerate projectile tags using git ctags.\"\n (interactive)\n (progn\n (start-process-shell-command\n \"tags\" nil (format \"cd %s; git ctags\"\n (projectile-project-root)))\n (message \"Generating tags file\")))\n\n(provide 'init-projectile)\n;;; init-projectile.el ends here\n","subject":"Add projectile prefix to Emacs","message":"Add projectile prefix to Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"f80f963070bc857cc9bbef09ea2e55b966486ec7","old_file":"custom\/44-org-publish.el","new_file":"custom\/44-org-publish.el","old_contents":";; org publish options\n\n(setq org-publish-project-alist\n\t '(\n\t\t;; ... add all the components here (see below)...\n\n\t\t;; All org files (notes)\n\t\t(\"org-notes\"\n\t\t :base-directory \"~\/org\/business\"\n\t\t :base-extension \"org\"\n\t\t :publishing-directory \"\/var\/www\/manual\/\"\n\t\t :style \"\"\n\t\t :recursive f\n\t\t :publishing-function org-html-publish-to-html\n\t\t :headline-levels 4 ; Just the default for this project.\n\t\t :auto-preamble t\n\t\t :html-head \"\"\n\t\t )\n\n\t\t;; Attachments\n\t\t(\"org-static\"\n\t\t :base-directory \"~\/org\/\"\n\t\t :base-extension \"css\\\\|js\\\\|png\\\\|jpg\\\\|gif\\\\|pdf\\\\|mp3\\\\|ogg\\\\|swf\\\\|htaccess\"\n\t\t :publishing-directory \"\/var\/www\/manual\/\"\n\t\t :recursive t\n\t\t :publishing-function org-publish-attachment\n\t\t )\n\n\t\t;; Publish component\n\t\t(\"org\"\n :components (\"org-notes\" \"org-static\"))\n\n\t ))\n\n '(org-stuck-projects (quote (\"hard\" (\"REDUNDANT\" \"DONE\" \"NEXT\" \"NEXTACTION\") nil \"\")))\n\n; Create a little function to run publish mode in a shortcut\n(defun puborg ()\n (interactive)\n (org-publish-project \"org\")\n)\n\n","new_contents":";; org publish options\n\n(setq org-publish-project-alist\n\t '(\n\t\t;; ... add all the components here (see below)...\n\n\t\t;; All org files (notes)\n\t\t(\"org-notes\"\n\t\t :base-directory \"~\/org\/business\"\n\t\t :base-extension \"org\"\n\t\t :publishing-directory \"\/var\/www\/manual\/\"\n\t\t :style \"\"\n\t\t :recursive f\n\t\t :publishing-function org-html-publish-to-html\n\t\t :headline-levels 4 ; Just the default for this project.\n\t\t :auto-preamble t\n\t\t :html-head \"\"\n\t\t )\n\n\t\t;; Attachments\n\t\t(\"org-static\"\n\t\t :base-directory \"~\/org\/\"\n\t\t :base-extension \"css\\\\|js\\\\|png\\\\|jpg\\\\|gif\\\\|pdf\\\\|mp3\\\\|ogg\\\\|swf\\\\|htaccess\"\n\t\t :publishing-directory \"\/var\/www\/manual\/\"\n\t\t :recursive t\n\t\t :publishing-function org-publish-attachment\n\t\t )\n\n\t\t;; Publish component\n\t\t(\"org\"\n :components (\"org-notes\" \"org-static\"))\n\n\t ))\n\n '(org-stuck-projects (quote (\"hard\" (\"REDUNDANT\" \"DONE\" \"NEXT\" \"NEXTACTION\") nil \"\")))\n\n; Create a little function to run publish mode in a shortcut\n(defun puborg ()\n (interactive)\n (setq org-export-with-broken-links 't)\n (org-publish-project \"org\")\n)\n\n","subject":"Add publish with broken links","message":"Add publish with broken links\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"ccd138d8538fec65464cc8309fe60beaecb4e38d","old_file":"load\/osx.el","new_file":"load\/osx.el","old_contents":"(if (equal (getenv \"TERM_PROGRAM\") \"iTerm.app\")\n (progn\n ;; mouse integration\n (require 'mouse) ;; needed for iterm2 compatibility\n (require 'mwheel)\n \n (xterm-mouse-mode)\n (defvar mouse-wheel-progressive-speed)\n (setq mouse-wheel-progressive-speed nil)\n (defvar mouse-wheel-scroll-amount)\n (setq mouse-wheel-scroll-amount '(1))\n\n (mouse-wheel-mode 1)\n \n (declare-function cua-copy-region (arg) \"cua-base.el\")\n (defun smart-copy-region ()\n (interactive)\n (cua-copy-region nil)\n (shell-command-on-region\n (region-beginning)\n (region-end)\n \"pbcopy\")\n (message \"\"))\n (global-set-key (kbd \"M-w\") 'smart-copy-region)))\n","new_contents":";; mouse integration\n(require 'mouse) ;; needed for iterm2 compatibility\n(require 'mwheel)\n\n(if (equal (getenv \"TERM_PROGRAM\") \"iTerm.app\")\n (progn\n (xterm-mouse-mode)\n (defvar mouse-wheel-progressive-speed)\n (setq mouse-wheel-progressive-speed nil)\n (defvar mouse-wheel-scroll-amount)\n (setq mouse-wheel-scroll-amount '(1))\n\n (mouse-wheel-mode 1)\n \n (declare-function cua-copy-region (arg) \"cua-base.el\")\n (defun smart-copy-region ()\n (interactive)\n (cua-copy-region nil)\n (shell-command-on-region\n (region-beginning)\n (region-end)\n \"pbcopy\")\n (message \"\"))\n (global-set-key (kbd \"M-w\") 'smart-copy-region)))\n","subject":"Clean up OSX mouse handling","message":"Clean up OSX mouse handling\n","lang":"Emacs Lisp","license":"mit","repos":"kaidadragonfly\/.emacs"} {"commit":"128c25babff0c82b71fe429ee9c30379d1a56145","old_file":"init-package\/init-org.el","new_file":"init-package\/init-org.el","old_contents":"(use-package org\n :mode (\"\\\\.org$\" . org-mode)\n :config\n (progn\n (require 'org-install)\n (define-key global-map \"\\C-cl\" 'org-store-link)\n (define-key global-map \"\\C-ca\" 'org-agenda)\n (setq org-log-done t)\n (use-package org-bullets\n :config\n (add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))))\n (use-package org-trello\n :config\n (add-hook 'org-mode-hook 'org-trello-mode))))\n","new_contents":"(use-package org\n :mode (\"\\\\.org$\" . org-mode)\n :config\n (progn\n (require 'org-install)\n (define-key global-map \"\\C-cl\" 'org-store-link)\n (define-key global-map \"\\C-ca\" 'org-agenda)\n (setq org-log-done t)\n (setq org-agenda-files '(\"~\/Dropbox\/org\"))\n (use-package org-bullets\n :config\n (add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))))\n (use-package org-trello\n :config\n (add-hook 'org-mode-hook 'org-trello-mode))))\n","subject":"Add org files to agenda files list","message":"Add org files to agenda files list\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"77fdf43fa35bd2ac9b9e752927897c7e6c85b911","old_file":"elisp\/setup-file-nav.el","new_file":"elisp\/setup-file-nav.el","old_contents":";;; setup-file-nav.el --- Set up tools to navigate through files.\n;;; Commentary:\n;;; Code:\n\n;; direx looks like a good alternative. I have tried NeoTree, but it sucks.\n(use-package direx\n :ensure t)\n\n;; NeoTree could *sometimes* be better than Dired.\n(use-package neotree\n :ensure t\n :bind (\"\" . neotree-toggle))\n\n;; This package is cool, I like coloring stuff around\n(use-package dired-k\n :ensure t\n :config\n (progn\n (add-hook 'dired-initial-position-hook 'dired-k)\n (add-hook 'dired-after-readin-hook #'dired-k-no-revert)))\n\n;; it seems sensible to hide every detail by default and use ) when I\n;; have to show more info, like file size or permissions\n(use-package dired+\n :ensure t\n :config\n (global-dired-hide-details-mode 1)\n ;; Since b is unbound in dired and ^ is a very annoying key to press,\n ;; lets bind that to dired-up-directory\n (with-eval-after-load 'dired+\n (define-key dired-mode-map (kbd \"b\") #'dired-up-directory)))\n\n(provide 'setup-file-nav)\n;;; setup-file-nav.el ends here\n","new_contents":";;; setup-file-nav.el --- Set up tools to navigate through files.\n;;; Commentary:\n;;; Code:\n\n;; direx looks like a good alternative. I have tried NeoTree, but it sucks.\n(use-package direx\n :ensure t)\n\n;; NeoTree could *sometimes* be better than Dired.\n(use-package neotree\n :ensure t\n :bind (\"\" . neotree-toggle))\n\n;; This package is cool, I like coloring stuff around\n(use-package dired-k\n :ensure t\n :config\n (progn\n (add-hook 'dired-initial-position-hook 'dired-k)\n (add-hook 'dired-after-readin-hook #'dired-k-no-revert)))\n\n;; it seems sensible to hide every detail by default and use ) when I\n;; have to show more info, like file size or permissions\n(use-package dired+\n :ensure t\n :config\n (global-dired-hide-details-mode 1)\n ;; Since b is unbound in dired and ^ is a very annoying key to press,\n ;; lets bind that to dired-up-directory\n (with-eval-after-load 'dired+\n (define-key dired-mode-map (kbd \"b\") #'dired-up-directory)))\n\n;; We want to be able to toggle dot files in dired\n(with-eval-after-load 'dired\n (require 'dired-x)\n (setq dired-omit-files (concat dired-omit-files \"\\\\|^\\\\..+$\"))\n (define-key dired-mode-map \"h\" #'dired-omit-mode))\n\n(provide 'setup-file-nav)\n;;; setup-file-nav.el ends here\n","subject":"Make dired be able to toggle dot files","message":"Make dired be able to toggle dot files\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"1350fc45ebff4caf9c4b0bd07d97e3a97de91abf","old_file":"setup-files\/setup-nim.el","new_file":"setup-files\/setup-nim.el","old_contents":";; Time-stamp: <2017-03-24 16:44:20 kmodi>\n\n;; Nim\n;; https:\/\/github.com\/nim-lang\/nim-mode\n\n(use-package nim-mode\n :ensure t\n :mode ((\"\\\\.nim\\\\'\" . nim-mode)))\n\n\n(provide 'setup-nim)\n","new_contents":";; Time-stamp: <2017-04-14 23:15:22 kmodi>\n\n;; Nim\n;; https:\/\/github.com\/nim-lang\/nim-mode\n\n(use-package nim-mode\n :ensure t\n :mode ((\"\\\\.nim\\\\'\" . nim-mode))\n :config\n (progn\n (with-eval-after-load 'smart-compile\n (add-to-list 'smart-compile-alist\n '(nim-mode . \"nim c --verbosity:0 %f\")))))\n\n\n(provide 'setup-nim)\n","subject":"Add nim compilation command to smart-compile-alist","message":"Add nim compilation command to smart-compile-alist\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"d94f8f848aab28128983b14848c6e3a965af6757","old_file":"emacs\/fsharp-mode-pkg.el","new_file":"emacs\/fsharp-mode-pkg.el","old_contents":"(define-package\n \"fsharp-mode\"\n \"0.9\"\n \"F# mode for Emacs\"\n '((popup \"0.5\")\n (pos-tip \"0.4.5\")\n (s \"1.3.1\")\n (dash \"1.1.0\")))\n","new_contents":"(define-package\n \"fsharp-mode\"\n \"0.9\"\n \"F# mode for Emacs\"\n '((popup \"0.5\")\n (pos-tip \"0.4.5\")\n (s \"1.3.1\")\n (dash \"1.1.0\")\n (auto-complete \"1.4\")))\n","subject":"Add auto-complete package as dependency","message":"Add auto-complete package as dependency\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"fsharp\/xamarin-monodevelop-fsharp-addin,fsharp\/fsharpbinding,fsharp\/fsharpbinding,Ming-Tang\/fsharpbinding,nosami\/xamarin-monodevelop-fsharp-addin,fsharp\/xamarin-monodevelop-fsharp-addin,fsharp\/fsharpbinding,Ming-Tang\/fsharpbinding,Ming-Tang\/fsharpbinding,nosami\/xamarin-monodevelop-fsharp-addin"} {"commit":"0fdc4f87395d449892f945466369d812a04855b4","old_file":".emacs.d\/config\/package.el","new_file":".emacs.d\/config\/package.el","old_contents":"(require 'package)\n\n;; add-to-list add to list's front unless by t\n\n;; reset\n;;(setq package-archives nil)\n\n;; default GNU ELPA\n;; (add-to-list 'package-archives\n;; \t '(\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\"))\n\n(add-to-list 'package-archives\n\t\t\t '(\"org\" . \"http:\/\/orgmode.org\/elpa\/\"))\n\n\n;; Milkypostman's Emacs Lisp Pakcage Archive (MELPA)\n(add-to-list 'package-archives\n\t\t\t '(\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n\n(add-to-list 'package-archives\n\t\t\t '(\"melpa-stable\" . \"http:\/\/melpa-stable.milkbox.net\/packages\/\") t)\n\n;; (add-to-list 'package-archives\n;; '(\"marmalade\" . \"https:\/\/marmalade-repo.org\/packages\/\"))\n\n(when (boundp 'package-pinned-packages)\n (setq package-pinned-packages\n\t\t'((cider . \"melpa-stable\")\n\t\t (clj-refactor . \"melpa-stable\"))))\n\n(package-initialize)\n","new_contents":"(require 'package)\n\n;; add-to-list add to list's front unless by t\n\n;; reset\n;;(setq package-archives nil)\n\n;; default GNU ELPA\n;; (add-to-list 'package-archives\n;; \t '(\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\"))\n\n(add-to-list 'package-archives\n\t\t\t '(\"org\" . \"http:\/\/orgmode.org\/elpa\/\"))\n\n\n;; Milkypostman's Emacs Lisp Pakcage Archive (MELPA)\n(add-to-list 'package-archives\n\t\t\t '(\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n\n(add-to-list 'package-archives\n\t\t\t '(\"melpa-stable\" . \"http:\/\/melpa-stable.milkbox.net\/packages\/\") t)\n\n;; (add-to-list 'package-archives\n;; '(\"marmalade\" . \"https:\/\/marmalade-repo.org\/packages\/\"))\n\n(when (boundp 'package-pinned-packages)\n (setq package-pinned-packages\n\t\t'((cider . \"melpa-stable\"))))\n\n(package-initialize)\n","subject":"Use clj-refactor in Melpa to work with cider 0.10.0, which requires clj-refactor 2.0.0-SNAPSHOT.","message":"Use clj-refactor in Melpa to work with cider 0.10.0, which requires clj-refactor 2.0.0-SNAPSHOT.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs"} {"commit":"e076bfc01bbc41920f7f17433aefd37205dff21d","old_file":"emacs\/init.el","new_file":"emacs\/init.el","old_contents":";; Personal Emacs configuration\n;; Lorenzo Cabrini \n\n;; Package management\n(require 'package)\n(setq package-archives '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n\t\t\t (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")\n\t\t\t (\"melpa-stable\" . \"https:\/\/stable.melpa.org\/packages\/\")))\n(package-initialize)\n\n;; Set up UTF-8 environment\n(set-language-environment \"UTF-8\")\n\n;; Start maximized\n(add-to-list 'default-frame-alist '(fullscreen . maximized))\n\n;; User interface\n(blink-cursor-mode 0) ; Cursor, don't blink\n(tool-bar-mode -1)\n\n;; Theme\n(load-theme 'wheatgrass t)\n\n;; Powerline\n(require 'powerline)\n(powerline-default-theme)\n\n;; C and related languages\n(require 'cc-mode)\n(setq c-default-style \"linux\")\n","new_contents":";; Personal Emacs configuration\n;; Lorenzo Cabrini \n\n;; Package management\n(require 'package)\n(setq package-archives '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n\t\t\t (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")\n\t\t\t (\"melpa-stable\" . \"https:\/\/stable.melpa.org\/packages\/\")))\n(package-initialize)\n\n;; Set up UTF-8 environment\n(set-language-environment \"UTF-8\")\n\n;; Start maximized\n(add-to-list 'default-frame-alist '(fullscreen . maximized))\n\n;; User interface\n(blink-cursor-mode 0) ; Cursor, don't blink\n(tool-bar-mode -1)\n\n;; Theme\n(load-theme 'wheatgrass t)\n\n;; Powerline\n(require 'powerline)\n(powerline-default-theme)\n\n;; C and related languages\n(require 'cc-mode)\n(setq c-default-style \"linux\")\n\n;; Org mode\n(setq org-agenda-files '(\"~\/org\"))\n","subject":"Add files in ~\/org to the Org agenda.","message":"Add files in ~\/org to the Org agenda.\n","lang":"Emacs Lisp","license":"mit","repos":"lcabrini\/makehome"} {"commit":"d9327121b014848f303d449808870d7441f49c5a","old_file":"custom\/32-ace_jump.el","new_file":"custom\/32-ace_jump.el","old_contents":"(require 'ace-jump-mode)\n(define-key global-map (kbd \"C-c SPC\") 'ace-jump-mode)\n","new_contents":"(require 'ace-jump-mode)\n(define-key global-map (kbd \"C-0\") 'ace-jump-mode)\n","subject":"Change my shortcut for ace-jump","message":"Change my shortcut for ace-jump\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"9034d6d6d3d997f3f06d07ec7579cc592fb26ab1","old_file":"Packages\/settings\/setup-interface.el","new_file":"Packages\/settings\/setup-interface.el","old_contents":";; Turn off mouse interface early in startup to avoid momentary display\n(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))\n(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))\n(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))\n\n;; vertical window split\n(setq split-width-threshold nil)\n\n;; theme\n(use-package zenburn-theme\n :ensure t\n :config\n (setq default-frame-alist nil)\n (load-theme 'zenburn t))\n\n;; zoom\n(defhydra hydra-zoom (global-map \"\")\n \"zoom\"\n (\"O\" zoom-font-off \"off\")\n (\"i\" zoom-font \"in\")\n (\"o\" zoom-font-out \"out\"))\n\n(provide 'setup-interface)\n","new_contents":";; Turn off mouse interface early in startup to avoid momentary display\n(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))\n(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))\n(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))\n\n;; vertical window split\n(setq split-width-threshold 190)\n(setq split-height-threshold nil)\n\n;; theme\n(use-package zenburn-theme\n :ensure t\n :config\n (setq default-frame-alist nil)\n (load-theme 'zenburn t))\n\n;; zoom\n(defhydra hydra-zoom (global-map \"\")\n \"zoom\"\n (\"O\" zoom-font-off \"off\")\n (\"i\" zoom-font \"in\")\n (\"o\" zoom-font-out \"out\"))\n\n(provide 'setup-interface)\n","subject":"Fix window not splitting correctly","message":"Fix window not splitting correctly\n","lang":"Emacs Lisp","license":"mit","repos":"hsienchiaolee\/aquamacs"} {"commit":"917b40b9a621c846d4816d42e09ad45c4ff61347","old_file":"custom\/00-common-setup.el","new_file":"custom\/00-common-setup.el","old_contents":";; Turn off menubar\n(menu-bar-mode -1)\n\n;; auto-indent\n(define-key global-map (kbd \"C-j\") 'newline-and-indent)\n\n;; Tab settings\n(setq-default tab-width 2)\n(setq-default indent-tabs-mode nil)\n\n\n; stop emacs from contaminating each directory with semantic.cache\n(setq semanticdb-default-save-directory \"\/tmp\")\n\n;; (display-battery-mode)\n(setq column-number-mode t)\n;;(display-time)\n(setq backup-inhibited t) ;; disable backup\n\n;fullscreen mode (Redundant in Emacs 24.4)\n(defun switch-full-screen ()\n (interactive)\n (shell-command \"wmctrl -r :ACTIVE: -btoggle,fullscreen\"))\n\n;; Setup external directory variable\n(setq elisp-external-dir\n\t (expand-file-name \"external\" user-emacs-directory))\n\n;; Add external projects to load path\n(add-to-list 'load-path elisp-external-dir)\n\n(dolist (project (directory-files elisp-external-dir t \"\\\\w+\"))\n (when (file-directory-p project)\n\t(add-to-list 'load-path project)))\n\n; Auto revert unless there is unsaved data\n(global-auto-revert-mode t)\n\n;; Don't ask to save abbrevs\n(setq save-abbrevs 'silently)\n\n;; Use highlight colors\n(global-font-lock-mode t)\n","new_contents":";; Enable the built in pair mode\n(electric-pair-mode 1)\n\n;; Turn off menubar\n(menu-bar-mode -1)\n\n;; auto-indent\n(define-key global-map (kbd \"C-j\") 'newline-and-indent)\n\n;; Tab settings\n(setq-default tab-width 2)\n(setq-default indent-tabs-mode nil)\n\n\n; stop emacs from contaminating each directory with semantic.cache\n(setq semanticdb-default-save-directory \"\/tmp\")\n\n;; (display-battery-mode)\n(setq column-number-mode t)\n;;(display-time)\n(setq backup-inhibited t) ;; disable backup\n\n;fullscreen mode (Redundant in Emacs 24.4)\n(defun switch-full-screen ()\n (interactive)\n (shell-command \"wmctrl -r :ACTIVE: -btoggle,fullscreen\"))\n\n;; Setup external directory variable\n(setq elisp-external-dir\n\t (expand-file-name \"external\" user-emacs-directory))\n\n;; Add external projects to load path\n(add-to-list 'load-path elisp-external-dir)\n\n(dolist (project (directory-files elisp-external-dir t \"\\\\w+\"))\n (when (file-directory-p project)\n\t(add-to-list 'load-path project)))\n\n; Auto revert unless there is unsaved data\n(global-auto-revert-mode t)\n\n;; Don't ask to save abbrevs\n(setq save-abbrevs 'silently)\n\n;; Use highlight colors\n(global-font-lock-mode t)\n","subject":"Revert \"electric-pair-mode failed with python files.\"","message":"Revert \"electric-pair-mode failed with python files.\"\n\nThis reverts commit d5b221c3e03a9fa1aed9f765e29304270cf12188.\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"3d2d74ba63ce9b61300003c5185a88d4c6966c26","old_file":"contrib\/!lang\/yaml\/packages.el","new_file":"contrib\/!lang\/yaml\/packages.el","old_contents":";;; packages.el --- Ruby Layer packages File for Spacemacs\n;;\n;; Copyright (c) 2012-2014 Sylvain Benner\n;; Copyright (c) 2014-2015 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n(setq yaml-packages '(yaml-mode))\n\n(defun yaml\/init-yaml-mode ()\n \"Initialize YAML mode\"\n (use-package yaml-mode\n :mode ((\"\\\\.\\\\(yml\\\\|yaml\\\\)\\\\'\" . yaml-mode)\n (\"Procfile\\\\'\" . yaml-mode))\n :config (add-hook 'yaml-mode-hook\n '(lambda ()\n (define-key yaml-mode-map \"\\C-m\" 'newline-and-indent)))))\n","new_contents":";;; packages.el --- YAML Layer packages File for Spacemacs\n;;\n;; Copyright (c) 2012-2014 Sylvain Benner\n;; Copyright (c) 2014-2015 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n(setq yaml-packages '(yaml-mode))\n\n(defun yaml\/init-yaml-mode ()\n \"Initialize YAML mode\"\n (use-package yaml-mode\n :mode ((\"\\\\.\\\\(yml\\\\|yaml\\\\)\\\\'\" . yaml-mode)\n (\"Procfile\\\\'\" . yaml-mode))\n :config (add-hook 'yaml-mode-hook\n '(lambda ()\n (define-key yaml-mode-map \"\\C-m\" 'newline-and-indent)))))\n","subject":"Fix the header for the YAML package.el","message":"Fix the header for the YAML package.el\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"e973dae10508d1537e8a0b8e2ce7e2b0d31681a7","old_file":"init-rails.el","new_file":"init-rails.el","old_contents":"(eval-after-load 'rinari\n `(let ((rinari-lib-dir (directory-of-library \"rinari\")))\n (unless (require 'jump nil t)\n (error \"jump.el not found; please run 'git submodule update --init' in %s\"\n rinari-lib-dir))\n\n ;; Prevent rinari from shadowing ruby-mode and inf-ruby with its bundled copies\n (setq load-path\n (remove (file-name-as-directory (expand-file-name \"util\/inf-ruby\" rinari-lib-dir))\n (remove (file-name-as-directory (expand-file-name \"util\" rinari-lib-dir))\n load-path)))))\n\n(dolist (hook '(nxml-mode-hook haml-mode-hook sass-mode-hook magit-mode-hook yaml-mode-hook))\n (add-hook hook 'rinari-launch))\n\n(defun update-rails-ctags ()\n (interactive)\n (let ((default-directory (or (rinari-root) default-directory)))\n (shell-command (concat \"ctags -a -e -f \" rinari-tags-file-name \" --tag-relative -R app lib vendor test\"))))\n\n\n(provide 'init-rails)\n","new_contents":"(global-rinari-mode)\n\n(defun update-rails-ctags ()\n (interactive)\n (let ((default-directory (or (rinari-root) default-directory)))\n (shell-command (concat \"ctags -a -e -f \" rinari-tags-file-name \" --tag-relative -R app lib vendor test\"))))\n\n\n(provide 'init-rails)\n","subject":"Use new global-rinari-mode in place of old hooks + rinari-launch scheme","message":"Use new global-rinari-mode in place of old hooks + rinari-launch scheme\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"6737d886515f916143db57498096bb4274c8dad8","old_file":"init-growl.el","new_file":"init-growl.el","old_contents":"(require-package 'todochiku)\n\n(require 'todochiku) ;; growl notifications when compilation finishes\n(setq todochiku-icons-directory\n (expand-file-name \"site-lisp\/todochiku-icons\" user-emacs-directory))\n\n(defcustom terminal-notifier-path\n \"\/Applications\/terminal-notifier.app\/Contents\/MacOS\/terminal-notifier\"\n \"Path to the terminal-notifier app for Mountain Lion, if installed.\nSee https:\/\/github.com\/alloy\/terminal-notifier for more information.\")\n\n(when (and *is-a-mac* (file-executable-p terminal-notifier-path))\n (defadvice todochiku-get-arguments (around todochiku-terminal-notifier activate)\n (setq ad-return-value\n (list \"-title\" title \"-message\" message \"-activate\" \"org.gnu.Emacs\")))\n (setq todochiku-command terminal-notifier-path))\n\n(defadvice todochiku-message (around check-for-helper activate)\n \"Suppress message attempts when the `todochiku-command' program is missing.\"\n (when (executable-find todochiku-command)\n ad-do-it))\n\n(provide 'init-growl)\n","new_contents":"(require-package 'todochiku)\n\n(defadvice todochiku-message (around check-for-helper activate)\n \"Suppress message attempts when the `todochiku-command' program is missing.\"\n (when (executable-find todochiku-command)\n ad-do-it))\n\n(setq todochiku-icons-directory\n (expand-file-name \"site-lisp\/todochiku-icons\" user-emacs-directory))\n\n(defcustom terminal-notifier-path\n \"\/Applications\/terminal-notifier.app\/Contents\/MacOS\/terminal-notifier\"\n \"Path to the terminal-notifier app for Mountain Lion, if installed.\nSee https:\/\/github.com\/alloy\/terminal-notifier for more information.\")\n\n(when (and *is-a-mac* (file-executable-p terminal-notifier-path))\n (defadvice todochiku-get-arguments (around todochiku-terminal-notifier activate)\n (setq ad-return-value\n (list \"-title\" title \"-message\" message \"-activate\" \"org.gnu.Emacs\")))\n (setq todochiku-command terminal-notifier-path))\n\n(require 'todochiku) ;; growl notifications when compilation finishes\n\n(provide 'init-growl)\n","subject":"Change initialisation order for todochiku to better handle missing commands","message":"Change initialisation order for todochiku to better handle missing commands\n\nFixes #140\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"qinshulei\/emacs.d,cyjia\/emacs.d,arthurl\/emacs.d,farzadbekran\/emacs.d,jachinpy\/emacs.d,jhpx\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,kindoblue\/emacs.d,ruiyang\/emacs.d,kongfy\/emacs.d,zhuoyikang\/emacs.d,benkha\/emacs.d,wenpincui\/emacs.d,shafayetkhan\/emacs.d,modkzs\/emcs.d,jkaessens\/emacs.d,farzadbekran\/emacs.d,lujianmei\/emacs.d,jthetzel\/emacs.d,mmqmzk\/emacs.d,46do14\/emacs.d,LittleLmp\/emacs.d,zhaotai\/.emacs.d,ruiyang\/emacs.d,sgarciac\/emacs.d,zenith-john\/emacs.d,pairyo\/emacs.d,farzadbekran\/emacs.d,cjqw\/emacs.d,jachinpy\/emacs.d,LKI\/emacs.d,scorpionis\/emacs.d,qianwan\/emacs.d,caoyuanqi\/emacs.d,lromang\/emacs.d,dongdonghu\/.emacs.d,krzysz00\/emacs.d,blueabysm\/emacs.d,ernest-dzf\/emacs.d,roxolan\/emacs.d,Guoozz\/emacs.d,boblannon\/emacs.d,carlosliu\/emacs.d,blueseason\/emacs.d,atreeyang\/emacs.d,Werewolflsp\/emacs.d,hkcqr\/emacs.d,dcorking\/emacs.d,renatoriccio\/emacs.d,Togal\/emacs.d,mpwang\/emacs.d,wegatron\/emacs.d,Jadecity\/PurcellEmacs.d,svenyurgensson\/emacs.d,braveoyster\/emacs.d,exclamaforte\/emacs.d,Shanicky\/emacs.d,gsmlg\/emacs.d,hophacker\/emacs.d,bibaijin\/emacs.d,DarkThrone\/emacs.d,alant\/emacs.d,baohaojun\/emacs.d,fengxl\/emacs.d,lust4life\/emacs.d,purcell\/emacs.d,danfengcao\/emacs.d,whizzzkid\/emacs.d,emuio\/emacs.d,me020523\/emacs.d,ilove0518\/emacs.d,Enzo-Liu\/emacs.d,dhanunjaya\/emacs.d,haodaivshen\/emacs.d"} {"commit":"9fa3f85a02cfcbb6cdff20da75daeb8f15e5ce45","old_file":"init-rails.el","new_file":"init-rails.el","old_contents":"(dolist (hook '(nxml-mode-hook haml-mode-hook sass-mode-hook))\n (add-hook hook (lambda () (rinari-launch))))\n(defun update-rails-ctags ()\n (interactive)\n (let ((default-directory (or (rinari-root) default-directory)))\n (shell-command (concat \"ctags -a -e -f \" rinari-tags-file-name \" --tag-relative -R app lib vendor test\"))))\n(require 'rinari)\n\n(add-hook 'rails-minor-mode-hook (lambda () (local-set-key [f6] 'recompile)))\n\n\n\n(provide 'init-rails)\n","new_contents":"(dolist (hook '(nxml-mode-hook haml-mode-hook sass-mode-hook magit-mode-hook))\n (add-hook hook (lambda () (rinari-launch))))\n(defun update-rails-ctags ()\n (interactive)\n (let ((default-directory (or (rinari-root) default-directory)))\n (shell-command (concat \"ctags -a -e -f \" rinari-tags-file-name \" --tag-relative -R app lib vendor test\"))))\n(require 'rinari)\n\n(add-hook 'rails-minor-mode-hook (lambda () (local-set-key [f6] 'recompile)))\n\n\n\n(provide 'init-rails)\n","subject":"Add rinari-launch to magit-mode-hook for convenience, since magit doesn't use the C-c prefix","message":"Add rinari-launch to magit-mode-hook for convenience, since magit doesn't use the C-c prefix\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"lujianmei\/emacs.d,wegatron\/emacs.d,Guoozz\/emacs.d,caoyuanqi\/emacs.d,farzadbekran\/emacs.d,LittleLmp\/emacs.d,carlosliu\/emacs.d,YangXin\/emacs.d,dongdonghu\/.emacs.d,zhuoyikang\/emacs.d,zuoshifan\/emacs.d,lromang\/emacs.d,jthetzel\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,danfengcao\/emacs.d,ilove0518\/emacs.d,baohaojun\/emacs.d,benkha\/emacs.d,Jadecity\/PurcellEmacs.d,alant\/emacs.d,scorpionis\/emacs.d,zuoshifan\/emacs.d,renatoriccio\/emacs.d,kongfy\/emacs.d,zuoshifan\/emacs.d,ernest-dzf\/emacs.d,mpwang\/emacs.d,farzadbekran\/emacs.d,hkcqr\/emacs.d,dhanunjaya\/emacs.d,farzadbekran\/emacs.d,braveoyster\/emacs.d,boblannon\/emacs.d,blueseason\/emacs.d,qinshulei\/emacs.d,zuoshifan\/emacs.d,blueabysm\/emacs.d,dcorking\/emacs.d,kindoblue\/emacs.d,jhpx\/emacs.d,jkaessens\/emacs.d,svenyurgensson\/emacs.d,haodaivshen\/emacs.d,zuoshifan\/emacs.d,modkzs\/emcs.d,purcell\/emacs.d,Togal\/emacs.d,46do14\/emacs.d,Shanicky\/emacs.d,Enzo-Liu\/emacs.d,krzysz00\/emacs.d,exclamaforte\/emacs.d,whizzzkid\/emacs.d,DarkThrone\/emacs.d,Werewolflsp\/emacs.d,LKI\/emacs.d,hophacker\/emacs.d,zenith-john\/emacs.d,bibaijin\/emacs.d,cjqw\/emacs.d,mmqmzk\/emacs.d,atreeyang\/emacs.d,zhaotai\/.emacs.d,ruiyang\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,cyjia\/emacs.d,pairyo\/emacs.d,wenpincui\/emacs.d,qianwan\/emacs.d,lust4life\/emacs.d,jachinpy\/emacs.d,gsmlg\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,YangXin\/emacs.d,ruiyang\/emacs.d,sgarciac\/emacs.d,emuio\/emacs.d,fengxl\/emacs.d,me020523\/emacs.d,arthurl\/emacs.d,roxolan\/emacs.d,shafayetkhan\/emacs.d"} {"commit":"7ee213d709b8994b612a5ed117502e7dbe2a841a","old_file":"lisp\/init-dired.el","new_file":"lisp\/init-dired.el","old_contents":"(require-package 'dired+)\n(require-package 'dired-sort)\n\n(setq-default diredp-hide-details-initially-flag nil\n dired-dwim-target t)\n\n;; Prefer g-prefixed coreutils version of standard utilities when available\n(let ((gls (executable-find \"gls\")))\n (when gls (setq insert-directory-program gls)))\n\n(after-load 'dired\n (require 'dired+)\n (require 'dired-sort)\n (when (fboundp 'global-dired-hide-details-mode)\n (global-dired-hide-details-mode -1))\n (setq dired-recursive-deletes 'top)\n (define-key dired-mode-map [mouse-2] 'dired-find-file)\n (add-hook 'dired-mode-hook\n (lambda () (guide-key\/add-local-guide-key-sequence \"%\"))))\n\n(when (maybe-require-package 'diff-hl)\n (after-load 'dired\n (add-hook 'dired-mode-hook 'diff-hl-dired-mode)))\n\n(provide 'init-dired)\n","new_contents":"(require-package 'dired-sort)\n\n(setq-default dired-dwim-target t)\n\n;; Prefer g-prefixed coreutils version of standard utilities when available\n(let ((gls (executable-find \"gls\")))\n (when gls (setq insert-directory-program gls)))\n\n(when (maybe-require-package 'diredfl)\n (add-hook 'dired-mode-hook 'diredfl-mode))\n\n(after-load 'dired\n (require 'dired-sort)\n (setq dired-recursive-deletes 'top)\n (define-key dired-mode-map [mouse-2] 'dired-find-file)\n (add-hook 'dired-mode-hook\n (lambda () (guide-key\/add-local-guide-key-sequence \"%\"))))\n\n(when (maybe-require-package 'diff-hl)\n (after-load 'dired\n (add-hook 'dired-mode-hook 'diff-hl-dired-mode)))\n\n(provide 'init-dired)\n","subject":"Drop dired+ and use diredfl for enhanced font-locking","message":"Drop dired+ and use diredfl for enhanced font-locking\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"benkha\/emacs.d,blueabysm\/emacs.d,blueseason\/emacs.d,me020523\/emacs.d,braveoyster\/emacs.d,purcell\/emacs.d,kindoblue\/emacs.d,qianwan\/emacs.d,wegatron\/emacs.d,cjqw\/emacs.d,dcorking\/emacs.d,baohaojun\/emacs.d,arthurl\/emacs.d,sgarciac\/emacs.d,roxolan\/emacs.d,emuio\/emacs.d,svenyurgensson\/emacs.d,kongfy\/emacs.d,gsmlg\/emacs.d,mmqmzk\/emacs.d,lust4life\/emacs.d,krzysz00\/emacs.d"} {"commit":"efcc81abc7d141fddca54baae292e9f7ef92aa47","old_file":"init-growl.el","new_file":"init-growl.el","old_contents":"(require 'todochiku) ;; growl notifications when compilation finishes\n(setq todochiku-icons-directory (expand-file-name \"~\/.emacs.d\/site-lisp\/todochiku-icons\"))\n\n\n;;----------------------------------------------------------------------------\n;; Use terminal-notifier in OS X Mountain Lion\n;; https:\/\/github.com\/alloy\/terminal-notifier (Install in \/Applications)\n;;----------------------------------------------------------------------------\n(setq terminal-notifier-path\n \"\/Applications\/terminal-notifier.app\/Contents\/MacOS\/terminal-notifier\")\n\n(defadvice todochiku-get-arguments (around todochiku-nc)\n (setq ad-return-value\n (list \"-title\" title \"-message\" message \"-activate\" \"org.gnu.Emacs\")))\n\n(when (file-executable-p terminal-notifier-path)\n (setq todochiku-command terminal-notifier-path)\n (ad-activate 'todochiku-get-arguments))\n\n\n(provide 'init-growl)\n","new_contents":"(require 'todochiku) ;; growl notifications when compilation finishes\n(setq todochiku-icons-directory (expand-file-name \"~\/.emacs.d\/site-lisp\/todochiku-icons\"))\n\n(defcustom terminal-notifier-path\n \"\/Applications\/terminal-notifier.app\/Contents\/MacOS\/terminal-notifier\"\n \"Path to the terminal-notifier app for Mountain Lion, if installed.\nSee https:\/\/github.com\/alloy\/terminal-notifier for more information.\")\n\n(when (and *is-a-mac* (file-executable-p terminal-notifier-path))\n (defadvice todochiku-get-arguments (around todochiku-terminal-notifier activate)\n (setq ad-return-value\n (list \"-title\" title \"-message\" message \"-activate\" \"org.gnu.Emacs\")))\n (setq todochiku-command terminal-notifier-path))\n\n\n(provide 'init-growl)\n","subject":"Tidy up terminal-notifier code, and skip file test when not on OS X","message":"Tidy up terminal-notifier code, and skip file test when not on OS X\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"b8628513033118c6b405ae8daeccd8cbf7cc33d4","old_file":"init-xterm.el","new_file":"init-xterm.el","old_contents":"(require 'init-frame-hooks)\n\n(defun fix-up-xterm-control-arrows ()\n (let ((map (if (boundp 'input-decode-map)\n input-decode-map\n function-key-map)))\n (define-key map \"\\e[1;5A\" [C-up])\n (define-key map \"\\e[1;5B\" [C-down])\n (define-key map \"\\e[1;5C\" [C-right])\n (define-key map \"\\e[1;5D\" [C-left])\n (define-key map \"\\e[5A\" [C-up])\n (define-key map \"\\e[5B\" [C-down])\n (define-key map \"\\e[5C\" [C-right])\n (define-key map \"\\e[5D\" [C-left])))\n\n(add-hook 'after-make-console-frame-hooks\n (lambda ()\n (when (< emacs-major-version 23)\n (fix-up-xterm-control-arrows))\n (xterm-mouse-mode 1) ; Mouse in a terminal (Use shift to paste with middle button)\n (mwheel-install)))\n\n(provide 'init-xterm)","new_contents":"(require 'init-frame-hooks)\n\n(defun fix-up-xterm-control-arrows ()\n (let ((map (if (boundp 'input-decode-map)\n input-decode-map\n function-key-map)))\n (define-key map \"\\e[1;5A\" [C-up])\n (define-key map \"\\e[1;5B\" [C-down])\n (define-key map \"\\e[1;5C\" [C-right])\n (define-key map \"\\e[1;5D\" [C-left])\n (define-key map \"\\e[5A\" [C-up])\n (define-key map \"\\e[5B\" [C-down])\n (define-key map \"\\e[5C\" [C-right])\n (define-key map \"\\e[5D\" [C-left])))\n\n(add-hook 'after-make-console-frame-hooks\n (lambda ()\n (when (< emacs-major-version 23)\n (fix-up-xterm-control-arrows))\n (xterm-mouse-mode 1) ; Mouse in a terminal (Use shift to paste with middle button)\n (when (fboundp 'mwheel-install)\n (mwheel-install))))\n\n(provide 'init-xterm)\n","subject":"Handle console-only Emacs builds, which lack mwheel-install","message":"Handle console-only Emacs builds, which lack mwheel-install\n\nCloses #85\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"wenpincui\/emacs.d,arthurl\/emacs.d,hkcqr\/emacs.d,DarkThrone\/emacs.d,jhpx\/emacs.d,baohaojun\/emacs.d,svenyurgensson\/emacs.d,kindoblue\/emacs.d,krzysz00\/emacs.d,gsmlg\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,ruiyang\/emacs.d,jthetzel\/emacs.d,46do14\/emacs.d,kongfy\/emacs.d,jachinpy\/emacs.d,caoyuanqi\/emacs.d,mpwang\/emacs.d,LKI\/emacs.d,hophacker\/emacs.d,jachinpy\/emacs.d,boblannon\/emacs.d,zhuoyikang\/emacs.d,danfengcao\/emacs.d,blueabysm\/emacs.d,modkzs\/emcs.d,farzadbekran\/emacs.d,lust4life\/emacs.d,ernest-dzf\/emacs.d,blueseason\/emacs.d,scorpionis\/emacs.d,Togal\/emacs.d,dhanunjaya\/emacs.d,LittleLmp\/emacs.d,zenith-john\/emacs.d,benkha\/emacs.d,mmqmzk\/emacs.d,roxolan\/emacs.d,Werewolflsp\/emacs.d,alant\/emacs.d,zhaotai\/.emacs.d,fengxl\/emacs.d,qianwan\/emacs.d,ruiyang\/emacs.d,atreeyang\/emacs.d,wegatron\/emacs.d,lromang\/emacs.d,purcell\/emacs.d,whizzzkid\/emacs.d,Jadecity\/PurcellEmacs.d,Shanicky\/emacs.d,shafayetkhan\/emacs.d,me020523\/emacs.d,sgarciac\/emacs.d,farzadbekran\/emacs.d,cjqw\/emacs.d,dongdonghu\/.emacs.d,farzadbekran\/emacs.d,Guoozz\/emacs.d,lujianmei\/emacs.d,jkaessens\/emacs.d,bibaijin\/emacs.d,renatoriccio\/emacs.d,braveoyster\/emacs.d,carlosliu\/emacs.d,qinshulei\/emacs.d,exclamaforte\/emacs.d,pairyo\/emacs.d,haodaivshen\/emacs.d,cyjia\/emacs.d,dcorking\/emacs.d,ilove0518\/emacs.d,Enzo-Liu\/emacs.d,emuio\/emacs.d"} {"commit":"d008a7e97765c6d6b7324d229ac399317caeac16","old_file":"modules\/ui\/fci\/config.el","new_file":"modules\/ui\/fci\/config.el","old_contents":";;; ui\/fci\/config.el -*- lexical-binding: t; -*-\n\n(def-package! fill-column-indicator\n :hook ((text-mode prog-mode conf-mode) . turn-on-fci-mode)\n :config\n (defun +fci|set-color ()\n (setq fci-rule-color (face-foreground 'line-number)))\n (add-hook 'doom-load-theme-hook #'+fci|set-color)\n (+fci|set-color)\n\n (when (featurep! :completion company)\n (add-hook 'company-completion-started-hook #'+fci|disable-when-company-activates)\n (add-hook! '(company-completion-finished-hook company-completion-cancelled-hook)\n #'+fci|enable-when-company-deactivates)))\n","new_contents":";;; ui\/fci\/config.el -*- lexical-binding: t; -*-\n\n(defvar +fci-rule-color-function\n (lambda () (face-foreground 'line-number))\n \"Color used to draw the fill-column rule.\n\nAccepts a color string or a function that returns a color.\n\nChanges to this variable do not take effect until `fci-mode' is restarted.\")\n\n\n;;\n;; Plugins\n;;\n\n(def-package! fill-column-indicator\n :hook ((text-mode prog-mode conf-mode) . turn-on-fci-mode)\n :config\n (defun +fci|set-color ()\n \"Automatically change `fci-rule-color' based on `+fci-rule-color-function's\nreturn value. To disable this, either set `+fci-rule-color-function' to nil or\nremove `+fci|set-color' from `fci-mode-hook'.\"\n (when (functionp +fci-rule-color-function)\n (setq fci-rule-color (funcall +fci-rule-color-function))))\n (add-hook 'fci-mode-hook #'+fci|set-color)\n\n (when (featurep! :completion company)\n (add-hook 'company-completion-started-hook #'+fci|disable-when-company-activates)\n (add-hook! '(company-completion-finished-hook company-completion-cancelled-hook)\n #'+fci|enable-when-company-deactivates)))\n","subject":"Make ui\/fci's automatic color change customizable","message":"Make ui\/fci's automatic color change customizable\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs"} {"commit":"494cb8e9419feaf0cf9a573091cc2129c64b53dc","old_file":"emacs\/modes\/dired-conf.el","new_file":"emacs\/modes\/dired-conf.el","old_contents":";;; dired-conf.el -- Settings for dired-mode\n(eval-when-compile\n (require 'dired)\n (require 'dired-aux))\n\n(setq dired-listing-switches \"-lRA --ignore='.git' --group-directories-first\"\n dired-auto-revert-buffer t\n dired-isearch-filenames t)\n","new_contents":";;; dired-conf.el -- Settings for dired-mode\n(eval-when-compile\n (require 'dired)\n (require 'dired-aux))\n\n(setq dired-listing-switches \"-lRA --ignore='.git' --group-directories-first\"\n dired-auto-revert-buffer t\n dired-isearch-filenames t)\n\n(defun pjones:dired-show-only-matching-files (regexp)\n (interactive \"sFiles to show (regexp): \")\n (dired-mark-files-regexp regexp)\n (dired-toggle-marks)\n (dired-do-kill-lines))\n\n(defun pjones:dired-load-hook ()\n (define-key dired-mode-map [?%?h] 'pjones:dired-show-only-matching-files))\n\n(add-hook 'dired-load-hook 'pjones:dired-load-hook)\n(add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode)\n","subject":"Add a new dired function to only show files that match a regexp","message":"Add a new dired function to only show files that match a regexp\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"32d7a709821c5f5eeb4a9a5792633d9c9903e3f2","old_file":"spacemacs\/.spacemacs.d\/layers\/olical-lisp\/packages.el","new_file":"spacemacs\/.spacemacs.d\/layers\/olical-lisp\/packages.el","old_contents":"(defconst olical-lisp-packages\n '(lispy\n parinfer))\n\n(defun olical-lisp\/init-lispy ()\n (use-package lispy))\n\n(defun olical-lisp\/init-parinfer ()\n (use-package parinfer\n :init\n (progn\n (setq-default parinfer-lighters '(\" infer\" . \" (infer)\"))\n (setq-default parinfer-extensions\n '(defaults\n pretty-parens\n evil\n lispy\n smart-tab\n smart-yank))\n (add-hook 'clojure-mode-hook #'parinfer-mode)\n (add-hook 'racket-mode-hook #'parinfer-mode)\n (add-hook 'scheme-mode-hook #'parinfer-mode)\n (add-hook 'emacs-lisp-mode-hook #'parinfer-mode)\n (spacemacs\/set-leader-keys-for-minor-mode 'parinfer-mode \",\" 'parinfer-toggle-mode))))\n","new_contents":"(defconst olical-lisp-packages\n '(lispy))\n\n(defun olical-lisp\/init-lispy ()\n (use-package lispy))\n","subject":"Remove parinfer, forces me to use lispy more","message":"Remove parinfer, forces me to use lispy more\n","lang":"Emacs Lisp","license":"unlicense","repos":"Olical\/dotfiles,Wolfy87\/dotfiles,Wolfy87\/dotfiles"} {"commit":"fb8bc094bbf42960681361a3f7f878bcb10d96ab","old_file":"users\/fimasvee\/init.el","new_file":"users\/fimasvee\/init.el","old_contents":";; Default js indentation levels\n(setq-default js2-basic-offset 2)\n(setq js-indent-level 2)\n\n;; Disallow scrolling with mouse wheel\n(mouse-wheel-mode nil)\n\n;; Don't screw up key bindings in magit-mode\n(add-to-list 'wrap-region-except-modes 'adventur-mode)\n\n;; Font size\n(define-key global-map (kbd \"M-s +\") 'zoom-in)\n(define-key global-map (kbd \"M-s -\") 'zoom-out)\n\n;; org-mode: beginning\/end of buffer on M-up\/down\n\n(eval-after-load \"org\"\n '(progn\n (define-key org-mode-map (kbd \"M-\") 'beginning-of-buffer)\n (define-key org-mode-map (kbd \"M-\") 'end-of-buffer)\n (define-key org-mode-map (kbd \"C-S-\") 'org-metaup)\n (define-key org-mode-map (kbd \"C-S-\") 'org-metadown)))\n","new_contents":";; Default js indentation levels\n(setq-default js2-basic-offset 2)\n(setq js-indent-level 2)\n\n;; Disallow scrolling with mouse wheel\n(mouse-wheel-mode nil)\n\n;; Don't screw up key bindings in magit-mode\n(add-to-list 'wrap-region-except-modes 'adventur-mode)\n\n;; Font size\n(define-key global-map (kbd \"M-s +\") 'zoom-in)\n(define-key global-map (kbd \"M-s -\") 'zoom-out)\n\n;; Use GNU ls - install with:\n;; brew install xz\n;; brew install coreutils\n(setq insert-directory-program \"gls\")\n\n;; org-mode: beginning\/end of buffer on M-up\/down\n(eval-after-load \"org\"\n '(progn\n (define-key org-mode-map (kbd \"M-\") 'beginning-of-buffer)\n (define-key org-mode-map (kbd \"M-\") 'end-of-buffer)\n (define-key org-mode-map (kbd \"C-S-\") 'org-metaup)\n (define-key org-mode-map (kbd \"C-S-\") 'org-metadown)))\n","subject":"Use GNU ls since it supports --dired","message":"Use GNU ls since it supports --dired\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"3dbe33e140fd2b64a72272e0927d8e884a215855","old_file":"emacs.d\/init-files\/init-flycheck.el","new_file":"emacs.d\/init-files\/init-flycheck.el","old_contents":"(add-hook 'after-init-hook #'global-flycheck-mode)\n(add-to-list 'display-buffer-alist\n `(,(rx bos \"*Flycheck errors*\" eos)\n (display-buffer-reuse-window\n display-buffer-in-side-window)\n (reusable-frames . visible)\n (side . bottom)\n (window-height . 0.2)))\n\n\n\n","new_contents":"(flycheck-define-checker python-pylama\n \"A Python syntax and style checker using the pylama utility. See URL\n `http:\/\/pypi.python.org\/pypi\/pylama'.\"\n\n :command (\"pylama\" source-inplace)\n :error-patterns\n ((error line-start (file-name) \":\" line \":\" (message) line-end))\n :modes python-mode)\n\n(add-to-list 'flycheck-checkers 'python-pylama)\n\n(add-hook 'after-init-hook #'global-flycheck-mode)\n(add-to-list 'display-buffer-alist\n `(,(rx bos \"*Flycheck errors*\" eos)\n (display-buffer-reuse-window\n display-buffer-in-side-window)\n (reusable-frames . visible)\n (side . bottom)\n (window-height . 0.2)))\n\n\n\n","subject":"Add pylama checker to flycheck","message":"Add pylama checker to flycheck\n","lang":"Emacs Lisp","license":"mit","repos":"bbenne10\/dotfiles,bbenne10\/dotfiles"} {"commit":"148d66c97560abe19bec0d17e3cc0251e7bb5584","old_file":"emacs.d\/config\/config-keys.el","new_file":"emacs.d\/config\/config-keys.el","old_contents":"(global-set-key (kbd \"C-s\") 'isearch-forward-regexp)\n(global-set-key (kbd \"\") 'beginning-of-line)\n(global-set-key (kbd \"\") 'end-of-line)\n(global-set-key (kbd \"M-\") 'beginning-of-buffer)\n(global-set-key (kbd \"C-\") 'beginning-of-buffer)\n(global-set-key (kbd \"M-\") 'end-of-buffer)\n(global-set-key (kbd \"C-\") 'end-of-buffer)\n(global-set-key (kbd \"M-g\") 'goto-line)\n(global-set-key (kbd \"C-x C-r\") 'my\/recentf-ido-find-file)\n(global-set-key (kbd \"M-y\") 'kill-ring-ido) ; replace usual kill-ring-pop\n(global-set-key (kbd \"\") 'my\/move-line-up)\n(global-set-key (kbd \"\") 'my\/move-line-down)\n","new_contents":"(global-set-key (kbd \"C-s\") 'isearch-forward-regexp)\n(global-set-key (kbd \"C-r\") 'isearch-backward-regexp)\n(global-set-key (kbd \"\") 'beginning-of-line)\n(global-set-key (kbd \"\") 'end-of-line)\n(global-set-key (kbd \"M-\") 'beginning-of-buffer)\n(global-set-key (kbd \"C-\") 'beginning-of-buffer)\n(global-set-key (kbd \"M-\") 'end-of-buffer)\n(global-set-key (kbd \"C-\") 'end-of-buffer)\n(global-set-key (kbd \"M-g\") 'goto-line)\n(global-set-key (kbd \"C-x C-r\") 'my\/recentf-ido-find-file)\n(global-set-key (kbd \"M-y\") 'kill-ring-ido) ; replace usual kill-ring-pop\n(global-set-key (kbd \"\") 'my\/move-line-up)\n(global-set-key (kbd \"\") 'my\/move-line-down)\n","subject":"Add commands for searching backwards too.","message":"Add commands for searching backwards too.\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"shaleh\/dot-files"} {"commit":"089c3a80e0da985dcdfbef47be0fb30f0fa08d73","old_file":"layers\/my-go\/config.el","new_file":"layers\/my-go\/config.el","old_contents":";; -*- lexical-binding: t -*-\n\n;; Auto-indent after paste in Go triggers goimports, that makes pasting imports\n;; difficult. Let's let gofmt triggered by file save handle the indentation.\n(add-to-list 'spacemacs-indent-sensitive-modes 'go-mode)\n","new_contents":";; -*- lexical-binding: t -*-\n\n;; Automatic re-indentation after paste in `go-mode' may trigger a call to\n;; goimports which will remove unused imports. That makes it frustrating to\n;; paste source code containing new package imports, as they will immediately be\n;; removed again if the buffer doesn't yet contain any logic using the new\n;; package.\n;;\n;; To avoid this issue we will disable automatic re-indentation after paste. The\n;; task to re-indent the source code will be left to an `after-save-hook' which\n;; calls goimports, gofmt or equivalent.\n;;\n(add-to-list 'spacemacs-indent-sensitive-modes 'go-mode)\n","subject":"Improve description of why we mark go-mode to be indent sensitive","message":"Improve description of why we mark go-mode to be indent sensitive\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"55a84eba429cb96cddf666b3b6cf0f5455e1d535","old_file":"modes\/pdf-tools-conf.el","new_file":"modes\/pdf-tools-conf.el","old_contents":";;; pdf-tools-conf.el -- Setting for pdf-tools.\n;;\n;;; Commentary:\n;;\n;;; Code:\n(eval-when-compile\n (require 'pdf-tools))\n\n;; Dependencies:\n(require 'pdf-outline)\n\n(defun pjones:pdf-outline-follow-link-and-quit ()\n \"Follow outline link and delete the outline window.\"\n (interactive)\n (let ((win (selected-window)))\n (pdf-outline-follow-link nil)\n (delete-window win)))\n\n;; Settings:\n(custom-set-variables\n '(pdf-view-continuous nil))\n\n;; Extra key bindings:\n(define-key pdf-outline-buffer-mode-map (kbd \"RET\") #'pjones:pdf-outline-follow-link-and-quit)\n\n;;; pdf-tools-conf.el ends here\n","new_contents":";;; pdf-tools-conf.el -- Setting for pdf-tools.\n;;\n;;; Commentary:\n;;\n;;; Code:\n(eval-when-compile\n (require 'pdf-tools))\n\n;; Dependencies:\n(require 'pdf-outline)\n\n(defun pjones:pdf-outline-follow-link-and-quit ()\n \"Follow outline link and delete the outline window.\"\n (interactive)\n (let ((win (selected-window))\n (buf (current-buffer)))\n (pdf-outline-follow-link nil)\n (delete-window win)\n (kill-buffer buf)))\n\n(defun pjones:pdf-outline-quit ()\n \"Close the outline buffer and window.\"\n (interactive)\n (let ((win (selected-window))\n (buf (current-buffer)))\n (delete-window win)\n (kill-buffer buf)))\n\n;; Settings:\n(custom-set-variables\n '(pdf-view-continuous nil))\n\n;; Extra key bindings:\n(define-key pdf-outline-buffer-mode-map (kbd \"RET\") #'pjones:pdf-outline-follow-link-and-quit)\n(define-key pdf-outline-buffer-mode-map (kbd \"q\") #'pjones:pdf-outline-quit)\n\n;;; pdf-tools-conf.el ends here\n","subject":"Delete the outline buffer when jumping away","message":"pdf-tools: Delete the outline buffer when jumping away\n\nThis also helps ensure a new outline is created the next time one is\nneeded and will match the PDF document. (Reloading the PDF doesn't\nseem to also reload the outline.)\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"d84ed3ffe817ae5cc5089d77a3ced41b2e2e4397","old_file":"rc\/undo-redo.el","new_file":"rc\/undo-redo.el","old_contents":";; ==============================================================================\n;; Undo\/redo extensions\n;; ------------------------------------------------------------------------------\n\n;; (use-package \"redo+\"\n;; :load-path \"site-lisp\/redo+\")\n\n\n(use-package \"undo-tree\"\n :config\n (global-undo-tree-mode)\n (global-set-key (kbd \"s-z g\") 'global-undo-tree-mode)\n (global-set-key (kbd \"s-z t\") 'undo-tree-visualize)\n (define-key function-key-map (kbd \"s-z z\") 'undo)\n (define-key function-key-map (kbd \"s-z Z\") 'redo))\n\n\n(autoload 'longlines-mode \"longlines.el\"\n \"Minor mode for editing long lines.\" t)\n","new_contents":";; ==============================================================================\n;; Undo\/redo extensions\n;; ------------------------------------------------------------------------------\n\n;; (use-package \"redo+\"\n;; :load-path \"site-lisp\/redo+\")\n\n\n(use-package \"undo-tree\"\n :config\n (global-undo-tree-mode)\n (global-set-key (kbd \"s-z g\") 'global-undo-tree-mode)\n (global-set-key (kbd \"s-z t\") 'undo-tree-visualize)\n (define-key function-key-map (kbd \"s-z z\") 'undo)\n (define-key function-key-map (kbd \"s-z x\") 'redo))\n\n\n(autoload 'longlines-mode \"longlines.el\"\n \"Minor mode for editing long lines.\" t)\n","subject":"Change key map for redo","message":"Change key map for redo\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"peterhil\/emacs-config"} {"commit":"b2a48d5365d874766ccd399b36ac25c6c2b41470","old_file":"modules\/lang\/php\/packages.el","new_file":"modules\/lang\/php\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; lang\/php\/packages.el\n\n(package! php-boris)\n(package! php-extras :recipe (:host github :repo \"arnested\/php-extras\"))\n(package! php-mode)\n(package! php-refactor-mode)\n(package! phpunit)\n\n(when (featurep! +hack)\n (package! hack-mode :recipe (:host github :repo \"hhvm\/hack-mode\")))\n\n(unless (featurep! +lsp)\n (package! phpactor)\n (package! company-phpactor))\n\n(when (featurep! :editor format)\n (package! php-cs-fixer))\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; lang\/php\/packages.el\n\n(package! php-boris)\n(package! php-extras :recipe (:host github :repo \"arnested\/php-extras\"))\n(package! php-mode)\n(package! php-refactor-mode)\n(package! phpunit)\n\n(when (featurep! +hack)\n (package! hack-mode :recipe (:host github :repo \"hhvm\/hack-mode\")))\n\n(unless (featurep! +lsp)\n (package! phpactor)\n (when (featurep! :completion company)\n (package! company-phpactor)))\n\n(when (featurep! :editor format)\n (package! php-cs-fixer))\n","subject":"Add feature detection for company-phpactor","message":"Add feature detection for company-phpactor\r\n\r\n`company-phpactor` separation gives us the ability to only install it if `company` is enabled.\n\nCo-Authored-By: Oleksii Filonenko <389acbe81f0fd7fe3ec649f394c339e6fc62238f@protonmail.com>","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom"} {"commit":"ff8d4dada8b6e2b68523ef017cc849a40851d12f","old_file":"layers\/+lang\/lua\/packages.el","new_file":"layers\/+lang\/lua\/packages.el","old_contents":"(setq lua-packages\n '(\n company\n flycheck\n lua-mode\n ))\n\n(defun lua\/post-init-flycheck ()\n (spacemacs\/add-flycheck-hook 'lua-mode))\n\n(defun lua\/init-lua-mode ()\n (use-package lua-mode\n :defer t\n :mode (\"\\\\.lua\\\\'\" . lua-mode)\n :interpreter (\"lua\" . lua-mode)\n :config\n (progn\n (setq lua-indent-level 2\n lua-indent-string-contents t)\n (spacemacs\/set-leader-keys-for-major-mode 'lua-mode \"d\" 'lua-search-documentation)\n (spacemacs\/set-leader-keys-for-major-mode 'lua-mode \"sb\" 'lua-send-buffer)\n (spacemacs\/set-leader-keys-for-major-mode 'lua-mode \"sf\" 'lua-send-defun)\n (spacemacs\/set-leader-keys-for-major-mode 'lua-mode \"sl\" 'lua-send-current-line)\n (spacemacs\/set-leader-keys-for-major-mode 'lua-mode \"sr\" 'lua-send-region))))\n\n(defun lua\/post-init-company ()\n (add-hook 'lua-mode-hook 'company-mode))\n","new_contents":"(setq lua-packages\n '(\n company\n flycheck\n lua-mode\n ))\n\n(defun lua\/post-init-flycheck ()\n (spacemacs\/add-flycheck-hook 'lua-mode))\n\n(defun lua\/init-lua-mode ()\n (use-package lua-mode\n :defer t\n :mode (\"\\\\.lua\\\\'\" . lua-mode)\n :interpreter (\"lua\" . lua-mode)\n :init\n (progn\n (setq lua-indent-level 2\n lua-indent-string-contents t)\n (spacemacs\/set-leader-keys-for-major-mode 'lua-mode\n \"d\" 'lua-search-documentation\n \"sb\" 'lua-send-buffer\n \"sf\" 'lua-send-defun\n \"sl\" 'lua-send-current-line\n \"sr\" 'lua-send-region))))\n\n(defun lua\/post-init-company ()\n (add-hook 'lua-mode-hook 'company-mode))\n","subject":"Move lua setup to init block","message":"Move lua setup to init block\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"4384facfcbc5f1ea91918f520e5262a44550dd3f","old_file":"lisp\/editor.el","new_file":"lisp\/editor.el","old_contents":";; set your desired tab width\n(setq-default indent-tabs-mode nil)\n\n;; enable y\/n answers\n(fset 'yes-or-no-p 'y-or-n-p)\n\n;; highlight matching parens\n(show-paren-mode t)\n\n;; highlight current line\n(add-hook 'after-change-major-mode-hook 'hl-line-mode)\n\n;; show line numbers in programming modes\n(add-hook 'prog-mode-hook 'linum-mode)\n(setq linum-format \"%4d \")\n\n;; spellchecker in comments for programming modes\n(add-hook 'prog-mode-hook (lambda () (flyspell-prog-mode)))\n(setq flyspell-issue-message-flag nil)\n\n;; enable interactive do\n(ido-mode t)\n\n;; disable auto-save capabilities\n(setq make-backup-files nil)\n(setq auto-save-default nil)\n\n;; disable line wrapping\n(set-default 'truncate-lines t)\n\n;; quick whitespace-mode shortcut\n(global-set-key (kbd \"C-x w\") 'whitespace-mode)\n","new_contents":";; set your desired tab width\n(setq-default indent-tabs-mode nil)\n\n;; enable y\/n answers\n(fset 'yes-or-no-p 'y-or-n-p)\n\n;; highlight matching parens\n(show-paren-mode t)\n\n;; highlight current line\n(add-hook 'after-change-major-mode-hook 'hl-line-mode)\n\n;; show line numbers in programming modes\n(add-hook 'prog-mode-hook 'linum-mode)\n(setq linum-format \"%4d \")\n\n;; spellchecker in comments for programming modes\n(add-hook 'prog-mode-hook 'flyspell-prog-mode)\n(setq flyspell-issue-message-flag nil)\n\n;; enable interactive do\n(ido-mode t)\n\n;; disable auto-save capabilities\n(setq make-backup-files nil)\n(setq auto-save-default nil)\n\n;; disable line wrapping\n(set-default 'truncate-lines t)\n\n;; quick whitespace-mode shortcut\n(global-set-key (kbd \"C-x w\") 'whitespace-mode)\n\n;; enable follow-mode for multi-column editing in large screens\n(add-hook 'prog-mode-hook 'follow-mode)\n","subject":"Enable follow-mode for programming modes, for multi-column editing.","message":"Enable follow-mode for programming modes, for multi-column editing.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"danielfm\/dotfiles-emacs"} {"commit":"6fccd15a63c9f44203c1ac829e1f950872e75aac","old_file":"available-init\/linum.el","new_file":"available-init\/linum.el","old_contents":"(req-package linum\n :config\n (add-hook 'prog-mode-hook #'linum-mode)\n (setq linum-format \"%3d\\u2502\"))\n","new_contents":"(req-package linum\n :config\n (add-hook 'prog-mode-hook #'linum-mode)\n (setq linum-format \" %3d\\u2502\"))\n","subject":"Add more space for line number","message":"Add more space for line number\n","lang":"Emacs Lisp","license":"mit","repos":"linc01n\/.emacs.d,linc01n\/.emacs.d"} {"commit":"ef02305eb909ebd0878d931f68133e96ec6b0521","old_file":"config\/newemacs\/settings\/helm-settings.el","new_file":"config\/newemacs\/settings\/helm-settings.el","old_contents":"(use-package helm\n :config\n (setq helm-split-window-default-side 'below)\n (helm-mode 1)\n :bind\n ((\"M-x\" . helm-M-x)))\n\n(use-package helm-ls-git\n :config\n (progn\n (use-package evil-leader\n :config\n (define-key helm-map (kbd \"\") 'helm-execute-persistent-action)\n (evil-leader\/set-key\n \"ff\" 'helm-find-files\n \"fr\" 'helm-recentf\n \"bb\" 'helm-buffers-list\n \"fp\" 'helm-browse-project))))\n\n(provide 'helm-settings)\n","new_contents":"(use-package helm\n :config\n (setq helm-split-window-default-side 'below)\n (helm-mode 1)\n :bind\n ((\"M-x\" . helm-M-x)))\n\n(use-package helm-ls-git\n :config\n (progn\n (use-package evil-leader\n :config\n (setq recentf-max-menu-items 1000)\n (define-key helm-map (kbd \"\") 'helm-execute-persistent-action)\n (evil-leader\/set-key\n \"ff\" 'helm-find-files\n \"fr\" 'helm-recentf\n \"bb\" 'helm-buffers-list\n \"fp\" 'helm-browse-project))))\n\n(provide 'helm-settings)\n","subject":"Set the number of recenf files list","message":"Set the number of recenf files list\n","lang":"Emacs Lisp","license":"mit","repos":"rogerzanoni\/dotfiles"} {"commit":"49e121477452c7b10aac474fa56e4ea1eaedb319","old_file":"keyify\/cmd\/keyify\/go-keyify.el","new_file":"keyify\/cmd\/keyify\/go-keyify.el","old_contents":";;; go-keyify.el --- keyify integration for Emacs\n\n;; Copyright 2016 Dominik Honnef. All rights reserved.\n;; Use of this source code is governed by a BSD-style\n;; license that can be found in the LICENSE file.\n\n;; Author: Dominik Honnef\n;; Version: 1.0.0\n;; Keywords: languages go\n;; URL: https:\/\/github.com\/dominikh\/go-keyify\n;;\n;; This file is not part of GNU Emacs.\n\n;;; Code:\n\n(require 'json)\n\n;;;###autoload\n(defun go-keyify ()\n \"Turn an unkeyed struct literal into a keyed one.\n\nCall with point on or in a struct literal.\"\n (interactive)\n (let ((res (json-read-from-string\n (shell-command-to-string (format \"keyify -json %s:#%d\"\n (shell-quote-argument (buffer-file-name))\n (position-bytes (point))))))\n (point (point)))\n (delete-region\n (1+ (cdr (assoc 'start res)))\n (1+ (cdr (assoc 'end res))))\n (insert (cdr (assoc 'replacement res)))\n (indent-region (1+ (cdr (assoc 'start res))) (point))\n (goto-char point)))\n\n(provide 'go-keyify)\n\n;;; go-keyify.el ends here\n","new_contents":";;; go-keyify.el --- keyify integration for Emacs\n\n;; Copyright 2016 Dominik Honnef. All rights reserved.\n;; Use of this source code is governed by a BSD-style\n;; license that can be found in the LICENSE file.\n\n;; Author: Dominik Honnef\n;; Version: 1.0.0\n;; Keywords: languages go\n;; URL: https:\/\/github.com\/dominikh\/go-keyify\n;;\n;; This file is not part of GNU Emacs.\n\n;;; Code:\n\n(require 'json)\n\n;;;###autoload\n(defun go-keyify ()\n \"Turn an unkeyed struct literal into a keyed one.\n\nCall with point on or in a struct literal.\"\n (interactive)\n (let ((res (json-read-from-string\n (shell-command-to-string (format \"keyify -json %s:#%d\"\n (shell-quote-argument (buffer-file-name))\n (1- (position-bytes (point)))))))\n (point (point)))\n (delete-region\n (1+ (cdr (assoc 'start res)))\n (1+ (cdr (assoc 'end res))))\n (insert (cdr (assoc 'replacement res)))\n (indent-region (1+ (cdr (assoc 'start res))) (point))\n (goto-char point)))\n\n(provide 'go-keyify)\n\n;;; go-keyify.el ends here\n","subject":"Fix off-by-one error in Emacs integration","message":"Fix off-by-one error in Emacs integration\n","lang":"Emacs Lisp","license":"mit","repos":"dominikh\/go-tools,dominikh\/go-tools,dominikh\/go-tools,dominikh\/go-tools"} {"commit":"56d43a93be138facdb0db96631415fbfcbdb6bda","old_file":"modules\/lang\/clojure\/config.el","new_file":"modules\/lang\/clojure\/config.el","old_contents":";;; lang\/clojure\/config.el -*- lexical-binding: t; -*-\n\n(def-package! clojure-mode\n :mode \"\\\\.clj$\")\n\n(def-package! cider\n :commands (cider-jack-in cider-mode)\n :config\n (setq nrepl-hide-special-buffers t))\n","new_contents":";;; lang\/clojure\/config.el -*- lexical-binding: t; -*-\n\n(def-package! clojure-mode\n :mode ((\"\\\\.clj$\" . clojure-mode)\n (\"\\\\.cljs$\". clojurescript-mode))\n :commands (clojure-mode clojurescript-mode) ;; this might not be necessary\n :config\n (map! :map clojure-mode-map\n (:localleader\n \"'\" #'cider-jack-in\n \"\\\"\" #'cider-jack-in-clojurescript\n \"r\" #'cider-eval-region)))\n\n(def-package! cider\n :commands (cider-jack-in cider-mode cider-jack-in-clojurescript)\n :config\n (setq nrepl-hide-special-buffers t))\n","subject":"Add cljs mode and localleader keybindings","message":"Add cljs mode and localleader keybindings\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,aminb\/.emacs.d"} {"commit":"305f57f62ce18dc4a980679a5d3cb5ad1e3cf107","old_file":"modules\/tools\/lsp\/packages.el","new_file":"modules\/tools\/lsp\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; tools\/lsp\/packages.el\n\n(if (featurep! +eglot)\n (progn\n (package! eglot :pin \"ac9239bed5e3bfbf057382d1a75cdfa23f2caddd\")\n (package! project\n :recipe (:host github :repo \"emacs-straight\/project\")\n :pin \"da0333a697b18f0a863c1b1523d2fc7991b31174\"))\n (package! lsp-mode :pin \"5f3f9848b2d4afc69049121c60126a6405447106\")\n (package! lsp-ui :pin \"d92cf83d95c9ca177b735500ead88cf68dc2e2db\")\n (when (featurep! :completion ivy)\n (package! lsp-ivy :pin \"dce58b5509271bbedb53ba9d0278dcb563a43977\"))\n (when (featurep! :completion helm)\n (package! helm-lsp :pin \"5018af9c709a783de1b9e101e07c948cceed67f1\")))\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; tools\/lsp\/packages.el\n\n(if (featurep! +eglot)\n (progn\n (package! eglot :pin \"ac9239bed5e3bfbf057382d1a75cdfa23f2caddd\")\n (package! project :pin \"da0333a697b18f0a863c1b1523d2fc7991b31174\"))\n (package! lsp-mode :pin \"5f3f9848b2d4afc69049121c60126a6405447106\")\n (package! lsp-ui :pin \"d92cf83d95c9ca177b735500ead88cf68dc2e2db\")\n (when (featurep! :completion ivy)\n (package! lsp-ivy :pin \"dce58b5509271bbedb53ba9d0278dcb563a43977\"))\n (when (featurep! :completion helm)\n (package! helm-lsp :pin \"5018af9c709a783de1b9e101e07c948cceed67f1\")))\n","subject":"Remove forced project.el recipe hack","message":"Remove forced project.el recipe hack\n\nNow that straight.el fixed the bug upstream there's no reason to force it anymore","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d"} {"commit":"617ebfb8c8a15d6ac771fef1e936bd090fb5ee15","old_file":"emacs\/site-lisp\/init-ocaml.el","new_file":"emacs\/site-lisp\/init-ocaml.el","old_contents":";; OCaml\n;; Use the opam installed utop\n(setq utop-command \"opam config exec -- utop -emacs\")\n(autoload 'utop-minor-mode \"utop\" \"Minor mode for utop\" t)\n(add-hook 'tuareg-mode-hook 'utop-minor-mode)\n(add-hook 'tuareg-mode-hook\n (lambda()\n ;; Enable the representation of some keywords using fonts\n (when (functionp 'prettify-symbols-mode)\n (prettify-symbols-mode))))\n(setq tuareg-match-clause-indent 0)\n(add-hook 'tuareg-mode-hook 'paredit-nonlisp)\n(with-eval-after-load 'tuareg\n (define-key tuareg-mode-map \"{\" 'paredit-open-curly)\n (define-key tuareg-mode-map \"}\" 'paredit-close-curly-and-newline)\n (define-key tuareg-mode-map (kbd \"M-n\") 'tuareg-next-phrase)\n (define-key tuareg-mode-map (kbd \"M-p\") 'tuareg-previous-phrase))\n\n;; ocp-indent\n(require 'ocp-indent)\n\n;; Start merlin on ocaml files\n(require 'merlin)\n(add-hook 'tuareg-mode-hook 'merlin-mode t)\n(add-hook 'caml-mode-hook 'merlin-mode t)\n\n(provide 'init-ocaml)\n","new_contents":";; OCaml\n;; Use the opam installed utop\n(setq utop-command \"opam config exec -- utop -emacs\")\n(autoload 'utop-minor-mode \"utop\" \"Minor mode for utop\" t)\n(add-hook 'tuareg-mode-hook 'utop-minor-mode)\n(add-hook 'tuareg-mode-hook\n (lambda()\n ;; Enable the representation of some keywords using fonts\n (when (functionp 'prettify-symbols-mode)\n (prettify-symbols-mode))))\n(setq tuareg-prettify-symbols-full t)\n(setq tuareg-match-clause-indent 0)\n(add-hook 'tuareg-mode-hook 'paredit-nonlisp)\n(with-eval-after-load 'tuareg\n (define-key tuareg-mode-map \"{\" 'paredit-open-curly)\n (define-key tuareg-mode-map \"}\" 'paredit-close-curly-and-newline)\n (define-key tuareg-mode-map (kbd \"M-n\") 'tuareg-next-phrase)\n (define-key tuareg-mode-map (kbd \"M-p\") 'tuareg-previous-phrase))\n\n;; ocp-indent\n(require 'ocp-indent)\n\n;; Start merlin on ocaml files\n(require 'merlin)\n(add-hook 'tuareg-mode-hook 'merlin-mode t)\n(add-hook 'caml-mode-hook 'merlin-mode t)\n\n(provide 'init-ocaml)\n","subject":"Use full pretty symbol set in tuareg mode","message":"Use full pretty symbol set in tuareg mode\n","lang":"Emacs Lisp","license":"mit","repos":"hongchangwu\/dotfiles,hongchangwu\/dotfiles"} {"commit":"9cbab011fe993b997b2d0008f376a548e6ce511f","old_file":".config\/emacs\/modes.el","new_file":".config\/emacs\/modes.el","old_contents":"(column-number-mode t)\n(display-time-mode 1)\n(electric-pair-mode t)\n(auto-fill-mode -1)\n(global-linum-mode 1)\n(setq-default indent-tabs-mode nil)\n(popwin-mode 1)\n(delete-selection-mode 1)\n(drag-stuff-global-mode 1)\n(global-auto-complete-mode t)\n(whole-line-or-region-mode t)\n","new_contents":"(column-number-mode t)\n(display-time-mode 1)\n(electric-pair-mode t)\n(auto-fill-mode -1)\n(global-linum-mode 1)\n(setq-default indent-tabs-mode nil)\n(popwin-mode 1)\n(delete-selection-mode 1)\n(drag-stuff-global-mode 1)\n(global-auto-complete-mode t)\n(whole-line-or-region-global-mode t)\n","subject":"Update whole line or region","message":"Update whole line or region\n","lang":"Emacs Lisp","license":"mit","repos":"spapanik\/configuration,spapanik\/configuration"} {"commit":"69945ba85f9f0b9caf955ee316174e4aca7c9039","old_file":"init-osx-keys.el","new_file":"init-osx-keys.el","old_contents":"(when *is-a-mac*\n (setq mac-command-modifier 'meta)\n (setq mac-option-modifier 'none)\n (setq default-input-method \"MacOSX\")\n ;; Make mouse wheel \/ trackpad scrolling less jerky\n (setq mouse-wheel-scroll-amount '(0.001))\n (when *is-cocoa-emacs*\n ;; Woohoo!!\n (global-set-key (kbd \"M-`\") 'ns-next-frame)\n (global-set-key (kbd \"M-h\") 'ns-do-hide-emacs)\n (eval-after-load 'nxml-mode\n '(define-key nxml-mode-map (kbd \"M-h\") nil))\n (global-set-key (kbd \"M-ˍ\") 'ns-do-hide-others) ;; what describe-key reports for cmd-option-h\n (global-set-key (kbd \"M-c\") 'ns-copy-including-secondary)\n (global-set-key (kbd \"M-v\") 'ns-paste-secondary)))\n\n\n(provide 'init-osx-keys)\n","new_contents":"(when *is-a-mac*\n (setq mac-command-modifier 'meta)\n (setq mac-option-modifier 'none)\n (setq default-input-method \"MacOSX\")\n ;; Make mouse wheel \/ trackpad scrolling less jerky\n (setq mouse-wheel-scroll-amount '(0.001))\n (when *is-cocoa-emacs*\n ;; Woohoo!!\n (global-set-key (kbd \"M-`\") 'ns-next-frame)\n (global-set-key (kbd \"M-h\") 'ns-do-hide-emacs)\n (eval-after-load 'nxml-mode\n '(define-key nxml-mode-map (kbd \"M-h\") nil))\n (global-set-key (kbd \"M-ˍ\") 'ns-do-hide-others) ;; what describe-key reports for cmd-option-h\n ))\n\n\n(provide 'init-osx-keys)\n","subject":"Remove M-c and M-v bindings under OS X.","message":"Remove M-c and M-v bindings under OS X.\n\nM-v clashes with the default key for scrolling up.\n\nIt's arguably better to use the standard yank\/kill bindings consistently\nwithin Emacs.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"21ac9fef11096a4a3570b89d48f825bf8c75f7dd","old_file":".emacs.d\/lisp\/user\/machine-local.el","new_file":".emacs.d\/lisp\/user\/machine-local.el","old_contents":"(defun kotct\/dot-config-directory ()\n \"Returns the directory name for where our machine-local Dot configuration directory should be.\"\n (concat (file-name-directory (or (getenv \"XDG_CONFIG_HOME\") \"~\/.config\")) \"dot\/\"))\n\n(defun kotct\/dot-emacs-config-directory ()\n \"Returns the directory name for where our machine-local Emacs subconfiguration directory should be.\"\n (let ((dot-config-dir (kotct\/dot-config-directory))\n (emacs-subdir \"emacs\/\"))\n (concat dot-config-dir emacs-subdir)))\n\n(let (emacs-config-directory (kotct\/dot-emacs-config-directory))\n (load (concat emacs-config-directory \"init\") 'noerror nil nil 'must-suffix))\n\n(provide 'machine-local)\n","new_contents":"(defun kotct\/dot-config-directory ()\n \"Returns the directory name for where our machine-local Dot configuration directory should be.\"\n (concat (or (getenv \"XDG_CONFIG_HOME\") \"~\/.config\/\") \"dot\/\"))\n\n(defun kotct\/dot-emacs-config-directory ()\n \"Returns the directory name for where our machine-local Emacs subconfiguration directory should be.\"\n (let ((dot-config-dir (kotct\/dot-config-directory))\n (emacs-subdir \"emacs\/\"))\n (concat dot-config-dir emacs-subdir)))\n\n(let ((emacs-config-directory (kotct\/dot-emacs-config-directory)))\n (load (concat (file-name-directory emacs-config-directory) \"init\") 'noerror nil nil 'must-suffix))\n\n(provide 'machine-local)\n","subject":"Refactor defuns to fix some problems","message":"Refactor defuns to fix some problems\n","lang":"Emacs Lisp","license":"mit","repos":"kotct\/dot,kotct\/dot"} {"commit":"8d573ee370fba8b2a13ac18da4454e4b5985c21b","old_file":"layers\/mfa-ruby\/packages.el","new_file":"layers\/mfa-ruby\/packages.el","old_contents":"(defconst mfa-ruby-packages '(rubocop ruby-mode))\n\n(defun mfa-ruby\/post-init-rubocop ()\n (spacemacs|hide-lighter rubocop-mode))\n\n(defun mfa-ruby\/post-init-ruby-mode ()\n ;; Ruby mode customizations\n (with-eval-after-load 'ruby-mode\n (add-hook 'ruby-mode-hook (lambda ()\n (setq evil-shift-width ruby-indent-level))))\n\n ;; Additional file mode associations.\n (add-to-list 'auto-mode-alist '(\"\\\\.rake\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"\\\\.gemspec\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"\\\\.ru\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Capfile\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Gemfile\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Rakefile\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Vagrantfile\\\\'\" . ruby-mode))\n\n ;; Additional interpreter associations.\n (add-to-list 'interpreter-mode-alist '(\"rake\" . ruby-mode)))\n","new_contents":"(defconst mfa-ruby-packages '(rubocop ruby-mode))\n\n(defun mfa-ruby\/post-init-rubocop ()\n (spacemacs|hide-lighter rubocop-mode))\n\n(defun mfa-ruby\/post-init-ruby-mode ()\n ;; Ruby mode customizations\n (with-eval-after-load 'ruby-mode\n (add-hook 'ruby-mode-hook (lambda ()\n (setq evil-shift-width ruby-indent-level))))\n\n ;; Additional file mode associations.\n (add-to-list 'auto-mode-alist '(\"\\\\.rake\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"\\\\.gemspec\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"\\\\.ru\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Capfile\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Gemfile\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Rakefile\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Vagrantfile\\\\'\" . ruby-mode))\n\n ;; Additional interpreter associations.\n (add-to-list 'interpreter-mode-alist '(\"rake\" . ruby-mode))\n\n ;; It is unnecessary for rbenv to show the Ruby version in the modeline.\n (setq rbenv-show-active-ruby-in-modeline nil))\n","subject":"Remove the Ruby version from the modeline","message":"Remove the Ruby version from the modeline\n\nThe face settings rbenv uses to display the Ruby version in the modeline are\njust too jarringly different from the rest of the modeline. It is also\nunnecessary information, I _know_ which version I set in `.ruby-version`, there\nis no use in constantly reminding me of it.\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"d3f24424df7064a1a98ec2c77ee88aa6cd84dbe8","old_file":"layers\/IRC\/erc-init.el","new_file":"layers\/IRC\/erc-init.el","old_contents":"(use-package erc\n :init\n (setq erc-autojoin-channels-alist\n '((\"freenode.net\"\n ;; \"##aws\"\n ;; \"##C\"\n ;; \"##C++-general\"\n ;; \"#clang\"\n \"#clnoobs\"\n \"#clojure\"\n \"#clojure-beginners\"\n ;; \"#clojure-emacs\"\n ;; \"#clojurescript\"\n ;; \"#cmake\"\n ;; \"#cplusplus.com\"\n \"#emacs\"\n \"#emacs-beginners\"\n \"#lisp\"\n \"#osv\"\n ;; \"#llvm\"\n \"#racket\"\n \"#scheme\"\n ;; \"#sword\"\n \"#ubuntu\"))))\n(provide 'erc-init)\n","new_contents":"(use-package erc\n :init\n (setq erc-autojoin-channels-alist\n '((\"freenode.net\"\n ;; \"##aws\"\n ;; \"##C\"\n ;; \"##C++-general\"\n ;; \"#clang\"\n \"#clnoobs\"\n \"#clojure\"\n \"#clojure-beginners\"\n ;; \"#clojure-emacs\"\n ;; \"#clojurescript\"\n ;; \"#cmake\"\n ;; \"#cplusplus.com\"\n \"#emacs\"\n \"#emacs-beginners\"\n ;; \"#lisp\"\n ;; \"#osv\"\n ;; \"#llvm\"\n \"#racket\"\n ;; \"#scheme\"\n \"#sword\"\n ;; \"#ubuntu\"\n ))))\n(provide 'erc-init)\n","subject":"Reduce the auto-connect channels for ERC startup","message":"Reduce the auto-connect channels for ERC startup\n","lang":"Emacs Lisp","license":"mit","repos":"timotheosh\/dotemacs"} {"commit":"9ce6730b72b3efe58b131281f0f4befbd3928e22","old_file":"emacs\/site-lisp\/init-rust.el","new_file":"emacs\/site-lisp\/init-rust.el","old_contents":"(require 'company)\n(require 'racer)\n(require 'rust-mode)\n(require 'eldoc)\n(require 'flycheck)\n(require 'flycheck-rust)\n\n(add-to-list 'auto-mode-alist '(\"\\\\.rs\\\\'\" . rust-mode))\n(add-hook 'rust-mode-hook #'company-mode)\n(add-hook 'rust-mode-hook #'racer-mode)\n(add-hook 'racer-mode-hook #'eldoc-mode)\n(add-hook 'flycheck-mode-hook #'flycheck-rust-setup)\n(define-key rust-mode-map (kbd \"TAB\") #'company-indent-or-complete-common)\n(setq company-tooltip-align-annotations t)\n\n(provide 'init-rust)\n","new_contents":"(require 'cargo)\n(require 'company)\n(require 'racer)\n(require 'rust-mode)\n(require 'eldoc)\n(require 'flycheck)\n(require 'flycheck-rust)\n\n(add-to-list 'auto-mode-alist '(\"\\\\.rs\\\\'\" . rust-mode))\n(add-hook 'rust-mode-hook #'company-mode)\n(add-hook 'rust-mode-hook #'racer-mode)\n(add-hook 'racer-mode-hook #'eldoc-mode)\n(add-hook 'rust-mode-hook 'cargo-minor-mode)\n(with-eval-after-load 'rust-mode\n (add-hook 'flycheck-mode-hook #'flycheck-rust-setup))\n(define-key rust-mode-map (kbd \"TAB\") #'company-indent-or-complete-common)\n(setq company-tooltip-align-annotations t)\n\n(provide 'init-rust)\n","subject":"Add cargo mode for rust","message":"Add cargo mode for rust\n","lang":"Emacs Lisp","license":"mit","repos":"hongchangwu\/dotfiles,hongchangwu\/dotfiles"} {"commit":"2ba7afe6bd887afc29095f96a2ab3e1aacd97bb6","old_file":"modules\/my-ansible.el","new_file":"modules\/my-ansible.el","old_contents":";;; my-ansible.el --- Ansible mode settings -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(require 'my-completion)\n\n(use-package ansible\n :init\n ;; Auto-enable for yaml files\n (add-hook 'yaml-mode-hook '(lambda () (ansible 1)))\n ;; Enable company backend for completion\n (add-to-list 'company-backends 'company-ansible))\n\n(provide 'my-ansible)\n\n;;; my-ansible.el ends here\n\n","new_contents":";;; my-ansible.el --- Ansible mode settings -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(require 'my-completion)\n\n(use-package ansible\n :init\n ;; Auto-enable for yaml files\n (add-hook 'yaml-mode-hook '(lambda () (ansible 1)))\n :config\n ;; Enable company backend for completion\n (add-hook 'ansible-hook 'company-mode)\n (add-to-list 'company-backends 'company-ansible))\n\n(provide 'my-ansible)\n\n;;; my-ansible.el ends here\n\n","subject":"Add completion hook for ansible mode.","message":"Add completion hook for ansible mode.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"timanin\/emacs.d"} {"commit":"c9b9c2552ef2cf131e4929c1328004ed8431650d","old_file":"config\/config-ui.el","new_file":"config\/config-ui.el","old_contents":";; important for golden-ratio to better work\n(setq window-combination-resize t)\n;; edit area full screen\n(tool-bar-mode -1)\n(menu-bar-mode -1)\n(scroll-bar-mode -1)\n;; fringes\n(set-fringe-mode nil) ; default\n(setq-default fringe-indicator-alist\n '((truncation . nil) (continuation . nil)))\n;; Show column number in mode line\n(setq column-number-mode t)\n;; line number\n(setq linum-format \"%4d\")\n;; highlight current line\n(global-hl-line-mode t)\n;; no blink\n;; (blink-cursor-mode (- (*) (*) (*)))\n;; tool tips in echo area\n(tooltip-mode -1)\n(setq tooltip-use-echo-area t)\n;; When emacs asks for \"yes\" or \"no\", let \"y\" or \"n\" sufficide\n(fset 'yes-or-no-p 'y-or-n-p)\n;; font\n;; (set-default-font \"DejaVu Sans Mono-10\")\n(set-default-font \"Source Code Pro-10\")\n;; setup right and left margins\n;; (add-hook 'window-configuration-change-hook\n;; (lambda ()\n;; (set-window-margins (car (get-buffer-window-list (current-buffer) nil t)) 0 0)))\n","new_contents":";; important for golden-ratio to better work\n(setq window-combination-resize t)\n;; edit area full screen\n(tool-bar-mode -1)\n(menu-bar-mode -1)\n(scroll-bar-mode -1)\n;; fringes\n(set-fringe-mode nil) ; default\n(setq-default fringe-indicator-alist\n '((truncation . nil) (continuation . nil)))\n;; Show column number in mode line\n(setq column-number-mode t)\n;; line number\n(setq linum-format \"%4d\")\n;; highlight current line\n(global-hl-line-mode t)\n;; no blink\n;; (blink-cursor-mode (- (*) (*) (*)))\n;; tool tips in echo area\n(tooltip-mode -1)\n(setq tooltip-use-echo-area t)\n;; When emacs asks for \"yes\" or \"no\", let \"y\" or \"n\" sufficide\n(fset 'yes-or-no-p 'y-or-n-p)\n;; font\n;; (set-default-font \"DejaVu Sans Mono-10\")\n(if (eq system-type 'windows-nt)\n (set-default-font \"Source Code Pro-9\")\n (set-default-font \"Source Code Pro-10\"))\n;; setup right and left margins\n;; (add-hook 'window-configuration-change-hook\n;; (lambda ()\n;; (set-window-margins (car (get-buffer-window-list (current-buffer) nil t)) 0 0)))\n","subject":"Change font size depending in the platform","message":"Change font size depending in the platform\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"67861b3d1f4ee30f01e26ef5455afe5e56a41fd6","old_file":"configs\/emacs.d\/custom\/custom-ui.el","new_file":"configs\/emacs.d\/custom\/custom-ui.el","old_contents":";; hide menu bar\n(menu-bar-mode 0)\n\n;; line number\n(global-linum-mode 1)\n(setq linum-format \"%d \")\n\n;; spaces\n(require 'whitespace)\n(global-whitespace-mode)\n(setq whitespace-style '(face trailing tabs lines-tail))\n(setq whitespace-line-column 80)\n(set-face-background 'whitespace-trailing \"red\")\n(set-face-background 'whitespace-tab \"color-236\")\n(set-face-foreground 'whitespace-line nil)\n(set-face-background 'whitespace-line \"color-238\")\n\n;; (line, column)\n(setq line-number-mode t)\n(setq column-number-mode t)\n\n;; fill column length\n(setq-default fill-column 80)\n\n(provide 'custom-ui)\n","new_contents":";; hide menu bar\n(menu-bar-mode 0)\n\n;; line number\n(global-linum-mode 1)\n(setq linum-format \"%d \")\n\n;; spaces\n(require 'whitespace)\n(global-whitespace-mode)\n(setq whitespace-style '(face trailing tabs lines-tail))\n(setq whitespace-line-column 80)\n(set-face-background 'whitespace-trailing \"red\")\n(set-face-background 'whitespace-tab \"gray20\")\n(set-face-foreground 'whitespace-line nil)\n(set-face-background 'whitespace-line \"gray20\")\n\n;; (line, column)\n(setq line-number-mode t)\n(setq column-number-mode t)\n\n;; fill column length\n(setq-default fill-column 80)\n\n(provide 'custom-ui)\n","subject":"Change background for tab and column>80","message":"Change background for tab and column>80\n\nColors are changed because of True Color support.\n","lang":"Emacs Lisp","license":"mit","repos":"noraesae\/dotfiles,noraesae\/dotfiles,noraesae\/dotfiles"} {"commit":"a90025e757e62a68022a9f4e27f05683c779d19f","old_file":"layers\/mfa-dired\/packages.el","new_file":"layers\/mfa-dired\/packages.el","old_contents":"(defconst mfa-dired-packages '(all-the-icons all-the-icons-dired dired-narrow dired))\n\n(defun mfa-dired\/init-all-the-icons ()\n (use-package all-the-icons\n :defer t))\n\n(defun mfa-dired\/init-all-the-icons-dired ()\n (use-package all-the-icons-dired\n :defer t\n :diminish\n :init\n (with-eval-after-load 'dired\n (add-hook 'dired-mode-hook #'all-the-icons-dired-mode))))\n\n(defun mfa-dired\/init-dired-narrow ()\n (use-package dired-narrow\n :defer t\n :init\n (spacemacs\/set-leader-keys-for-major-mode 'dired-mode \"\/\" #'dired-narrow)))\n\n(defun mfa-dired\/post-init-dired ()\n (spacemacs|use-package-add-hook dired\n :post-config\n (progn\n (add-hook 'dired-mode-hook #'dired-dwim-target-mode)\n (spacemacs\/set-leader-keys-for-major-mode 'dired-mode\n \"ot\" #'dired-dwim-target-mode)\n (evil-define-key 'evilified dired-mode-map\n (kbd \"RET\") #'dired-find-file-by-prefix)\n (evil-define-key 'evilified dired-mode-map\n \"-\" #'dired-up-directory))))\n","new_contents":"(defconst mfa-dired-packages '(all-the-icons all-the-icons-dired dired-narrow dired))\n\n(defun mfa-dired\/init-all-the-icons ()\n (use-package all-the-icons\n :defer t\n :init\n (setq inhibit-compacting-font-caches t)))\n\n(defun mfa-dired\/init-all-the-icons-dired ()\n (use-package all-the-icons-dired\n :defer t\n :diminish\n :init\n (with-eval-after-load 'dired\n (add-hook 'dired-mode-hook #'all-the-icons-dired-mode))))\n\n(defun mfa-dired\/init-dired-narrow ()\n (use-package dired-narrow\n :defer t\n :init\n (spacemacs\/set-leader-keys-for-major-mode 'dired-mode \"\/\" #'dired-narrow)))\n\n(defun mfa-dired\/post-init-dired ()\n (spacemacs|use-package-add-hook dired\n :post-config\n (progn\n (add-hook 'dired-mode-hook #'dired-dwim-target-mode)\n (spacemacs\/set-leader-keys-for-major-mode 'dired-mode\n \"ot\" #'dired-dwim-target-mode)\n (evil-define-key 'evilified dired-mode-map\n (kbd \"RET\") #'dired-find-file-by-prefix)\n (evil-define-key 'evilified dired-mode-map\n \"-\" #'dired-up-directory))))\n","subject":"Apply performance tuning suggested by the all-the-icons README","message":"Apply performance tuning suggested by the all-the-icons README\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"e6db927dbc3bf9017c169b697078baa4fc405269","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((sh-mode\n (sh-basic-offset . 4)))\n","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((sh-mode\n ((sh-basic-offset . 4))))\n","subject":"Fix incorrect type in dir locals file","message":"Fix incorrect type in dir locals file\n\nThe argument should be a list.\n\nSigned-off-by: Nicolas Bock \n","lang":"Emacs Lisp","license":"apache-2.0","repos":"aspiers\/automation,aspiers\/automation,gosipyan\/automation,SUSE-Cloud\/automation,gosipyan\/automation,aspiers\/automation,SUSE-Cloud\/automation,SUSE-Cloud\/automation,SUSE-Cloud\/automation,aspiers\/automation,gosipyan\/automation,gosipyan\/automation"} {"commit":"620b297dd1b4bb1f9216bdd657912f34b8a62259","old_file":"init-package\/init-flycheck-color-mode-line.el","new_file":"init-package\/init-flycheck-color-mode-line.el","old_contents":"(require 'flycheck-color-mode-line)\n\n(eval-after-load \"flycheck\"\n '(add-hook 'flycheck-mode-hook 'flycheck-color-mode-line-mode))\n","new_contents":"(require 'flycheck-color-mode-line)\n\n(setq flycheck-check-syntax-automatically '(save mode-enabled))\n\n(eval-after-load \"flycheck\"\n '(add-hook 'flycheck-mode-hook 'flycheck-color-mode-line-mode))\n","subject":"Remove flyckeck check on idle.","message":"Remove flyckeck check on idle.\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"9e6b8c0a0667e10a2a25049d95f62e4cc96514df","old_file":"lisp\/init-clojure-cider.el","new_file":"lisp\/init-clojure-cider.el","old_contents":"(require 'init-clojure)\n(require-package 'emacs '(24))\n\n(require-package 'cider)\n(require-package 'ac-cider)\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; nrepl with Clojure\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(setq nrepl-popup-stacktraces nil)\n\n(after-load 'cider\n (add-hook 'cider-repl-mode-hook 'ac-cider-setup)\n (add-hook 'cider-mode-hook 'ac-cider-setup)\n (after-load 'auto-complete\n (add-to-list 'ac-modes 'cider-repl-mode))\n\n (add-hook 'cider-repl-mode-hook 'set-auto-complete-as-completion-at-point-function)\n (add-hook 'cider-mode-hook 'set-auto-complete-as-completion-at-point-function)\n (add-hook 'cider-mode-hook 'cider-turn-on-eldoc-mode)\n (add-hook 'cider-repl-mode-hook 'subword-mode)\n (add-hook 'cider-repl-mode-hook 'paredit-mode)\n (define-key cider-mode-map (kbd \"C-c C-d\") 'ac-nrepl-popup-doc)\n\n ;; nrepl isn't based on comint\n (add-hook 'cider-repl-mode-hook\n (lambda () (setq show-trailing-whitespace nil))))\n\n\n(provide 'init-clojure-cider)\n","new_contents":"(require 'init-clojure)\n(require-package 'emacs '(24))\n\n(require-package 'cider)\n(require-package 'ac-cider)\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; nrepl with Clojure\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(setq nrepl-popup-stacktraces nil)\n\n(after-load 'cider\n (add-hook 'cider-repl-mode-hook 'ac-cider-setup)\n (add-hook 'cider-mode-hook 'ac-cider-setup)\n (after-load 'auto-complete\n (add-to-list 'ac-modes 'cider-repl-mode))\n\n (add-hook 'cider-repl-mode-hook 'set-auto-complete-as-completion-at-point-function)\n (add-hook 'cider-mode-hook 'set-auto-complete-as-completion-at-point-function)\n (add-hook 'cider-mode-hook 'cider-turn-on-eldoc-mode)\n (add-hook 'cider-repl-mode-hook 'subword-mode)\n (add-hook 'cider-repl-mode-hook 'paredit-mode)\n (define-key cider-mode-map (kbd \"C-c C-d\") 'ac-cider-popup-doc)\n\n ;; nrepl isn't based on comint\n (add-hook 'cider-repl-mode-hook\n (lambda () (setq show-trailing-whitespace nil))))\n\n\n(provide 'init-clojure-cider)\n","subject":"Fix trailing reference to ac-nrepl","message":"Fix trailing reference to ac-nrepl\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"LKI\/emacs.d,shafayetkhan\/emacs.d,dhanunjaya\/emacs.d,modkzs\/emcs.d,kongfy\/emacs.d,benkha\/emacs.d,mpwang\/emacs.d,farzadbekran\/emacs.d,46do14\/emacs.d,jachinpy\/emacs.d,Werewolflsp\/emacs.d,zenith-john\/emacs.d,DarkThrone\/emacs.d,blueseason\/emacs.d,ilove0518\/emacs.d,jthetzel\/emacs.d,whizzzkid\/emacs.d,svenyurgensson\/emacs.d,lujianmei\/emacs.d,ernest-dzf\/emacs.d,exclamaforte\/emacs.d,farzadbekran\/emacs.d,mmqmzk\/emacs.d,wenpincui\/emacs.d,jkaessens\/emacs.d,cjqw\/emacs.d,hkcqr\/emacs.d,roxolan\/emacs.d,atreeyang\/emacs.d,me020523\/emacs.d,Togal\/emacs.d,qianwan\/emacs.d,zhuoyikang\/emacs.d,farzadbekran\/emacs.d,hophacker\/emacs.d,scorpionis\/emacs.d,purcell\/emacs.d,farzadbekran\/emacs.d,emuio\/emacs.d,jhpx\/emacs.d,ruiyang\/emacs.d,kindoblue\/emacs.d,jachinpy\/emacs.d,zhaotai\/.emacs.d,wegatron\/emacs.d,cyjia\/emacs.d,blueabysm\/emacs.d,dongdonghu\/.emacs.d,gsmlg\/emacs.d,baohaojun\/emacs.d,ruiyang\/emacs.d,arthurl\/emacs.d,fengxl\/emacs.d,Jadecity\/PurcellEmacs.d,lust4life\/emacs.d,haodaivshen\/emacs.d,LittleLmp\/emacs.d,krzysz00\/emacs.d,pairyo\/emacs.d,farzadbekran\/emacs.d,Enzo-Liu\/emacs.d,dcorking\/emacs.d,caoyuanqi\/emacs.d,boblannon\/emacs.d,qinshulei\/emacs.d,lromang\/emacs.d,alant\/emacs.d,sgarciac\/emacs.d,danfengcao\/emacs.d,carlosliu\/emacs.d,Guoozz\/emacs.d,Shanicky\/emacs.d,braveoyster\/emacs.d,renatoriccio\/emacs.d,bibaijin\/emacs.d"} {"commit":"7b7b3c7cfddcfc99d0f5bfa8915349c570077280","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((nil . ((bug-reference-url-format . \"https:\/\/bugs.gnu.org\/%s\")\n (indent-tabs-mode . nil)\n (fill-column . 80)))\n (c++-mode . ((page-delimiter . \"^\/\/\/\")\n (mode . subword)))\n (c-mode . ((page-delimiter . \"^\/\/\/\")\n (mode . subword)))\n (\"elisp\/proto\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path \"..\/..\/\" \"..\/..\/bazel-bin\/\" \"..\/..\/bazel-bin\/external\/com_google_protobuf\/\")))))\n (\"elisp\/runfiles\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path \"..\/..\/\")))))\n (\"examples\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path \"..\/\" \".\/\" \"ext\/\" \"..\/bazel-bin\/\" \"..\/bazel-bin\/external\/com_google_protobuf\/\")))))\n (\"tests\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path \"..\/\")))))\n (\"tests\/pkg\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path \"..\/..\/\"))))))\n","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((nil . ((compile-command . \".\/build.py\")\n (bug-reference-url-format . \"https:\/\/bugs.gnu.org\/%s\")\n (indent-tabs-mode . nil)\n (fill-column . 80)))\n (c++-mode . ((page-delimiter . \"^\/\/\/\")\n (mode . subword)))\n (c-mode . ((page-delimiter . \"^\/\/\/\")\n (mode . subword)))\n (\"elisp\/proto\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path \"..\/..\/\" \"..\/..\/bazel-bin\/\" \"..\/..\/bazel-bin\/external\/com_google_protobuf\/\")))))\n (\"elisp\/runfiles\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path \"..\/..\/\")))))\n (\"examples\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path \"..\/\" \".\/\" \"ext\/\" \"..\/bazel-bin\/\" \"..\/bazel-bin\/external\/com_google_protobuf\/\")))))\n (\"tests\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path \"..\/\")))))\n (\"tests\/pkg\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path \"..\/..\/\"))))))\n","subject":"Add a default value for ‘compile-command’","message":"Add a default value for ‘compile-command’\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp"} {"commit":"b42e5c5dd23b7e46f102c945e3d1aaa149dc49cf","old_file":"lisp\/projector.el","new_file":"lisp\/projector.el","old_contents":";;; projector.el -- Functions for projecting.\n(eval-when-compile\n (require 'highline))\n\n(defvar pjones:projector-font-big\n \"-unknown-DejaVu Sans Mono-normal-normal-normal-*-22-*-*-*-m-0-iso10646-1\"\n \"A large font to use for projectors.\")\n\n(defun pjones:projector-font ()\n \"Switch the current frame to a big font.\"\n (interactive)\n (set-frame-font pjones:projector-font-big))\n\n(defun pjones:projector-highline ()\n \"Toggle highline mode from outside Emacs.\"\n (with-current-buffer (window-buffer (selected-window))\n (call-interactively 'highline-mode)))\n\n(defun pjones:projector-next-line ()\n \"Move to the next line from outside Emacs.\"\n (with-current-buffer (window-buffer (selected-window))\n (call-interactively 'next-line)\n (if highline-mode (highline-highlight-current-line))))\n\n(defun pjones:projector-prev-line ()\n \"Move to the previous line from outside Emacs.\"\n (with-current-buffer (window-buffer (selected-window))\n (call-interactively 'previous-line)\n (if highline-mode (highline-highlight-current-line))))\n","new_contents":";;; projector.el -- Functions for projecting.\n(eval-when-compile\n (require 'highline))\n\n(defvar pjones:projector-font-big\n \"-unknown-DejaVu Sans Mono-normal-normal-normal-*-22-*-*-*-m-0-iso10646-1\"\n \"A large font to use for projectors.\")\n\n(defun pjones:projector-font ()\n \"Switch the current frame to a big font.\"\n (interactive)\n (set-frame-font pjones:projector-font-big))\n\n(defun pjones:projector-highline ()\n \"Toggle highline mode from outside Emacs.\"\n (with-current-buffer (window-buffer (selected-window))\n (call-interactively 'highline-mode)))\n\n(defun pjones:projector-next-line ()\n \"Move to the next line from outside Emacs.\"\n (with-current-buffer (window-buffer (selected-window))\n (call-interactively 'next-line)\n (if highline-mode (highline-highlight-current-line))))\n\n(defun pjones:projector-prev-line ()\n \"Move to the previous line from outside Emacs.\"\n (with-current-buffer (window-buffer (selected-window))\n (call-interactively 'previous-line)\n (if highline-mode (highline-highlight-current-line))))\n\n(defun pjones:projector-recenter ()\n \"Places the current line at the top of the window from outside\nEmacs.\"\n (with-current-buffer (window-buffer (selected-window))\n (recenter 0)\n (if highline-mode (highline-highlight-current-line))))\n","subject":"Add the ability to recenter the display from a remote","message":"Add the ability to recenter the display from a remote\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"424128147ff03a3460508dfd2b93b5c1f2f26a06","old_file":"emacs\/packages-init\/flycheck.el","new_file":"emacs\/packages-init\/flycheck.el","old_contents":";; * Flycheck\n\n(my\/ensure-package-installed 'flycheck)\n\n(add-hook 'prog-mode-hook 'flycheck-mode)\n\n(setq flycheck-indication-mode nil)\n(setq flycheck-display-errors-delay 100) ; workaround to disable it\n\n(let ((map my\/global-map))\n (define-key map [f10] 'flycheck-mode))\n","new_contents":";; * Flycheck\n\n(my\/ensure-package-installed 'flycheck)\n\n(add-hook 'prog-mode-hook 'flycheck-mode)\n\n(setq-default flycheck-emacs-lisp-load-path 'inherit)\n(setq-default flycheck-disabled-checkers '(emacs-lisp-checkdoc))\n\n(setq flycheck-indication-mode nil)\n(setq flycheck-display-errors-delay 100) ; workaround to disable it\n\n(let ((map my\/global-map))\n (define-key map [f10] 'flycheck-mode))\n","subject":"Reduce error check in emacs-lisp","message":"[Emacs] Reduce error check in emacs-lisp\n","lang":"Emacs Lisp","license":"cc0-1.0","repos":"lepieru\/myconfig,lepieru\/myconfig,lepieru\/myconfig"} {"commit":"a4cc9de25ed6f6d4edf5fd07a7ed6687435e3a7e","old_file":"ui.el","new_file":"ui.el","old_contents":";; don't show the startup help screen\n(setq inhibit-startup-screen t)\n\n;; mode line settings\n(column-number-mode t)\n(line-number-mode t)\n(size-indication-mode t)\n\n;; remove clutter from the UI\n(tool-bar-mode -1)\n(tooltip-mode -1)\n(scroll-bar-mode -1)\n(set-fringe-style -1)\n\n;; blinking cursor\n(blink-cursor-mode t)\n\n;; disable alarm bell beep\n(setq visible-bell t)\n\n;; my custom theme of choice\n(load-theme 'tomorrow-night t)\n\n;; available custom themes\n;;\n;; solarized:\n;; (load-theme 'solarized t)\n;; (load-theme 'solarized-dark t)\n;;\n;; tomorrow:\n;; (load-theme 'tomorrow t)\n;; (load-theme 'tomorrow-night t)\n;; (load-theme 'tomorrow-night-bright t)\n;; (load-theme 'tomorrow-night-blue t)\n;; (load-theme 'tomorrow-night-eighties t)\n;;\n;; zenburn:\n;; (load-theme 'zenburn t)\n","new_contents":";; don't show the startup help screen\n(setq inhibit-startup-screen t)\n\n;; mode line settings\n(column-number-mode t)\n(line-number-mode t)\n(size-indication-mode t)\n\n;; remove clutter from the UI\n(tool-bar-mode -1)\n(tooltip-mode -1)\n(scroll-bar-mode -1)\n(set-fringe-style -1)\n\n;; blinking cursor\n(blink-cursor-mode t)\n\n;; disable alarm bell beep\n(setq visible-bell t)\n\n;; use Monaco font in Mac OS X\n(when (eq system-type 'darwin)\n (set-default-font \"Monaco\"))\n\n;; my custom theme of choice\n(load-theme 'tomorrow-night t)\n\n;; available custom themes\n;;\n;; solarized:\n;; (load-theme 'solarized t)\n;; (load-theme 'solarized-dark t)\n;;\n;; tomorrow:\n;; (load-theme 'tomorrow t)\n;; (load-theme 'tomorrow-night t)\n;; (load-theme 'tomorrow-night-bright t)\n;; (load-theme 'tomorrow-night-blue t)\n;; (load-theme 'tomorrow-night-eighties t)\n;;\n;; zenburn:\n;; (load-theme 'zenburn t)\n","subject":"Set Monaco as the font in OS X.","message":"Set Monaco as the font in OS X.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"danielfm\/dotfiles-emacs"} {"commit":"dad9707ec461cf36050c88148e59cb9c6b494b62","old_file":".emacs.d\/lisp\/visual\/theme.el","new_file":".emacs.d\/lisp\/visual\/theme.el","old_contents":"(defvar current-theme\n nil\n \"The currently enabled theme.\")\n\n(defun switch-to-theme (theme)\n \"Enable the theme THEME. Disable the current theme.\"\n (if current-theme (disable-theme current-theme))\n (if (member theme custom-known-themes)\n (enable-theme theme)\n (load-theme theme 'no-confirm))\n (setf current-theme theme))\n\n(switch-to-theme 'solarized-dark)\n\n(provide 'theme)\n","new_contents":"(defvar current-theme\n nil\n \"The currently enabled theme.\")\n\n(defun switch-to-theme (theme)\n \"Enable the theme THEME. Disable the current theme.\"\n (if current-theme (disable-theme current-theme))\n (if (member theme custom-known-themes)\n (enable-theme theme)\n (load-theme theme 'no-confirm))\n (setf current-theme theme)\n (cond ((or (string= current-theme 'solarized-dark)\n\t (string= current-theme 'solarized-light))\n\t (progn\n\t (setf x-underline-at-descent-line t)))\n\t(t nil)))\n\n(switch-to-theme 'solarized-dark)\n\n(provide 'theme)\n","subject":"Make x-underline at descender line, not base line","message":"Make x-underline at descender line, not base line\n","lang":"Emacs Lisp","license":"mit","repos":"kotct\/dot,kotct\/dot"} {"commit":"33bc52b4210b76fb157afc1e2179ae079d8e8c74","old_file":"setup-files\/setup-git-link.el","new_file":"setup-files\/setup-git-link.el","old_contents":";; Time-stamp: <2016-05-19 22:24:54 kmodi>\n\n;; Git Link\n;; https:\/\/github.com\/sshaw\/git-link\n\n(use-package git-link\n :load-path \"elisp\/git-link\"\n :bind (:map region-bindings-mode-map\n (\"g\" . modi\/git-link-force-hash))\n :init\n (progn\n (bind-to-modi-map \"g\" #'git-link-commit))\n :config\n (progn\n (setq git-link-commit-fallback-use-latest-commit t)\n\n (defun modi\/git-link-force-hash ()\n \"This function is the same as `git-link' except that it copies the link\nwith the commit hash in the link even if branch name is available.\"\n (interactive)\n (let ((git-link-use-commit t))\n (call-interactively #'git-link)))))\n\n\n(provide 'setup-git-link)\n","new_contents":";; Time-stamp: <2016-07-14 15:37:44 kmodi>\n\n;; Git Link\n;; https:\/\/github.com\/sshaw\/git-link\n\n(use-package git-link\n :load-path \"elisp\/git-link\"\n :bind (:map region-bindings-mode-map\n (\"g\" . modi\/git-link))\n :init\n (progn\n (bind-to-modi-map \"g\" #'modi\/git-link)\n (bind-to-modi-map \"G\" #'git-link-commit))\n :config\n (progn\n (setq git-link-commit-fallback-use-latest-commit t)\n\n (defun modi\/git-link (use-branch-maybe)\n \"Get git link with the exact commit hash, not the branch name.\nIf USE-BRANCH-MAYBE is non-nil, use branch name in the link if available.\"\n (interactive \"P\")\n (let ((git-link-use-commit (if use-branch-maybe\n nil\n t))\n ;; Reset the current-prefix-arg, do not pass that to `git-link'.\n current-prefix-arg)\n (call-interactively #'git-link)))))\n\n\n(provide 'setup-git-link)\n","subject":"Update git-link bindings, improve modi\/git-link","message":"Update git-link bindings, improve modi\/git-link\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"831890969d6e7ef98041c1b40d908cabf8f10cd5","old_file":"exercises\/word-count\/example.el","new_file":"exercises\/word-count\/example.el","old_contents":";;; word-count.el --- word-count Exercise (exercism)\n\n;;; Commentary:\n\n;;; Code:\n\n\n(defun word-count (sentence)\n (let ((count nil))\n (dolist (i (split-string (downcase sentence) \"[^a-z0-9]\" t))\n (let ((n (assoc i count)))\n (if n (setcdr n (1+ (cdr n)))\n (push (cons i 1) count))))\n count))\n\n\n(provide 'word-count)\n;;; word-count.el ends here\n","new_contents":";;; word-count.el --- word-count Exercise (exercism)\n\n;;; Commentary:\n\n;;; Code:\n\n\n(defun word-count (sentence)\n (let ((count nil))\n (dolist (word (split-string (downcase sentence) \"[^a-z0-9]\" t))\n (let ((entry (assoc word count)))\n (if entry\n (setcdr entry (1+ (cdr entry)))\n (push (cons word 1) count))))\n count))\n\n\n(provide 'word-count)\n;;; word-count.el ends here\n","subject":"Use more descriptive symbol names than `i' and `n'","message":"Use more descriptive symbol names than `i' and `n'\n","lang":"Emacs Lisp","license":"mit","repos":"exercism\/xelisp"} {"commit":"6d6bbc4be6672624ce21ab1b732770fc47ca8e5a","old_file":"emacs\/init\/init-evil-leader.el","new_file":"emacs\/init\/init-evil-leader.el","old_contents":"; Evil Leader\n\n(require 'evil-leader)\n(require 'evil-nerd-commenter)\n\n(global-evil-leader-mode)\n\n(evil-leader\/set-leader \",\")\n(evil-leader\/set-key\n \"b\" 'ibuffer\n \"q\" 'delete-window\n \"tt\" 'save-buffer\n \"k\" 'kill-buffer-and-window)\n\n(evil-leader\/set-key\n \"full\" 'toggle-frame-fullscreen)\n\n; Nerd-Commenter\n(evil-leader\/set-key\n \"comm\" 'evilnc-comment-or-uncomment-lines)\n\n(provide 'init-evil-leader)\n","new_contents":"; Evil Leader\n\n(require 'evil-leader)\n(require 'evil-nerd-commenter)\n\n(global-evil-leader-mode)\n\n(evil-leader\/set-leader \",\")\n(evil-leader\/set-key\n \"b\" 'ibuffer\n \"q\" 'delete-window\n \"tt\" 'save-buffer\n \"k\" 'kill-buffer-and-window\n \"m\" 'right-char\n \",\" 'insert-comma)\n\n(evil-leader\/set-key\n \"full\" 'toggle-frame-fullscreen)\n\n; Nerd-Commenter\n(evil-leader\/set-key\n \"comm\" 'evilnc-comment-or-uncomment-lines)\n\n; Mail\n(evil-leader\/set-key\n \"email\" 'mu4e\n \"fetch\" 'mu4e-get-mail-command)\n\n; Allows me to actually type a comma...TODO ability to do this in insert mode.\n(defun insert-comma ()\n (interactive)\n (insert \",\"))\n\n(provide 'init-evil-leader)\n","subject":"Add ability to type , in emacs","message":"Add ability to type , in emacs\n\n\nFormer-commit-id: bb8bf863cee948e01a303e60acbbda650e052890","lang":"Emacs Lisp","license":"mit","repos":"NathanMH\/dotfiles,NathanMH\/dotfiles,NathanMH\/dotfiles,NathanMH\/dotfiles"} {"commit":"656cfec4a7a8336e6d74087c1ea45426877016f3","old_file":"org-publish-project-alist.el","new_file":"org-publish-project-alist.el","old_contents":";; This file configures org modes publish functionality to generate the gh-pages site for this project.\n;; Load this file\/buffer and then execute: M-x org-publish-project RET gh-pages RET\n\n(setq org-publish-project-alist\n '((\"gh-notes\"\n\t :base-directory \".\/org\/\"\n\t :base-extension \"org\"\n\t :publishing-directory \".\/gh-pages\"\n\t :recursive t\n\t :publishing-function org-html-publish-to-html\n\t :headline-levels 4\n\t :auto-preamble t)\n\t(\"gh-assets\"\n\t :base-directory \".\/org\/\"\n\t :base-extension \"css\\\\|js\\\\|png\\\\|jpg\\\\|gif\\\\|pdf\\\\|mp3\\\\|ogg\\\\|swf\"\n\t :publishing-directory \".\/gh-pages\"\n\t :recursive t\n\t :publishing-function org-publish-attachment)\n\t(\"gh-pages\" :components (\"gh-notes\" \"gh-assets\"))))\n","new_contents":";; This file configures org modes publish functionality to generate the gh-pages site for this project.\n;; Load this file\/buffer and then execute: M-x org-publish-project RET gh-pages RET\n\n(setq org-publish-project-alist\n '((\"gh-notes\"\n\t :base-directory \".\/org\/\"\n\t :base-extension \"org\"\n\t :exclude \"setup.org\"\n\t :publishing-directory \".\/gh-pages\"\n\t :recursive t\n\t :publishing-function org-html-publish-to-html\n\t :headline-levels 4\n\t :auto-preamble t)\n\t(\"gh-assets\"\n\t :base-directory \".\/org\/\"\n\t :base-extension \"css\\\\|js\\\\|png\\\\|jpg\\\\|gif\\\\|pdf\\\\|mp3\\\\|ogg\\\\|swf\"\n\t :publishing-directory \".\/gh-pages\"\n\t :recursive t\n\t :publishing-function org-publish-attachment)\n\t(\"gh-pages\" :components (\"gh-notes\" \"gh-assets\"))))\n","subject":"Exclude org setup file from published docs","message":"Exclude org setup file from published docs\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"bpoweski\/http.async.client"} {"commit":"f79ada1c97e5aaad612fe88c36ba48944f03c1c9","old_file":"lisp\/init-darcs.el","new_file":"lisp\/init-darcs.el","old_contents":"(require-package 'darcsum)\n(require-package 'vc-darcs)\n\n\n;; TODO: include this in the vc-darcs ELPA package\n(add-to-list 'vc-handled-backends 'DARCS)\n(autoload 'vc-darcs-find-file-hook \"vc-darcs\")\n(add-hook 'find-file-hooks 'vc-darcs-find-file-hook)\n\n(setq darcsum-whatsnew-switches \"-l\")\n\n(provide 'init-darcs)\n","new_contents":"(require-package 'darcsum)\n(require-package 'vc-darcs)\n\n\n;; TODO: include this in the vc-darcs ELPA package\n(add-to-list 'vc-handled-backends 'DARCS)\n(autoload 'vc-darcs-find-file-hook \"vc-darcs\")\n(add-hook 'find-file-hooks 'vc-darcs-find-file-hook)\n\n(after-load 'vc-darcs\n ;; This variable was removed in an Emacs 25.x snapshot, but vc-darcs\n ;; hasn't been fixed accordingly\n (unless (boundp 'vc-disable-async-diff)\n (setq vc-disable-async-diff nil)))\n\n(setq darcsum-whatsnew-switches \"-l\")\n\n(provide 'init-darcs)\n","subject":"Work around breakage of vc-darcs by Emacs 25.x changes","message":"Work around breakage of vc-darcs by Emacs 25.x changes\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"Enzo-Liu\/emacs.d"} {"commit":"4c59c555d082d985648e7eee0b367b83d2e41d8e","old_file":"init-package\/init-flycheck.el","new_file":"init-package\/init-flycheck.el","old_contents":"(require 'flycheck)\n\n(dolist (mode '(c\n elixir\n json\n python\n ruby))\n(add-hook (intern (concat (symbol-name mode) \"-mode-hook\"))\n\t\t 'flycheck-mode))\n\n(setq flycheck-check-syntax-automatically '(save mode-enabled))\n","new_contents":"(require 'flycheck)\n\n(dolist (mode '(c\n elixir\n json\n python\n ruby))\n(add-hook (intern (concat (symbol-name mode) \"-mode-hook\"))\n\t\t 'flycheck-mode))\n\n(setq flycheck-check-syntax-automatically '(save mode-enabled))\n(setq flycheck-standard-error-navigation nil)\n","subject":"Remove flycheck integration with next-error","message":"Remove flycheck integration with next-error\n\nPrefere to call flycheck-next-error explicitly.\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"042cc3b9e979141cc689c74467d8c73fdd6ae5ef","old_file":"init\/init-scss.el","new_file":"init\/init-scss.el","old_contents":"(use-package scss-mode\n :mode \"\\\\.scss$\"\n :config\n (progn\n (add-hook 'scss-mode-hook 'enable-tab-width-2)\n\n (setq-default css-indent-offset 2)\n (setq scss-compile-at-save nil)\n\n (after \"web-beautify\"\n (add-hook! 'scss-mode-hook (setenv \"jsbeautify_indent_size\" \"2\"))\n (bind 'motion scss-mode-map \"gQ\" 'web-beautify-css))\n\n (after \"auto-complete\" (add-hook 'scss-mode-hook 'ac-css-mode-setup))\n (after \"company\" (company--backend-on 'scss-mode-hook 'company-css))))\n\n(use-package rainbow-mode\n :defer t\n :init (add-hook 'scss-mode-hook 'rainbow-mode))\n\n\n(provide 'init-scss)\n;;; init-scss.el ends here\n","new_contents":"(use-package scss-mode\n :mode \"\\\\.scss$\"\n :config\n (progn\n ;; Syntax coloring breaks on consecutive loads for some reason. This fixes that:\n (add-hook 'scss-mode-hook 'css-mode)\n\n (add-hook 'scss-mode-hook 'enable-tab-width-2)\n\n (setq-default css-indent-offset 2)\n (setq scss-compile-at-save nil)\n\n (after \"web-beautify\"\n (add-hook! 'scss-mode-hook (setenv \"jsbeautify_indent_size\" \"2\"))\n (bind 'motion scss-mode-map \"gQ\" 'web-beautify-css))\n\n (after \"auto-complete\" (add-hook 'scss-mode-hook 'ac-css-mode-setup))\n (after \"company\" (company--backend-on 'scss-mode-hook 'company-css))))\n\n(use-package rainbow-mode\n :defer t\n :init (add-hook 'scss-mode-hook 'rainbow-mode))\n\n\n(provide 'init-scss)\n;;; init-scss.el ends here\n","subject":"Fix syntax color loss in scss-mode","message":"Fix syntax color loss in scss-mode\n","lang":"Emacs Lisp","license":"mit","repos":"aminb\/.emacs.d,aminb\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,keoko\/.emacs.d,aminb\/.emacs.d,keoko\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,aminb\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,keoko\/.emacs.d,aminb\/.emacs.d,UndeadKernel\/emacs_doom,keoko\/.emacs.d,keoko\/.emacs.d,hlissner\/doom-emacs,keoko\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,aminb\/.emacs.d,keoko\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,keoko\/.emacs.d,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d"} {"commit":"862db64d9a4b4f46c7f4b7c3f4a39e58b662ee83","old_file":"lisp\/init-frame-hooks.el","new_file":"lisp\/init-frame-hooks.el","old_contents":"(defvar after-make-console-frame-hooks '()\n \"Hooks to run after creating a new TTY frame\")\n(defvar after-make-window-system-frame-hooks '()\n \"Hooks to run after creating a new window-system frame\")\n\n(defun run-after-make-frame-hooks (frame)\n \"Run configured hooks in response to the newly-created FRAME.\nSelectively runs either `after-make-console-frame-hooks' or\n`after-make-window-system-frame-hooks'\"\n (with-selected-frame frame\n (run-hooks (if window-system\n 'after-make-window-system-frame-hooks\n 'after-make-console-frame-hooks))))\n\n(add-hook 'after-make-frame-functions 'run-after-make-frame-hooks)\n\n(defconst sanityinc\/initial-frame (selected-frame)\n \"The frame (if any) active during Emacs initialization.\")\n\n(add-hook 'after-init-hook\n (lambda () (when sanityinc\/initial-frame\n (run-after-make-frame-hooks sanityinc\/initial-frame))))\n\n\n(provide 'init-frame-hooks)\n","new_contents":"(defvar after-make-console-frame-hooks '()\n \"Hooks to run after creating a new TTY frame\")\n; temporary hack: open org-todo-list upon startup\n(defvar after-make-window-system-frame-hooks '(org-todo-list)\n \"Hooks to run after creating a new window-system frame\")\n\n(defun run-after-make-frame-hooks (frame)\n \"Run configured hooks in response to the newly-created FRAME.\nSelectively runs either `after-make-console-frame-hooks' or\n`after-make-window-system-frame-hooks'\"\n (with-selected-frame frame\n (run-hooks (if window-system\n 'after-make-window-system-frame-hooks\n 'after-make-console-frame-hooks))))\n\n(add-hook 'after-make-frame-functions 'run-after-make-frame-hooks)\n\n(defconst sanityinc\/initial-frame (selected-frame)\n \"The frame (if any) active during Emacs initialization.\")\n\n(add-hook 'after-init-hook\n (lambda () (when sanityinc\/initial-frame\n (run-after-make-frame-hooks sanityinc\/initial-frame))))\n\n\n(provide 'init-frame-hooks)\n","subject":"Add temporary hack to open org-todo-list on startup","message":"Add temporary hack to open org-todo-list on startup\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"shafayetkhan\/emacs.d"} {"commit":"7b7605dcc77909afed0141b87ec586a865b5f426","old_file":"modes\/dired-conf.el","new_file":"modes\/dired-conf.el","old_contents":";;; dired-conf.el -- Settings for dired-mode\n(eval-when-compile\n (require 'dired)\n (require 'dired-aux))\n\n(setq dired-listing-switches \"-lRA --ignore='.git' --group-directories-first\"\n dired-auto-revert-buffer t\n dired-isearch-filenames t)\n","new_contents":";;; dired-conf.el -- Settings for dired-mode\n(eval-when-compile\n (require 'dired)\n (require 'dired-aux))\n\n(setq dired-listing-switches \"-lRA --ignore='.git' --group-directories-first\"\n dired-auto-revert-buffer t\n dired-isearch-filenames t)\n\n(defun pjones:dired-show-only-matching-files (regexp)\n (interactive \"sFiles to show (regexp): \")\n (dired-mark-files-regexp regexp)\n (dired-toggle-marks)\n (dired-do-kill-lines))\n\n(defun pjones:dired-load-hook ()\n (define-key dired-mode-map [?%?h] 'pjones:dired-show-only-matching-files))\n\n(add-hook 'dired-load-hook 'pjones:dired-load-hook)\n(add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode)\n","subject":"Add a new dired function to only show files that match a regexp","message":"Add a new dired function to only show files that match a regexp\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"eda08fb4157f5c1048a3f920685ab6646593c936","old_file":"setup-files\/setup-sml.el","new_file":"setup-files\/setup-sml.el","old_contents":";; Time-stamp: <2016-07-28 23:19:02 kmodi>\n\n;; Standard ML\n\n(use-package sml-mode\n :ensure t\n :mode ((\"\\\\.sml\\\\'\" . sml-mode))\n :config\n (progn\n (defun modi\/sml-mode-hook-fn ()\n \"Disable `electric-indent-mode' only locally.\"\n ;; In SML, it is perfectly fine to have the statements not ending in\n ;; semicolons as below (in files, *not* in REPL!):\n ;; val x = 34\n ;; But when doing so, newline with auto-indentation does not work\n ;; correctly. Newline + auto-indentation works fine only if the statements\n ;; are ended in semi-colons. So `electric-indent-mode will have to be\n ;; disabled for this major mode.\n (electric-indent-local-mode -1))\n (add-hook 'sml-mode-hook #'modi\/sml-mode-hook-fn)))\n\n\n(provide 'setup-sml)\n","new_contents":";; Time-stamp: <2016-08-04 23:30:42 kmodi>\n\n;; Standard ML\n\n(use-package sml-mode\n :ensure t\n :mode ((\"\\\\.sml\\\\'\" . sml-mode))\n :config\n (progn\n ;; Undefine all the default abbrevs defined in `sml-mode.el'.\n ;; I cannot use `clear-abbrev-table' because that will clear out my\n ;; personally defined abbrevs too!\n (dolist (abbrev '(\"let\"\n \"if\"\n \"local\"\n \"case\"\n \"signature\"\n \"structure\"\n \"functor\"\n \"datatype\"\n \"abstype\"\n \"struct\"\n \"sig\"\n \"val\"\n \"fn\"\n \"fun\"))\n (define-abbrev sml-mode-abbrev-table abbrev nil))\n\n (defun modi\/sml-mode-hook-fn ()\n \"My customizations for `sml-mode'.\"\n ;; ;; In SML, it is perfectly fine to have the statements not ending in\n ;; ;; semicolons as below (in files, *not* in REPL!):\n ;; ;; val x = 34\n ;; ;; But when doing so, newline with auto-indentation does not work\n ;; ;; correctly. Newline + auto-indentation works fine only if the statements\n ;; ;; are ended in semi-colons. So `electric-indent-mode will have to be\n ;; ;; disabled for this major mode.\n ;; (electric-indent-local-mode -1)\n (auto-fill-mode))\n (add-hook 'sml-mode-hook #'modi\/sml-mode-hook-fn)))\n\n\n(provide 'setup-sml)\n","subject":"Remove default abbrevs for sml (buggy)","message":"Remove default abbrevs for sml (buggy)\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"cf6b4f891e82660d69f0128d3a5e938a4006b1e1","old_file":"modules\/ui\/treemacs\/packages.el","new_file":"modules\/ui\/treemacs\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; ui\/treemacs\/packages.el\n\n(package! treemacs)\n(when (featurep! :feature evil)\n (package! treemacs-evil))\n(package! treemacs-projectile)\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; ui\/treemacs\/packages.el\n\n(package! treemacs)\n(when (featurep! :feature evil +everywhere)\n (package! treemacs-evil))\n(package! treemacs-projectile)\n","subject":"Add +everywhere flag to treemacs-evil","message":"Add +everywhere flag to treemacs-evil","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs"} {"commit":"9667d41333c9a18bb4e1307cc0a8da0312283919","old_file":"Packages\/settings\/setup-magit.el","new_file":"Packages\/settings\/setup-magit.el","old_contents":"(define-key osx-key-mode-map [(alt m)] nil)\n(use-package magit\n :ensure t\n :demand\n :init\n (setq magit-auto-revert-mode nil)\n :config\n (defhydra hydra-magit (:color teal :hint nil)\n\"\n Magit\n\n Status Changes Rebase Cherry Pick Merge\n--------------------------------------------------------------------------------------\n_s_: status _c_: commit _r_: rebase _p_: cherry pick _m_: merge\n_d_: diff _C_: amend _A-r_: continue _A-p_: continue\n_l_: log _h_: reset \n_f_: reflog _H_: reset hard\n\n\"\n (\"s\" magit-status)\n (\"d\" magit-diff)\n (\"l\" magit-log-current)\n (\"f\" magit-reflog)\n (\"c\" magit-commit)\n (\"C\" magit-commit-amend)\n (\"h\" magit-reset-head)\n (\"H\" magit-reset-hard)\n (\"r\" magit-rebase-interactive)\n (\"A-r\" magit-rebase-continue)\n (\"p\" magit-cherry-pick-popup)\n (\"A-p\" magit-sequencer-continue)\n (\"m\" magit-merge)\n (\"q\" nil \"cancel\" :color blue)\n (\"RET\" magit-visit-thing)\n )\n (global-set-key (kbd \"A-m\") 'hydra-magit\/body)\n )\n\n(provide 'setup-magit)\n","new_contents":"(define-key osx-key-mode-map [(alt m)] nil)\n(use-package magit\n :ensure t\n :demand\n :init\n (setq magit-auto-revert-mode nil)\n :config\n (defhydra hydra-magit (:color teal :hint nil)\n\"\n Magit\n\n Status Changes Rebase Cherry Pick Merge\n--------------------------------------------------------------------------------------\n_s_: status _c_: commit _r_: rebase _p_: cherry pick _m_: merge\n_d_: diff _C_: amend _A-r_: continue _A-p_: continue\n_l_: log _h_: reset \n_f_: reflog _H_: reset hard\n\n\"\n (\"s\" magit-status)\n (\"d\" magit-diff)\n (\"l\" magit-log-current)\n (\"f\" magit-reflog)\n (\"c\" magit-commit)\n (\"C\" magit-commit-amend)\n (\"h\" magit-reset-head)\n (\"H\" magit-reset-hard)\n (\"r\" magit-rebase-interactive)\n (\"A-r\" magit-rebase-continue)\n (\"p\" magit-cherry-pick)\n (\"A-p\" magit-sequencer-continue)\n (\"m\" magit-merge)\n (\"q\" nil \"cancel\" :color blue)\n (\"RET\" magit-visit-thing)\n )\n (global-set-key (kbd \"A-m\") 'hydra-magit\/body)\n )\n\n(provide 'setup-magit)\n","subject":"Update Magit cherry-pick command in hydra","message":"Update Magit cherry-pick command in hydra\n","lang":"Emacs Lisp","license":"mit","repos":"hsienchiaolee\/aquamacs"} {"commit":"84a525a0996cd1a806c6838f15a8c3fc9ef4056a","old_file":"modules\/editor\/lispy\/config.el","new_file":"modules\/editor\/lispy\/config.el","old_contents":";;; editor\/lispy\/config.el -*- lexical-binding: t; -*-\n\n(use-package! lispy\n :hook ((common-lisp-mode . lispy-mode)\n (emacs-lisp-mode . lispy-mode)\n (scheme-mode . lispy-mode)\n (racket-mode . lispy-mode)\n (hy-mode . lispy-mode)\n (lfe-mode . lispy-mode)\n (dune-mode . lispy-mode)\n (clojure-mode . lispy-mode))\n :config\n (setq lispy-close-quotes-at-end-p t)\n (add-hook 'lispy-mode-hook #'turn-off-smartparens-mode))\n\n(use-package! lispyville\n :when (featurep! :editor evil)\n :hook (lispy-mode . lispyville-mode)\n :config\n (lispyville-set-key-theme\n '((operators normal)\n c-w\n (prettify insert)\n (atom-movement normal visual)\n slurp\/barf-lispy\n (wrap normal insert)\n additional\n additional-insert\n (additional-wrap normal insert)\n (escape insert))))\n","new_contents":";;; editor\/lispy\/config.el -*- lexical-binding: t; -*-\n\n(use-package! lispy\n :hook ((common-lisp-mode . lispy-mode)\n (emacs-lisp-mode . lispy-mode)\n (scheme-mode . lispy-mode)\n (racket-mode . lispy-mode)\n (hy-mode . lispy-mode)\n (lfe-mode . lispy-mode)\n (dune-mode . lispy-mode)\n (clojure-mode . lispy-mode))\n :config\n (setq lispy-close-quotes-at-end-p t)\n (add-hook 'lispy-mode-hook #'turn-off-smartparens-mode))\n\n\n(use-package! lispyville\n :when (featurep! :editor evil)\n :hook (lispy-mode . lispyville-mode)\n :config\n (lispyville-set-key-theme\n '((operators normal)\n c-w\n (prettify insert)\n (atom-movement normal visual)\n slurp\/barf-lispy\n additional\n additional-insert)))\n","subject":"Remove wrap, additional-wrap, & escape key themes","message":"Remove wrap, additional-wrap, & escape key themes\n\n+ Escape was redundant with Doom's own escape handler\n+ Disabled wrap\/addition-wrap, as it isn't enabled by default, is\n potentially redundant with evil-{surround,embrace}, and prone to issues\n in tty emacs (see #2573).\n\nFixes #2573\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom"} {"commit":"d7aabd5581c3af1f792e56e87624a7cdc651d303","old_file":"emacs.d\/lisp\/personal\/settings.el","new_file":"emacs.d\/lisp\/personal\/settings.el","old_contents":"(setf inhibit-startup-screen t) ; disable welcome screen\n\n(setf ring-bell-function 'ignore) ; disable alarm bell\n\n(when (not (display-graphic-p))\n (menu-bar-mode -1)) ; disable menu bar in CLI\n\n;; improve scrolling\n(setf scroll-margin 5\n scroll-step 1\n scroll-conservatively 10000\n scroll-up-aggressively 0.01\n scroll-down-aggressively 0.01)\n\n(show-paren-mode 1) ; highlight matching parens\n\n(global-hl-line-mode 1) ; highlight current line\n\n(setq-default indent-tabs-mode nil) ; use spaces instead of tabs\n\n(xterm-mouse-mode 1) ; enable mouse support in terminal\n\n(setq tab-always-indent 'complete) ; make tab complete as well as indent\n","new_contents":"(setf inhibit-startup-screen t) ; disable welcome screen\n\n(setf ring-bell-function 'ignore) ; disable alarm bell\n\n(when (not (display-graphic-p))\n (menu-bar-mode -1)) ; disable menu bar in CLI\n\n;; improve scrolling\n(setf scroll-margin 5\n scroll-step 1\n scroll-conservatively 10000\n scroll-up-aggressively 0.01\n scroll-down-aggressively 0.01)\n\n(show-paren-mode 1) ; highlight matching parens\n\n(global-hl-line-mode 1) ; highlight current line\n\n(setq-default indent-tabs-mode nil) ; use spaces instead of tabs\n\n(xterm-mouse-mode 1) ; enable mouse support in terminal\n\n(setq tab-always-indent 'complete) ; make tab complete as well as indent\n\n(setq ns-pop-up-frames nil) ; open files in existing frame\n","subject":"Make Emacs open files in already-open frame","message":"Make Emacs open files in already-open frame\n","lang":"Emacs Lisp","license":"mit","repos":"anishathalye\/dotfiles,anishathalye\/dotfiles,anishathalye\/dotfiles"} {"commit":"e53cfe0795b0e064cdf862b0d7f0b364a2105f0d","old_file":"init-osx-keys.el","new_file":"init-osx-keys.el","old_contents":"(when *is-a-mac*\n (setq mac-command-modifier 'meta)\n (setq mac-option-modifier 'none)\n (setq default-input-method \"MacOSX\")\n ;; Make mouse wheel \/ trackpad scrolling less jerky\n (setq mouse-wheel-scroll-amount '(0.001))\n (when *is-cocoa-emacs*\n ;; Woohoo!!\n (global-set-key (kbd \"M-`\") 'ns-next-frame)\n (global-set-key (kbd \"M-h\") 'ns-do-hide-emacs)\n (eval-after-load 'nxml-mode\n '(define-key nxml-mode-map (kbd \"M-h\") nil))\n (global-set-key (kbd \"M-ˍ\") 'ns-do-hide-others) ;; what describe-key reports\n (global-set-key (kbd \"M-c\") 'ns-copy-including-secondary)\n (global-set-key (kbd \"M-v\") 'ns-paste-secondary)))\n\n\n(provide 'init-osx-keys)\n","new_contents":"(when *is-a-mac*\n (setq mac-command-modifier 'meta)\n (setq mac-option-modifier 'none)\n (setq default-input-method \"MacOSX\")\n ;; Make mouse wheel \/ trackpad scrolling less jerky\n (setq mouse-wheel-scroll-amount '(0.001))\n (when *is-cocoa-emacs*\n ;; Woohoo!!\n (global-set-key (kbd \"M-`\") 'ns-next-frame)\n (global-set-key (kbd \"M-h\") 'ns-do-hide-emacs)\n (eval-after-load 'nxml-mode\n '(define-key nxml-mode-map (kbd \"M-h\") nil))\n (global-set-key (kbd \"M-ˍ\") 'ns-do-hide-others) ;; what describe-key reports for cmd-option-h\n (global-set-key (kbd \"M-c\") 'ns-copy-including-secondary)\n (global-set-key (kbd \"M-v\") 'ns-paste-secondary)))\n\n\n(provide 'init-osx-keys)\n","subject":"Clarify meaning of obscure key binding","message":"Clarify meaning of obscure key binding\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"cyjia\/emacs.d,farzadbekran\/emacs.d,renatoriccio\/emacs.d,fengxl\/emacs.d,jthetzel\/emacs.d,roxolan\/emacs.d,caoyuanqi\/emacs.d,wenpincui\/emacs.d,farzadbekran\/emacs.d,lujianmei\/emacs.d,shafayetkhan\/emacs.d,hkcqr\/emacs.d,boblannon\/emacs.d,haodaivshen\/emacs.d,LittleLmp\/emacs.d,whizzzkid\/emacs.d,modkzs\/emcs.d,exclamaforte\/emacs.d,dhanunjaya\/emacs.d,mmqmzk\/emacs.d,emuio\/emacs.d,farzadbekran\/emacs.d,DarkThrone\/emacs.d,jachinpy\/emacs.d,zenith-john\/emacs.d,farzadbekran\/emacs.d,krzysz00\/emacs.d,Guoozz\/emacs.d,kongfy\/emacs.d,Togal\/emacs.d,Werewolflsp\/emacs.d,qianwan\/emacs.d,Enzo-Liu\/emacs.d,blueseason\/emacs.d,zhaotai\/.emacs.d,benkha\/emacs.d,qinshulei\/emacs.d,baohaojun\/emacs.d,dcorking\/emacs.d,braveoyster\/emacs.d,mpwang\/emacs.d,alant\/emacs.d,ilove0518\/emacs.d,atreeyang\/emacs.d,jachinpy\/emacs.d,lust4life\/emacs.d,lromang\/emacs.d,Shanicky\/emacs.d,svenyurgensson\/emacs.d,me020523\/emacs.d,ruiyang\/emacs.d,jkaessens\/emacs.d,kindoblue\/emacs.d,ernest-dzf\/emacs.d,cjqw\/emacs.d,46do14\/emacs.d,scorpionis\/emacs.d,bibaijin\/emacs.d,blueabysm\/emacs.d,pairyo\/emacs.d,LKI\/emacs.d,sgarciac\/emacs.d,dongdonghu\/.emacs.d,gsmlg\/emacs.d,purcell\/emacs.d,ruiyang\/emacs.d,danfengcao\/emacs.d,Jadecity\/PurcellEmacs.d,wegatron\/emacs.d,jhpx\/emacs.d,arthurl\/emacs.d,farzadbekran\/emacs.d,hophacker\/emacs.d,zhuoyikang\/emacs.d,carlosliu\/emacs.d"} {"commit":"df0621b8b833b98dfbcc34e3ae06ec80cedfe803","old_file":"init-package\/init-erlang.el","new_file":"init-package\/init-erlang.el","old_contents":"(add-to-list 'auto-mode-alist '(\"\\\\.erl?$\" . erlang-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.hrl?$\" . erlang-mode))\n(setq erlang-root-dir \"\/usr\/local\/lib\/erlang\/erts-5.9.2\")\n(add-to-list 'exec-path \"\/usr\/local\/lib\/erlang\/erts-5.9.2\/bin\")\n(setq erlang-man-root-dir \"\/usr\/local\/lib\/erlang\/erts-5.9.2\/man\")\n(setq erlang-compile-extra-opts '(debug_info))\n(require 'erlang-start)\n\n(add-hook 'erlang-mode-hook\n (lambda ()\n ;; when starting an Erlang shell in Emacs, with a custom node name\n (setq inferior-erlang-machine-options '(\"-sname\" \"syl20bnr\"))\n ))\n\n(require 'erlang-flymake)\n(erlang-flymake-only-on-save)\n","new_contents":"(add-to-list 'auto-mode-alist '(\"\\\\.erl?$\" . erlang-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.hrl?$\" . erlang-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.spec?$\" . erlang-mode))\n(setq erlang-root-dir \"\/usr\/local\/lib\/erlang\/erts-5.9.2\")\n(add-to-list 'exec-path \"\/usr\/local\/lib\/erlang\/erts-5.9.2\/bin\")\n(setq erlang-man-root-dir \"\/usr\/local\/lib\/erlang\/erts-5.9.2\/man\")\n(setq erlang-compile-extra-opts '(debug_info))\n(require 'erlang-start)\n\n(add-hook 'erlang-mode-hook\n (lambda ()\n ;; when starting an Erlang shell in Emacs, with a custom node name\n (setq inferior-erlang-machine-options '(\"-sname\" \"syl20bnr\"))\n ))\n\n(require 'erlang-flymake)\n(erlang-flymake-only-on-save)\n","subject":"Use erlang mode for .spec","message":"Use erlang mode for .spec\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"a598325b5013b488e04e6bf619f3a0679f92437b","old_file":"settings\/lk\/theme.el","new_file":"settings\/lk\/theme.el","old_contents":"(load-theme 'solarized-light 't)\n;; set font size\n(when (display-graphic-p)\n (set-face-attribute 'default nil :height 120))\n\n(provide 'lk\/theme)\n","new_contents":";; set font size\n(when (display-graphic-p)\n (set-face-attribute 'default nil :height 120))\n\n(defun on-after-init ()\n (unless (display-graphic-p (selected-frame))\n (set-face-background 'default \"unspecified-bg\" (selected-frame))))\n\n(add-hook 'window-setup-hook 'on-after-init)\n\n(load-theme 'solarized-dark 't)\n\n(provide 'lk\/theme)\n","subject":"Clean up colors in terminal","message":"Clean up colors in terminal\n","lang":"Emacs Lisp","license":"mit","repos":"lukaszkorecki\/cult-leader"} {"commit":"f74de979a8cfdb395b32c07e4348b279e9cf730a","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((nil . ((fill-column . 80))))\n","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((nil . ((fill-column . 80)))\n (c++-mode . ((mode . subword)))\n (c-mode . ((mode . subword))))\n","subject":"Enable subword-mode in C\/C++ files.","message":"Enable subword-mode in C\/C++ files.\n\nThis matches the CamelCase style.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp"} {"commit":"9c207ef3d923d45708b491823407a6bfdd6874c5","old_file":"user-lisp\/irc-customisations.el","new_file":"user-lisp\/irc-customisations.el","old_contents":"\n\n(use-package rcirc\n :config\n (setq rcirc-default-nick \"wilfredh\")\n (setq rcirc-server-alist\n '((\"irc.freenode.net\" :channels (\"#emacs\" \"#guile\"))\n (\"irc.mozilla.org\" :channels (\"#rust\"))))\n (setq rcirc-log-flag t)\n (setq rcirc-log-directory \"~\/irc_logs\"))\n\n(provide 'irc-customisations)\n","new_contents":"\n\n(use-package rcirc\n :config\n (setq rcirc-default-nick \"wilfredh\")\n (setq rcirc-server-alist\n '((\"irc.freenode.net\" :channels (\"#emacs\" \"#guile\"))\n (\"irc.mozilla.org\" :channels (\"#rust\"))))\n ;; Keep history.\n (setq rcirc-log-flag t)\n (setq rcirc-log-directory \"~\/irc_logs\")\n ;; Ignore away\/join\/part messages from lurkers.\n (setq rcirc-omit-responses '(\"JOIN\" \"PART\" \"QUIT\" \"NICK\" \"AWAY\"))\n (add-hook 'rcirc-mode #'rcirc-omit-mode))\n\n(provide 'irc-customisations)\n","subject":"Hide status updates from lurkers","message":"Hide status updates from lurkers\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"943787abba9e3db69f9b800521d06482a6bbb02c","old_file":"configs\/emacs.d\/pkgs\/pkg-evil.el","new_file":"configs\/emacs.d\/pkgs\/pkg-evil.el","old_contents":"(use-package evil-leader\n :ensure t\n\n :config\n (require 'evil-leader)\n (global-evil-leader-mode)\n\n (evil-leader\/set-leader \"\")\n (evil-leader\/set-key\n \"\" 'execute-extended-command\n \"e\" 'find-file)\n )\n\n(use-package evil-nerd-commenter\n :ensure t\n\n :config\n (global-set-key (kbd \"C-\\\\\") 'evilnc-comment-or-uncomment-lines)\n )\n\n(use-package evil\n :ensure t\n\n :bind (\n ;; bind ctrl-j\/k to just move\n (\"C-j\" . evil-next-line)\n (\"C-k\" . evil-previous-line)\n )\n\n :config\n (require 'evil)\n (evil-mode 1)\n\n ;; command alias\n (evil-ex-define-cmd \"W\" \"w\")\n (evil-ex-define-cmd \"Wq\" \"wq\")\n (evil-ex-define-cmd \"WQ\" \"wq\")\n (evil-ex-define-cmd \"Q\" \"q\")\n )\n\n(provide 'pkg-evil)\n","new_contents":"(use-package evil-leader\n :ensure t\n\n :config\n (global-evil-leader-mode)\n\n (evil-leader\/set-leader \"\")\n (evil-leader\/set-key\n \"\" 'execute-extended-command\n \"e\" 'find-file)\n )\n\n(use-package evil-nerd-commenter\n :ensure t\n\n :config\n (global-set-key (kbd \"C-\\\\\") 'evilnc-comment-or-uncomment-lines)\n )\n\n(use-package evil\n :ensure t\n\n :bind (\n ;; bind ctrl-j\/k to just move\n (\"C-j\" . evil-next-line)\n (\"C-k\" . evil-previous-line)\n )\n\n :config\n (evil-mode 1)\n\n ;; command alias\n (evil-ex-define-cmd \"W\" \"w\")\n (evil-ex-define-cmd \"Wq\" \"wq\")\n (evil-ex-define-cmd \"WQ\" \"wq\")\n (evil-ex-define-cmd \"Q\" \"q\")\n )\n\n(provide 'pkg-evil)\n","subject":"Remove require's from use-package config","message":"Remove require's from use-package config\n\nIt's automatically done.\n","lang":"Emacs Lisp","license":"mit","repos":"noraesae\/dotfiles,noraesae\/dotfiles,noraesae\/dotfiles"} {"commit":"4ece240c9185dd7ed2eac9aed329890eecea71f3","old_file":"lisp\/init-projectile.el","new_file":"lisp\/init-projectile.el","old_contents":"(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-mode)\n\n (setq projectile-keymap-prefix (kbd \"C-c C-p\"))\n\n ;; Shorter modeline\n (after-load 'projectile\n (setq-default\n projectile-mode-line\n '(:eval\n (if (file-remote-p default-directory)\n \" Proj\"\n (format \" Proj[%s]\" (projectile-project-name)))))))\n\n\n(provide 'init-projectile)\n","new_contents":"(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-mode)\n\n (after-load 'projectile\n (define-key projectile-mode-map (kbd \"C-c C-p\") 'projectile-command-map)\n\n ;; Shorter modeline\n (setq-default\n projectile-mode-line\n '(:eval\n (if (file-remote-p default-directory)\n \" Proj\"\n (format \" Proj[%s]\" (projectile-project-name)))))))\n\n\n(provide 'init-projectile)\n","subject":"Use define-key instead of outdated projectile-keymap-prefix","message":"Use define-key instead of outdated projectile-keymap-prefix\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"svenyurgensson\/emacs.d"} {"commit":"56f9a6cdf977e2a478d332678c85034ea788988b","old_file":"modes\/deft-conf.el","new_file":"modes\/deft-conf.el","old_contents":";;; deft-conf.el -- Settings for deft-mode.\n(eval-when-compile\n (require 'deft))\n\n\n(custom-set-variables\n `(deft-directory ,(expand-file-name \"~\/notes\/\"))\n '(deft-recursive t)\n '(deft-extensions (\"md\" \"txt\" \"org\"))\n '(deft-auto-save-interval 0))\n","new_contents":";;; deft-conf.el -- Settings for deft-mode.\n(eval-when-compile\n (require 'deft))\n\n\n(custom-set-variables\n `(deft-directory ,(expand-file-name \"~\/notes\/\"))\n '(deft-recursive t)\n '(deft-extensions (quote (\"md\" \"txt\" \"org\")))\n '(deft-auto-save-interval 0))\n","subject":"Update to force deft to use the .md extension for new files","message":"Update to force deft to use the .md extension for new files\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"29bfe1e63c2f8da39829b0488536d8dcc9e51a30","old_file":"custom\/100-theme.el","new_file":"custom\/100-theme.el","old_contents":";; Load theme and set font\n(set-frame-font \"Droid Sans Mono-10\" nil t)\n(load-theme 'yoshi :no-confirm)\n","new_contents":";; Set font\n;; (set-frame-font \"Droid Sans Mono-10\" nil t)\n\n;; Load Theme\n;; Install base16-theme & jazz-theme through package manager\n\n(load-theme 'jazz t) ;; Best looking theme, just needs black bg to be perfect\n\n;; (load-theme 'base16-isotope t) ;; black bg, high contrast, great bright text\n;; (load-theme 'base16-pop t) ;; black bg, high contrast, nice\n;; (load-theme 'base16-pico t) ;; black bg, interesting, high contrast\n;; (load-theme 'base16-bright t) ;; black bg, high contrast\n;; (load-theme 'base16-ir-black t) ;; black bg, high contrast\n\n;; (load-theme 'base16-seti-ui t) ;; not black bg but dark, good colours\n;; (load-theme 'base16-solar-flare t) ;; not black bg but dark, good colours\n;; (load-theme 'base16-google-dark t) ;; not black bg but dark, good colours\n\n;; (load-theme 'base16-solarized-dark t);; not black bg but good colours\n;; (load-theme 'base16-spacemacs t) ;; not black bg but good colours\n\n;; (load-theme 'base16-phd t) ;; not black bg, colours not very high contrast\n;; (load-theme 'base16-tomorrow-night t) ;; not black bg\n;; (load-theme 'base16-twilight t) ;; not black bg\n\n;; (load-theme 'base16-summerfruit-dark t) ;; not great i think\n;; (load-theme 'base16-railscasts t) ;; not great i think\n;; (load-theme 'base16-macintosh t) ;; not great i think\n\n;;OTHER THEMES\n;;Danneskjold Theme\n;;https:\/\/github.com\/emacs-jp\/replace-colorthemes\n\n","subject":"Add theme options w\/ comments","message":"Add theme options w\/ comments\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"4c34a4afd64d3d862c1f902139fff47efaf3656b","old_file":"dotfiles\/emacs.d\/rc\/startup.el","new_file":"dotfiles\/emacs.d\/rc\/startup.el","old_contents":"(setq inhibit-startup-message t) \n(setq initial-scratch-message \";;; S C R A T C H B U F F E R ;;;\n\")\n\n(if window-system\n (progn\n (menu-bar-mode 1)\n (tool-bar-mode 0))\n (menu-bar-mode 0))\n","new_contents":"(setq inhibit-startup-message t) \n(setq initial-scratch-message \";;; S C R A T C H B U F F E R ;;;\n\")\n\n(if window-system\n (progn\n (global-set-key [kp-delete] 'delete-char)\n (global-set-key [M-kp-delete] 'kill-word)\n (menu-bar-mode 1)\n (tool-bar-mode 0))\n (menu-bar-mode 0))\n\n","subject":"Fix delete in windowed mode","message":"Fix delete in windowed mode\n","lang":"Emacs Lisp","license":"mit","repos":"cdlm\/infrastructure,cdlm\/infrastructure,cdlm\/infrastructure,cdlm\/infrastructure"} {"commit":"3e848bc26b75f05debf3b173616643ea088e2376","old_file":"init-haskell.el","new_file":"init-haskell.el","old_contents":"(require-package 'haskell-mode)\n\n(dolist (hook '(haskell-mode-hook inferior-haskell-mode-hook))\n (add-hook hook 'turn-on-haskell-doc-mode))\n\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)\n\n(eval-after-load 'haskell-mode\n '(progn\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (define-key haskell-mode-map (kbd \"RET\") 'newline)))\n\n(require-package 'ghci-completion)\n(add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion)\n\n(require-package 'flymake-haskell-multi)\n(add-hook 'haskell-mode-hook #'flymake-haskell-multi-load)\n\n;; Make compilation-mode understand \"at blah.hs:11:34-50\" lines output by GHC\n(add-to-list\n 'compilation-error-regexp-alist-alist\n '(ghc-at-regexp \" at \\\\(.*l?hs\\\\):\\\\([0-9]+\\\\):\\\\([0-9]+\\\\)-[0-9]+$\" 1 2 3 0 1))\n\n(provide 'init-haskell)\n","new_contents":"(require-package 'haskell-mode)\n\n(dolist (hook '(haskell-mode-hook inferior-haskell-mode-hook))\n (add-hook hook 'turn-on-haskell-doc-mode))\n\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)\n\n(eval-after-load 'haskell-mode\n '(progn\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (define-key haskell-mode-map (kbd \"RET\") 'newline)))\n\n(require-package 'ghci-completion)\n(add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion)\n\n(require-package 'flymake-haskell-multi)\n(add-hook 'haskell-mode-hook #'flymake-haskell-multi-load)\n\n;; Make compilation-mode understand \"at blah.hs:11:34-50\" lines output by GHC\n(eval-after-load 'compile\n '(progn\n (let ((alias 'ghc-at-regexp))\n (add-to-list\n 'compilation-error-regexp-alist-alist\n (list alias \" at \\\\(.*l?hs\\\\):\\\\([0-9]+\\\\):\\\\([0-9]+\\\\)-[0-9]+$\" 1 2 3 0 1))\n (add-to-list\n 'compilation-error-regexp-alist alias))))\n\n(provide 'init-haskell)\n","subject":"Fix additional haskell compilation regexp entries","message":"Fix additional haskell compilation regexp entries\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"14af769f5f612d350d7196b269b6c764b4387af3","old_file":"config\/color_theme.el","new_file":"config\/color_theme.el","old_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n;; (set-face-foreground 'mode-line \"black\")\n;; (set-face-background 'mode-line \"purple\")\n;; (set-face-background 'mode-line-inactive \"blue\")\n;; (set-face-background 'modeline-inactive \"red\")\n\n;; (setq custom-enabled-themes \"hipster\")\n;; (setq custom-safe-themes \"hipster\")\n;; (custom-safe-themes 'hipster-theme)\n(load-theme 'zenburn)\n","new_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n;; (set-face-foreground 'mode-line \"black\")\n;; (set-face-background 'mode-line \"purple\")\n;; (set-face-background 'mode-line-inactive \"blue\")\n;; (set-face-background 'modeline-inactive \"red\")\n\n;; (setq custom-enabled-themes \"hipster\")\n;; (setq custom-safe-themes \"hipster\")\n;; (custom-safe-themes 'hipster-theme)\n(load-theme 'zenburn)\n\n(custom-set-faces\n ;; '(neo-dir-link-face ((t (:foreground \"yellow\"))))\n '(neo-dir-link-face ((t (:foreground \"color-64\"))))\n '(neo-file-link-face ((t (:foreground \"color-244\")))))\n","subject":"Use less bright colors in neotree","message":"Use less bright colors in neotree\n","lang":"Emacs Lisp","license":"unlicense","repos":"schanur\/emacs.d"} {"commit":"9ebaa15781caadf3645d2fb3b114ddd6ebe7ec2b","old_file":"exercises\/luhn\/example.el","new_file":"exercises\/luhn\/example.el","old_contents":";;; luhn.el --- luhn (exercism)\n\n;;; Commentary:\n\n;;; Code:\n\n(require 'cl-lib)\n\n(defun luhn-p (str)\n \"Check if STR is valid using the Luhn algorithm.\"\n (let ((str (replace-regexp-in-string \" \" \"\" str)))\n (if (string-match-p \"[^0-9 ]\" str)\n (error \"String contains invalid character\")\n (unless (<= (length str) 1)\n (let* ((digit-list (reverse (mapcar (lambda (x) (- x 48))\n (string-to-list str))))\n (digit-list-with-index (cl-pairlis (number-sequence 0 (1- (length digit-list)))\n digit-list)))\n (zerop (mod (apply #'+\n (mapcar (lambda (x)\n (if (= 1 (mod (car x) 2))\n (if (> (* 2 (cdr x)) 9)\n (- (* 2 (cdr x)) 9)\n (* 2 (cdr x)))\n (cdr x)))\n digit-list-with-index))\n 10)))))))\n\n(provide 'luhn)\n;;; luhn.el ends here\n","new_contents":";;; luhn.el --- luhn (exercism)\n\n;;; Commentary:\n\n;;; Code:\n\n(require 'cl-lib)\n\n(defun char-to-number (char)\n \"Return the integer (0-9) represented by CHAR.\"\n (- char 48))\n\n(defun luhn-mangle (index number)\n \"Using Luhn, mangle INDEX and NUMBER.\"\n (let ((twice (* 2 number)))\n (cond\n ((cl-evenp index) number)\n ((> twice 9) (- twice 9))\n (t twice))))\n\n(defun luhn-p (str)\n \"Check if STR is valid using the Luhn algorithm.\"\n (setq str (replace-regexp-in-string \" \" \"\" str))\n (when (string-match-p \"[^0-9 ]\" str)\n (error \"String contains invalid character\"))\n (when (< 1 (length str))\n (let ((mangled (cl-mapcar #'luhn-mangle\n (number-sequence 0 (length str))\n (reverse (mapcar #'char-to-number str)))))\n (= 0 (mod (apply #'+ mangled) 10)))))\n\n(provide 'luhn)\n;;; luhn.el ends here\n","subject":"Simplify Luhn implementation for readability","message":"Simplify Luhn implementation for readability\n","lang":"Emacs Lisp","license":"mit","repos":"exercism\/xelisp"} {"commit":"8ce2ba9a1e97d4dda1958b2a96e5a279db857650","old_file":"init-extension\/init-pylookup.el","new_file":"init-extension\/init-pylookup.el","old_contents":"(use-package pylookup\n :defer t\n :config\n (progn\n (setq pylookup-dir (concat user-extensions-directory \"\/pylookup\"))\n ;; set executable file and db file\n (setq pylookup-program (concat pylookup-dir \"\/pylookup.py\"))\n (setq pylookup-db-file (concat pylookup-dir \"\/pylookup.db\"))\n))\n","new_contents":"(use-package pylookup\n :commands pylookup-lookup\n :config\n (progn\n (setq pylookup-dir (concat user-extensions-directory \"\/pylookup\"))\n ;; set executable file and db file\n (setq pylookup-program (concat pylookup-dir \"\/pylookup.py\"))\n (setq pylookup-db-file (concat pylookup-dir \"\/pylookup.db\"))))\n","subject":"Fix lazy loading of pylookup","message":"Fix lazy loading of pylookup\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"43c44bff7eb60de171a5f1a96696858efff9e8e1","old_file":"emacs.d\/personal\/hooks\/js2-mode.el","new_file":"emacs.d\/personal\/hooks\/js2-mode.el","old_contents":"(setq js2-basic-offset 2)\n\n(hs-minor-mode)\n\n(when (and (stringp buffer-file-name)\n (string-match \"\\\\.jsx\\\\'\" buffer-file-name))\n (aggressive-indent-mode -1))\n\n;; show wrap guide\n(require 'fill-column-indicator)\n(setq fci-rule-column personal-wrap-limit)\n(fci-mode)\n\n(local-set-key (kbd \"C-l b w\") 'fci-mode)\n\n;; show junk whitespace\n(whitespace-mode)\n\n;; activate character pairing\n(smartparens-mode)\n\n;; do some spell checking (requires: brew install aspell --lang=en)\n(flyspell-prog-mode)\n\n(local-set-key (kbd \"C-l b s\") 'personal\/toggle-program-spelling)\n\n;; command shortcuts\n(local-set-key (kbd \"C-l =\") 'personal\/align=)\n(local-set-key (kbd \"C-l ;\") 'personal\/close-statement)\n\n(local-set-key (kbd \"C-l t s\") 'toggle-quotes)\n\n;; Include node globals to prevent warnings about undeclared functions\/variables\n;; (e.g. require\/module)\n(setq js2-include-node-externs t)\n\n;; js2-refactor\n(require 'js2-refactor)\n(js2r-add-keybindings-with-prefix \"C-l C-l r\")\n","new_contents":"(setq js2-basic-offset 2)\n\n(hs-minor-mode)\n\n(when (and (stringp buffer-file-name)\n (string-match \"\\\\.jsx\\\\'\" buffer-file-name))\n (aggressive-indent-mode -1))\n\n;; show wrap guide\n(require 'fill-column-indicator)\n(setq fci-rule-column personal-wrap-limit)\n(fci-mode)\n\n(local-set-key (kbd \"C-l b w\") 'fci-mode)\n\n;; show junk whitespace\n(whitespace-mode)\n\n;; activate character pairing\n(smartparens-mode)\n\n;; do some spell checking (requires: brew install aspell --lang=en)\n(flyspell-prog-mode)\n\n(local-set-key (kbd \"C-l b s\") 'personal\/toggle-program-spelling)\n\n;; command shortcuts\n(local-set-key (kbd \"C-l =\") 'personal\/align=)\n(local-set-key (kbd \"C-l ;\") 'personal\/close-statement)\n\n(local-set-key (kbd \"C-l t s\") 'toggle-quotes)\n\n;; Include node globals to prevent warnings about undeclared functions\/variables\n;; (e.g. require\/module)\n(setq js2-include-node-externs t)\n\n;; js2-refactor\n(require 'js2-refactor)\n(js2r-add-keybindings-with-prefix \"C-l C-r r\")\n","subject":"Move js2 refactoring from C-l C-l to C-l C-r","message":"Move js2 refactoring from C-l C-l to C-l C-r\n","lang":"Emacs Lisp","license":"mit","repos":"caleb\/dotfiles,caleb\/dotfiles,caleb\/dotfiles"} {"commit":"e211317d9fc7cef1270973f3bea5725f1bc05f46","old_file":"modules\/javascript.el","new_file":"modules\/javascript.el","old_contents":"(add-to-list 'el-get-sources\n\t '(:name js3-mode\n\t\t :after (setq js3-highlight-external-variables nil)))\n","new_contents":"(add-to-list 'el-get-sources\n\t '(:name js2-mode))\n\n(add-to-list 'el-get-sources\n '(:name ecmascript-mode\n :after (add-to-list 'auto-mode-alist '(\"\\\\.js\\\\'\" . js2-mode))))\n","subject":"Change JS mode for better ECMAScript support.","message":"Change JS mode for better ECMAScript support.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"danielfm\/dotfiles-emacs"} {"commit":"20c1036c8c4fd632297693ee40f2b708b0bcce51","old_file":"home\/.emacs.d\/lisp\/init-yasnippet.el","new_file":"home\/.emacs.d\/lisp\/init-yasnippet.el","old_contents":";;; init-yasnippet.el -- yasnippet setup\n\n;;; Commentary:\n;;; yasnippet and custom snippets\n\n;;; Code:\n(require-package 'yasnippet)\n\n(require 'yasnippet)\n\n(setq yas-snippet-dirs\n '(\"~\/.emacs.d\/snippets\" \"~\/code\/yasnippet-snippets\"))\n\n(yas-global-mode 1)\n\n(diminish 'yas-minor-mode)\n\n(provide 'init-yasnippet)\n;;; init-yasnippet.el ends here\n","new_contents":";;; init-yasnippet.el -- yasnippet setup\n\n;;; Commentary:\n;;; yasnippet and custom snippets\n\n;;; Code:\n(require-package 'yasnippet)\n\n(require 'yasnippet)\n\n(setq yas-snippet-dirs\n '(\"~\/.emacs.d\/snippets\" \"~\/code\/yasnippet-snippets\"))\n\n;; Add yasnippet support for all company backends\n;; https:\/\/github.com\/syl20bnr\/spacemacs\/pull\/179\n(defvar company-mode\/enable-yas t\n \"Enable yasnippet for all backends.\")\n\n(defun company-mode\/backend-with-yas (backend)\n (if (or\n (not company-mode\/enable-yas)\n (and (listp backend) (member 'company-yasnippet backend)))\n backend\n (append (if (consp backend) backend (list backend))\n '(:with company-yasnippet))))\n\n(setq company-backends\n (mapcar #'company-mode\/backend-with-yas company-backends))\n\n(defun check-expansion ()\n (save-excursion\n (if (looking-at \"\\\\_>\") t\n (backward-char 1)\n (if (looking-at \"\\\\.\") t\n (backward-char 1)\n (if (looking-at \"->\") t nil)))))\n\n(defun do-yas-expand ()\n \"Expand a YAS snippet.\"\n (let ((yas-fallback-behavior 'return-nil))\n (yas-expand)))\n\n(defun tab-indent-or-complete ()\n (interactive)\n (if (minibufferp)\n (minibuffer-complete)\n (if (or (not yas\/minor-mode)\n (null (do-yas-expand)))\n (if (check-expansion)\n (company-complete-common)\n (indent-for-tab-command)))))\n\n(global-set-key (kbd \"\") 'tab-indent-or-complete)\n(define-key company-active-map [tab] 'company-select-next)\n(define-key company-active-map [backtab] 'company-select-previous)\n(define-key company-active-map (kbd \"\") 'company-select-next)\n(define-key company-active-map (kbd \"\") 'company-select-previous)\n\n(yas-global-mode 1)\n\n(diminish 'yas-minor-mode)\n\n(provide 'init-yasnippet)\n;;; init-yasnippet.el ends here\n","subject":"Complete snippets with company mode","message":"Complete snippets with company mode\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"ca3a448e695738fc09d9001520785a429cf5008d","old_file":".emacs.d\/lisp\/package\/dependencies.el","new_file":".emacs.d\/lisp\/package\/dependencies.el","old_contents":"(defvar kotct\/dependency-list\n '(linum-off ;; turn linum off in certain modes\n ido-vertical-mode ;; use vertical menus for ido\n ido-grid-mode ;; use a grid selection menu for ido\n smex ;; ido-enabled M-x\n anzu ;; nicer search environment\n volatile-highlights ;; highlight changed areas\n buffer-move ;; easily move buffers between windows\n expand-region ;; expand region to successively larger sexps\n magit ;; make Git and Emacs both way cooler\n auto-complete ;; code autocompletion\n markdown-mode ;; major mode for markdown\n smart-tabs-mode ;; indentation with tabs and spaces\n ace-jump-mode ;; immediately jump to any visible character\n ace-jump-zap ;; zap-to-char but harnessing ace-jump\n editorconfig ;; editorconfig plugin\n hl-todo ;; highlight TODO, FIXME, FAIL, etc.\n highlight-symbol ;; navigate between and highlight symbols\n web-mode ;; for editing web files\n elixir-mode ;; for editing Elixir code\n rust-mode ;; for editing Rust code\n buttercup ;; for tests\n smartparens ;; for dealing with paired control flow symbols\n\n ;; THEMES\n solarized-theme)\n \"A list of all packages required for operation.\")\n\n(provide 'dependencies)\n","new_contents":"(defvar kotct\/dependency-list\n '(linum-off ;; turn linum off in certain modes\n ido-vertical-mode ;; use vertical menus for ido\n ido-grid-mode ;; use a grid selection menu for ido\n smex ;; ido-enabled M-x\n anzu ;; nicer search environment\n volatile-highlights ;; highlight changed areas\n buffer-move ;; easily move buffers between windows\n expand-region ;; expand region to successively larger sexps\n magit ;; make Git and Emacs both way cooler\n auto-complete ;; code autocompletion\n markdown-mode ;; major mode for markdown\n smart-tabs-mode ;; indentation with tabs and spaces\n ace-jump-mode ;; immediately jump to any visible character\n ace-jump-zap ;; zap-to-char but harnessing ace-jump\n editorconfig ;; editorconfig plugin\n hl-todo ;; highlight TODO, FIXME, FAIL, etc.\n highlight-symbol ;; navigate between and highlight symbols\n web-mode ;; for editing web files\n elixir-mode ;; for editing Elixir code\n rust-mode ;; for editing Rust code\n buttercup ;; for tests\n smartparens ;; for dealing with paired control flow symbols\n gitignore-mode ;; for editing .gitignore files\n gitattributes-mode ;; for editing .gitattributes files\n gitconfig-mode ;; for editing .git\/config files\n\n ;; THEMES\n solarized-theme)\n \"A list of all packages required for operation.\")\n\n(provide 'dependencies)\n","subject":"Add gitignore-mode, gitattributes-mode, and gitconfig-mode as deps","message":"Add gitignore-mode, gitattributes-mode, and gitconfig-mode as deps\n","lang":"Emacs Lisp","license":"mit","repos":"kotct\/dot,kotct\/dot"} {"commit":"ac3e9216bdbd13447b4573f8b7b6547596c1c72d","old_file":"elisp\/mode-customizations.el","new_file":"elisp\/mode-customizations.el","old_contents":";; Conventional max line length in Racket is 102 columns\n(add-hook 'racket-mode-hook (lambda () (column-marker-1 102)))\n(add-hook 'racket-mode-hook (lambda () (setq fill-column 102)))\n\n;; Show a column marker in markdown mode\n(add-hook 'markdown-mode-hook (lambda () (column-marker-1 80)))\n\n;; Paredit for all S-expression-based programming modes\n(add-hook 'emacs-lisp-mode-hook 'paredit-mode)\n(add-hook 'scheme-mode-hook 'paredit-mode)\n(add-hook 'racket-mode-hook 'paredit-mode)\n\n;; Fix magit commit message editor, as seen here: http:\/\/stackoverflow.com\/a\/19265280\/21957\n(if (equal 'darwin system-type)\n (set-variable 'magit-emacsclient-executable \"\/usr\/local\/bin\/emacsclient\"))\n\n","new_contents":";; Conventional max line length in Racket is 102 columns\n(add-hook 'racket-mode-hook (lambda () (column-marker-1 102)))\n(add-hook 'racket-mode-hook (lambda () (setq fill-column 102)))\n\n;; Conventional max line length in Rust is 102 columns\n(add-hook 'rust-mode-hook (lambda () (column-marker-1 99)))\n(add-hook 'rust-mode-hook (lambda () (setq fill-column 99)))\n\n;; Show a column marker in markdown mode\n(add-hook 'markdown-mode-hook (lambda () (column-marker-1 80)))\n\n;; Paredit for all S-expression-based programming modes\n(add-hook 'emacs-lisp-mode-hook 'paredit-mode)\n(add-hook 'scheme-mode-hook 'paredit-mode)\n(add-hook 'racket-mode-hook 'paredit-mode)\n\n;; Fix magit commit message editor, as seen here: http:\/\/stackoverflow.com\/a\/19265280\/21957\n(if (equal 'darwin system-type)\n (set-variable 'magit-emacsclient-executable \"\/usr\/local\/bin\/emacsclient\"))\n\n","subject":"Add line length check for Rust","message":"Add line length check for Rust\n","lang":"Emacs Lisp","license":"mit","repos":"schuster\/dotfiles"} {"commit":"2835498e2d294ba391dc90cab13508dbd51f014e","old_file":"home\/.emacs.d\/lisp\/init-company.el","new_file":"home\/.emacs.d\/lisp\/init-company.el","old_contents":";;; init-company.el -- Company mode setup\n\n;;; Commentary:\n;;; company setup\n\n;;; Code:\n(require-package 'company)\n(require-package 'company-quickhelp)\n\n(company-quickhelp-mode 1)\n(global-company-mode 1)\n\n(define-key company-active-map (kbd \"\\C-n\") 'company-select-next)\n(define-key company-active-map (kbd \"\\C-p\") 'company-select-previous)\n(global-set-key (kbd \"M-\/\") 'hippie-expand)\n(add-hook 'company-completion-started-hook (lambda (arg) (fci-mode 0)))\n(add-hook 'company-completion-finished-hook (lambda (arg) (fci-mode 1)))\n\n(setq company-dabbrev-downcase nil)\n(setq company-dabbrev-ignore-case t)\n(setq company-idle-delay 0.25)\n(setq company-minimum-prefix-length 0)\n\n(diminish 'company-mode)\n\n(provide 'init-company)\n;;; init-company.el ends here\n","new_contents":";;; init-company.el -- Company mode setup\n\n;;; Commentary:\n;;; company setup\n\n;;; Code:\n(require-package 'company)\n(require-package 'company-quickhelp)\n\n(company-quickhelp-mode 1)\n(global-company-mode 1)\n\n(define-key company-active-map (kbd \"\\C-n\") 'company-select-next)\n(define-key company-active-map (kbd \"\\C-p\") 'company-select-previous)\n(global-set-key (kbd \"M-\/\") 'hippie-expand)\n(add-hook 'company-completion-cancelled-hook (lambda (arg) (fci-mode 1)))\n(add-hook 'company-completion-finished-hook (lambda (arg) (fci-mode 1)))\n(add-hook 'company-completion-started-hook (lambda (arg) (fci-mode 0)))\n\n(setq company-dabbrev-downcase nil)\n(setq company-dabbrev-ignore-case t)\n(setq company-idle-delay 0.25)\n(setq company-minimum-prefix-length 0)\n\n(diminish 'company-mode)\n\n(provide 'init-company)\n;;; init-company.el ends here\n","subject":"Fix company mode and fci integration","message":"Fix company mode and fci integration\n\n* When the completion was cancelled fci mode was not being reactivated\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"2f33ac82ed3d4e0f26607182127a210cd092bac6","old_file":"emacs.d\/my-isearch.el","new_file":"emacs.d\/my-isearch.el","old_contents":"(require 'isearch)\n\n;; TODO: handle for isearch-backward and wrap around\n(defun my-isearch-goto-next-non-visible-match ()\n \"Go to the next match that is beyond this window.\"\n (interactive)\n ;; See search-forward-lax-whitespace & friends for this pattern:\n (let* ((search-spaces-regexp search-whitespace-regexp)\n (next-non-visible-match\n (save-excursion\n (goto-char (window-end))\n (re-search-forward (regexp-quote isearch-string) nil t))))\n (if (null next-non-visible-match)\n (message \"No matches found beyond this window\")\n (goto-char next-non-visible-match)\n (goto-char (point-at-bol))\n (recenter 4)\n (isearch-search)\n (isearch-update))))\n\n(define-key isearch-mode-map (kbd \"C-v\")\n 'my-isearch-goto-next-non-visible-match)\n","new_contents":"(require 'isearch)\n\n;; TODO: handle wrap around\n(defun my-isearch-goto-next-non-visible-match ()\n \"Go to the next (or previous) match that is beyond this window.\"\n (interactive)\n (let ((next-non-visible-match\n (let ((search-spaces-regexp search-whitespace-regexp))\n (save-excursion\n (cond (isearch-forward\n (goto-char (window-end))\n (re-search-forward (regexp-quote isearch-string) nil t))\n (t\n (goto-char (window-start))\n (re-search-backward (regexp-quote isearch-string) nil t)))))))\n (if (null next-non-visible-match)\n (message \"No matches found beyond this window\")\n (goto-char next-non-visible-match)\n (cond (isearch-forward\n (goto-char (point-at-bol))\n (recenter 4))\n (t\n (goto-char (point-at-eol))\n (recenter -4)))\n (isearch-search)\n (isearch-update))))\n","subject":"Handle isearch-backward to show previous non visible match","message":"Handle isearch-backward to show previous non visible match\n","lang":"Emacs Lisp","license":"mit","repos":"sri\/dotfiles,sri\/dotfiles,sri\/dotfiles"} {"commit":"67469ad68a88f2310606b1bd5a410aa29eb27f06","old_file":"emacs.d\/init.d\/ruby.el","new_file":"emacs.d\/init.d\/ruby.el","old_contents":"(require 'rcodetools)\n(require 'ruby-compilation)\n(require 'inf-ruby)\n\n(add-hook 'ruby-mode-hook\n 'lambda()\n (local-set-key (kbd \"RET\") 'reindent-then-newline-and-indent))\n\n(add-to-list 'auto-mode-alist '(\"\\\\.rake\\\\'\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"[Rr]akefile\\\\'\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Gemfile\\\\'\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.gemspec\\\\'\" . ruby-mode))\n\n(global-set-key \"\\C-ck\" 'ruby-compilation-rake)\n","new_contents":"(require 'rcodetools)\n(require 'ruby-compilation)\n(require 'inf-ruby)\n\n(add-hook 'ruby-mode-hook\n '(lambda()\n\t (local-set-key (kbd \"RET\") 'reindent-then-newline-and-indent)\n\t (local-set-key (kbd \"C-c C-c\") 'xmp)))\n\n(add-to-list 'auto-mode-alist '(\"\\\\.rake\\\\'\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"[Rr]akefile\\\\'\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Gemfile\\\\'\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.gemspec\\\\'\" . ruby-mode))\n\n(global-set-key \"\\C-ck\" 'ruby-compilation-rake)\n","subject":"Define a shortcut for xmp in Ruby","message":"Define a shortcut for xmp in Ruby\n","lang":"Emacs Lisp","license":"mit","repos":"randycoulman\/dotfiles"} {"commit":"809bc4dffe4961f1489be78a0880746d560eec69","old_file":"setup-files\/setup-hungry-delete.el","new_file":"setup-files\/setup-hungry-delete.el","old_contents":";; Time-stamp: <2014-07-27 15:35:51 kmodi>\n\n;; Hungry Delete\n\n(require 'hungry-delete)\n\n;; (setq my-global-hungry-delete-mode t)\n\n;; `turn-on-hungry-delete-mode' is defined in the hungry-mode package\n(defun turn-off-hungry-delete-mode()\n (interactive)\n (hungry-delete-mode -1))\n\n(global-hungry-delete-mode nil)\n(add-hook 'activate-mark-hook 'turn-off-hungry-delete-mode)\n(add-hook 'deactivate-mark-hook 'turn-on-hungry-delete-mode)\n\n;; Doesn't work as expected\n;; (if my-global-hungry-delete-mode\n;; (if delete-selection-mode\n;; (progn\n;; (global-hungry-delete-mode nil)\n;; (add-hook 'activate-mark-hook 'turn-off-hungry-delete-mode)\n;; (add-hook 'deactivate-mark-hook 'turn-on-hungry-delete-mode))\n;; (progn\n;; (global-hungry-delete-mode t)\n;; (remove-hook 'activate-mark-hook 'turn-off-hungry-delete-mode)\n;; (remove-hook 'deactivate-mark-hook 'turn-on-hungry-delet-mode)))\n;; (global-hungry-delete-mode nil))\n\n\n(setq setup-hungry-delete-loaded t)\n(provide 'setup-hungry-delete)\n","new_contents":";; Time-stamp: <2014-07-28 00:44:25 kmodi>\n\n;; Hungry Delete\n\n(require 'hungry-delete)\n\n(setq my-global-hungry-delete-mode t)\n\n;; `turn-on-hungry-delete-mode' is defined in the hungry-mode package\n(defun turn-off-hungry-delete-mode()\n (interactive)\n (hungry-delete-mode -1))\n\n;; (global-hungry-delete-mode nil)\n;; (add-hook 'activate-mark-hook 'turn-off-hungry-delete-mode)\n;; (add-hook 'deactivate-mark-hook 'turn-on-hungry-delete-mode)\n\n(if my-global-hungry-delete-mode\n (if delete-selection-mode\n (progn\n (global-hungry-delete-mode nil)\n (add-hook 'activate-mark-hook 'turn-off-hungry-delete-mode)\n (add-hook 'deactivate-mark-hook 'turn-on-hungry-delete-mode))\n (progn\n (global-hungry-delete-mode t)\n (remove-hook 'activate-mark-hook 'turn-off-hungry-delete-mode)\n (remove-hook 'deactivate-mark-hook 'turn-on-hungry-delet-mode)))\n (global-hungry-delete-mode nil))\n\n\n(setq setup-hungry-delete-loaded t)\n(provide 'setup-hungry-delete)\n","subject":"Update the code to add\/remove hooks. It works but it uses the delete-selection-mode value at emacs startup. If that mode is deactivated in an emacs session, this file has to be loaded again manually.","message":"Update the code to add\/remove hooks. It works but it uses the\ndelete-selection-mode value at emacs startup. If that mode is\ndeactivated in an emacs session, this file has to be loaded again manually.\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"cd7252c02b333d99b4e70f4a5fa852b2a42cdb71","old_file":"lisp\/init-projectile.el","new_file":"lisp\/init-projectile.el","old_contents":"(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-mode)\n\n (after-load 'projectile\n (define-key projectile-mode-map (kbd \"C-c C-p\") 'projectile-command-map)\n\n ;; Shorter modeline\n (setq-default\n projectile-mode-line\n '(:eval\n (if (file-remote-p default-directory)\n \" Proj\"\n (format \" Proj[%s]\" (projectile-project-name))))))\n\n (maybe-require-package 'ibuffer-projectile))\n\n\n(provide 'init-projectile)\n","new_contents":"(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-mode)\n\n (after-load 'projectile\n (define-key projectile-mode-map (kbd \"C-c C-p\") 'projectile-command-map)\n\n ;; Shorter modeline\n (setq-default projectile-mode-line-lighter \" Proj\"))\n\n (maybe-require-package 'ibuffer-projectile))\n\n\n(provide 'init-projectile)\n","subject":"Set shorter projectile mode lighter more idiomatically","message":"Set shorter projectile mode lighter more idiomatically\n\nCloses #620\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"braveoyster\/emacs.d,mmqmzk\/emacs.d,krzysz00\/emacs.d,blueabysm\/emacs.d,cjqw\/emacs.d,emuio\/emacs.d,purcell\/emacs.d,gsmlg\/emacs.d,sgarciac\/emacs.d,arthurl\/emacs.d,wegatron\/emacs.d,kongfy\/emacs.d,kindoblue\/emacs.d,lust4life\/emacs.d,me020523\/emacs.d,qianwan\/emacs.d,benkha\/emacs.d,svenyurgensson\/emacs.d,blueseason\/emacs.d,baohaojun\/emacs.d,dcorking\/emacs.d"} {"commit":"8fbab4dcc2a08413366633218af0980071201084","old_file":"setup-files\/setup-page-break-lines.el","new_file":"setup-files\/setup-page-break-lines.el","old_contents":";; Time-stamp: <2015-05-06 11:50:36 kmodi>\n\n;; Show actual lines instead of the page break char ^L\n;; https:\/\/github.com\/purcell\/page-break-lines\n\n(use-package page-break-lines\n :config\n (progn\n (setq page-break-lines-modes\n '(emacs-lisp-mode\n lisp-mode\n scheme-mode\n compilation-mode\n outline-mode\n help-mode\n text-mode\n fundamental-mode\n special-mode))\n ;; Calling `global-page-break-lines-mode' will enable `page-break-mode'\n ;; automatically in all the modes listed in `page-break-lines-modes' var\n (global-page-break-lines-mode)))\n\n\n(provide 'setup-page-break-lines)\n","new_contents":";; Time-stamp: <2015-06-09 14:55:27 kmodi>\n\n;; Show actual lines instead of the page break char ^L\n;; https:\/\/github.com\/purcell\/page-break-lines\n\n(use-package page-break-lines\n :config\n (progn\n (setq page-break-lines-modes '(emacs-lisp-mode\n lisp-mode\n scheme-mode\n compilation-mode\n outline-mode\n help-mode\n text-mode\n fundamental-mode\n special-mode))\n\n ;; Fix the issue of page break rule wrapping across multiple lines\n ;; - Above fix doesn't work -- Tue Jun 09 14:03:38 EDT 2015 - kmodi\n ;; (set-fontset-font \"fontset-default\"\n ;; (cons page-break-lines-char page-break-lines-char)\n ;; (face-attribute 'default :family))\n\n ;; Calling `global-page-break-lines-mode' will enable `page-break-mode'\n ;; automatically in all the modes listed in `page-break-lines-modes' var\n (global-page-break-lines-mode)))\n\n\n(provide 'setup-page-break-lines)\n","subject":"Make a note on the issue of wrapping page ln rule","message":"Make a note on the issue of wrapping page ln rule\n\n- Using the fix suggested by the package author did not work for me\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"05954ea77e17929bb3c1d2da1f0b1cfd13112204","old_file":"user-lisp\/movement-customisations.el","new_file":"user-lisp\/movement-customisations.el","old_contents":";; avy -- quickly jump to an arbitrary word or line\n(require 'avy)\n(setq avy-case-fold-search nil)\n(setq avy-keys\n (append (number-sequence ?a ?z) (number-sequence ?A ?Z)))\n(define-key global-map (kbd \"\") #'avy-goto-word-or-subword-1)\n(define-key global-map (kbd \"C-c \") #'avy-goto-line)\n\n;; I use next\/previous-line and forward\/backward-char an awful lot\n;; according to `keyfreq-show'. Allow these commands to be repeated,\n;; so 'C-n n' is equivalent to 'C-n C-n' and so on.\n(global-set-key\n (kbd \"C-n\")\n (defhydra hydra-move\n (:body-pre (next-line))\n \"move\"\n (\"n\" next-line)\n (\"p\" previous-line)\n (\"f\" forward-char)\n (\"b\" backward-char)\n (\"a\" beginning-of-line-dwim)\n (\"e\" move-end-of-line)\n (\"v\" scroll-up-command)\n ;; Converting M-v to V here by analogy.\n (\"V\" scroll-down-command)))\n\n\n(provide 'movement-customisations)\n","new_contents":";; avy -- quickly jump to an arbitrary word or line\n(require 'avy)\n(setq avy-case-fold-search nil)\n(setq avy-keys\n (append (number-sequence ?a ?z) (number-sequence ?A ?Z)))\n(define-key global-map (kbd \"\") #'avy-goto-word-or-subword-1)\n(define-key global-map (kbd \"C-c \") #'avy-goto-line)\n\n;; I use next\/previous-line and forward\/backward-char an awful lot\n;; according to `keyfreq-show'. Allow these commands to be repeated,\n;; so 'C-n n' is equivalent to 'C-n C-n' and so on.\n;;\n;; Similar to god-mode, but specialised to just a whitelist of\n;; movement commands.\n(global-set-key\n (kbd \"C-n\")\n (defhydra hydra-move\n (:body-pre (next-line))\n \"move\"\n (\"n\" next-line)\n (\"p\" previous-line)\n (\"f\" forward-char)\n (\"b\" backward-char)\n (\"a\" beginning-of-line-dwim)\n (\"e\" move-end-of-line)\n (\"v\" scroll-up-command)\n ;; Converting M-v to V here by analogy.\n (\"V\" scroll-down-command)\n (\"l\" recenter-top-bottom)))\n\n\n(provide 'movement-customisations)\n","subject":"Use C-l mapping in our hydra movement cluster.","message":"Use C-l mapping in our hydra movement cluster.\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"3c0bfa08c0a1cd367cebe6c13117a47328b8c16c","old_file":"setup-files\/setup-nim.el","new_file":"setup-files\/setup-nim.el","old_contents":";; Time-stamp: <2018-05-24 11:56:21 kmodi>\n\n;; Nim\n;; https:\/\/github.com\/nim-lang\/nim-mode\n\n(use-package nim-mode\n :ensure t\n :mode ((\"\\\\.nim\\\\'\" . nim-mode))\n :chords (:map nim-mode-map\n (\"??\" . devdocs-lookup))\n :config\n (progn\n (with-eval-after-load 'smart-compile\n (add-to-list 'smart-compile-alist\n '(nim-mode . \"nim c --verbosity:0 %f\")))\n\n (when (executable-find \"nimsuggest\")\n (setq nim-nimsuggest-path (executable-find \"nimsuggest\"))\n ;; Currently nimsuggest doesn't support nimscript files, so only nim-mode ..\n ;; nimsuggest will provide hints in the minibuffer using `eldoc-mode'.\n (add-hook 'nim-mode-hook #'nimsuggest-mode)\n ;; (remove-hook 'nim-mode-hook #'nimsuggest-mode)\n )\n\n (use-package ob-nim\n :ensure t\n :config\n (progn\n (with-eval-after-load 'setup-org\n (add-to-list 'modi\/ob-enabled-languages \"nim\" :append))))))\n\n\n(provide 'setup-nim)\n","new_contents":";; Time-stamp: <2018-05-24 11:56:21 kmodi>\n\n;; Nim\n;; https:\/\/github.com\/nim-lang\/nim-mode\n\n(use-package nim-mode\n :ensure t\n :mode ((\"\\\\.nim\\\\'\" . nim-mode))\n :config\n (progn\n (bind-chords\n :map nim-mode-map\n (\"??\" . devdocs-lookup))\n (with-eval-after-load 'smart-compile\n (add-to-list 'smart-compile-alist\n '(nim-mode . \"nim c --verbosity:0 %f\")))\n\n (when (executable-find \"nimsuggest\")\n (setq nim-nimsuggest-path (executable-find \"nimsuggest\"))\n ;; Currently nimsuggest doesn't support nimscript files, so only nim-mode ..\n ;; nimsuggest will provide hints in the minibuffer using `eldoc-mode'.\n (add-hook 'nim-mode-hook #'nimsuggest-mode)\n ;; (remove-hook 'nim-mode-hook #'nimsuggest-mode)\n )\n\n (use-package ob-nim\n :ensure t\n :config\n (progn\n (with-eval-after-load 'setup-org\n (add-to-list 'modi\/ob-enabled-languages \"nim\" :append))))))\n\n\n(provide 'setup-nim)\n","subject":"Fix the binding of devdocs-lookup in nim-mode","message":"Fix the binding of devdocs-lookup in nim-mode\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"2bec55227cd2ac80a38749bff1d01b7108003320","old_file":"emacs.d\/personal\/functions\/key-bindings.el","new_file":"emacs.d\/personal\/functions\/key-bindings.el","old_contents":";;;###autoload\n(defun personal\/bind-key (prefix keys binding)\n \"Binds a command with a prefix to a non-controlled and controlled version this helps with god-mode\"\n (let* ((lst (split-string keys \" \"))\n (ctrl-keys (mapconcat (lambda (key) (if (= (length key) 1)\n (concat \"C-\" key)\n key)) lst \" \"))\n (capital-meta-keys (mapconcat (lambda (key) (cond ((and (= (length key) 1)\n (equal (upcase key) key))\n (concat \"M-\" (downcase key)))\n ((= (length key) 1)\n (concat \"C-\" key))\n (t key))) lst \" \")))\n (global-set-key (kbd (concat prefix \" \" keys)) binding)\n (global-set-key (kbd (concat prefix \" \" ctrl-keys)) binding)\n (global-set-key (kbd (concat prefix \" \" capital-meta-keys)) binding)))\n","new_contents":";;;###autoload\n(defun personal\/bind-key (prefix keys binding)\n \"Binds a command with a prefix to a non-controlled and controlled version this helps with god-mode\"\n (let* ((lst (split-string keys \" \")))\n (global-set-key (kbd (concat prefix \" \" keys)) binding)))\n","subject":"Remove god mode keybinding helpers","message":"Remove god mode keybinding helpers\n","lang":"Emacs Lisp","license":"mit","repos":"caleb\/dotfiles,caleb\/dotfiles,caleb\/dotfiles"} {"commit":"c9fcd412450ddde9856b10a7ca08d84a7875124d","old_file":".config\/emacs\/core.el","new_file":".config\/emacs\/core.el","old_contents":"(setq inhibit-startup-message t)\n\n;; theme\n(if (file-exists-p \"~\/.light\")\n (setq-default frame-background-mode 'light)\n (setq-default frame-background-mode 'dark))\n(if (file-exists-p \"~\/.light\")\n (load-theme 'solarized-light t)\n (load-theme 'solarized-dark t))\n\n;; display\n(setq display-time-24hr-format t)\n(unless window-system\n (menu-bar-mode -1)\n (if (functionp 'scroll-bar-mode)\n (scroll-bar-mode 0)))\n(if (functionp 'tool-bar-mode)\n (tool-bar-mode 0))\n\n;; backup\n(setq backup-directory-alist\n `((\".*\" . ,temporary-file-directory)))\n\n;; tab-complete\n(setq ac-auto-start 3)\n\n;; whitespace\n(setq-default show-trailing-whitespace t)\n(setq require-final-newline t)\n","new_contents":"(setq inhibit-startup-message t)\n\n;; theme\n(if (file-exists-p \"~\/.light\")\n (setq-default frame-background-mode 'light)\n (setq-default frame-background-mode 'dark))\n(if (file-exists-p \"~\/.light\")\n (load-theme 'solarized-light t)\n (load-theme 'solarized-dark t))\n\n;; display\n(setq display-time-24hr-format t)\n(unless window-system\n (menu-bar-mode -1)\n (if (functionp 'scroll-bar-mode)\n (scroll-bar-mode 0)))\n(if (functionp 'tool-bar-mode)\n (tool-bar-mode 0))\n\n;; backup\n(setq backup-directory-alist\n `((\".*\" . ,temporary-file-directory)))\n(setq auto-save-file-name-transforms\n `((\".*\" ,temporary-file-directory t)))\n\n;; tab-complete\n(setq ac-auto-start 3)\n\n;; whitespace\n(setq-default show-trailing-whitespace t)\n(setq require-final-newline t)\n","subject":"Move all emacs temp files to \/tmp","message":"Move all emacs temp files to \/tmp\n","lang":"Emacs Lisp","license":"mit","repos":"spapanik\/configuration,spapanik\/configuration"} {"commit":"6a9b848a22ebac6dad98c996f52e01d296062326","old_file":".emacs.d\/lisp\/package\/dependencies.el","new_file":".emacs.d\/lisp\/package\/dependencies.el","old_contents":"(defvar kotct\/dependency-list\n '(linum-off ;; turn linum off in certain modes\n ido-vertical-mode ;; use vertical menus for ido\n ido-grid-mode ;; use a grid selection menu for ido\n smex ;; ido-enabled M-x\n anzu ;; nicer search environment\n volatile-highlights ;; highlight changed areas\n buffer-move ;; easily move buffers between windows\n expand-region ;; expand region to successively larger sexps\n magit ;; make Git and Emacs both way cooler\n auto-complete ;; code autocompletion\n markdown-mode ;; major mode for markdown\n smart-tabs-mode ;; indentation with tabs and spaces\n ace-jump-mode ;; immediately jump to any visible character\n ace-jump-zap ;; zap-to-char but harnessing ace-jump\n editorconfig ;; editorconfig plugin\n hl-todo ;; highlight TODO, FIXME, FAIL, etc.\n highlight-symbol ;; navigate between and highlight symbols\n web-mode ;; for editing web files\n elixir-mode ;; for editing Elixir code\n rust-mode ;; for editing Rust code\n buttercup ;; for tests\n smartparens ;; for dealing with paired control flow symbols\n gitignore-mode ;; for editing .gitignore files\n gitattributes-mode ;; for editing .gitattributes files\n gitconfig-mode ;; for editing .git\/config files\n\n ;; THEMES\n solarized-theme)\n \"A list of all packages required for operation.\")\n\n(provide 'dependencies)\n","new_contents":"(defvar kotct\/dependency-list\n '(linum-off ;; turn linum off in certain modes\n ido-vertical-mode ;; use vertical menus for ido\n ido-grid-mode ;; use a grid selection menu for ido\n smex ;; ido-enabled M-x\n anzu ;; nicer search environment\n volatile-highlights ;; highlight changed areas\n buffer-move ;; easily move buffers between windows\n expand-region ;; expand region to successively larger sexps\n magit ;; make Git and Emacs both way cooler\n auto-complete ;; code autocompletion\n markdown-mode ;; major mode for markdown\n smart-tabs-mode ;; indentation with tabs and spaces\n ace-jump-mode ;; immediately jump to any visible character\n ace-jump-zap ;; zap-to-char but harnessing ace-jump\n editorconfig ;; editorconfig plugin\n hl-todo ;; highlight TODO, FIXME, FAIL, etc.\n highlight-symbol ;; navigate between and highlight symbols\n web-mode ;; for editing web files\n elixir-mode ;; for editing Elixir code\n rust-mode ;; for editing Rust code\n yaml-mode ;; for editing YAML files\n buttercup ;; for tests\n smartparens ;; for dealing with paired control flow symbols\n gitignore-mode ;; for editing .gitignore files\n gitattributes-mode ;; for editing .gitattributes files\n gitconfig-mode ;; for editing .git\/config files\n\n ;; THEMES\n solarized-theme)\n \"A list of all packages required for operation.\")\n\n(provide 'dependencies)\n","subject":"Add yaml-mode to the dependency list","message":"Add yaml-mode to the dependency list","lang":"Emacs Lisp","license":"mit","repos":"kotct\/dot,kotct\/dot"} {"commit":"2077a859d804eb6da617ae0855e3c4f7f010a26b","old_file":"modules\/ui\/pretty-code\/autoload\/hasklig.el","new_file":"modules\/ui\/pretty-code\/autoload\/hasklig.el","old_contents":";;; ui\/pretty-code\/autoload\/hasklig.el -*- lexical-binding: t; -*-\n\n(defvar +pretty-code--hasklig-font-names\n '(\n \"Hasklig-Black.otf\"\n \"Hasklig-BlackIt.otf\"\n \"Hasklig-Bold.otf\"\n \"Hasklig-BoldIt.otf\"\n \"Hasklig-ExtraLight.otf\"\n \"Hasklig-ExtraLightIt.otf\"\n \"Hasklig-It.otf\"\n \"Hasklig-Light.otf\"\n \"Hasklig-LightIt.otf\"\n \"Hasklig-Medium.otf\"\n \"Hasklig-MediumIt.otf\"\n \"Hasklig-Regular.otf\"\n \"Hasklig-Semibold.otf\"\n \"Hasklig-SemiboldIt.otf\"))\n\n;;;###autoload\n(defun +pretty-code\/install-hasklig-font (&optional prefix)\n \"Download and install Hasklig font based on OS.\nWhen prefix is non-nil, ignore the prompt and just install.\"\n (interactive \"P\")\n (+pretty-code--install-font\n prefix\n \"FiraCode\"\n \"https:\/\/github.com\/jsravn\/hasklig-emacs\/raw\/33354a3\/%s\"\n +pretty-code--hasklig-font-names))\n","new_contents":";;; ui\/pretty-code\/autoload\/hasklig.el -*- lexical-binding: t; -*-\n\n(defvar +pretty-code--hasklig-font-names\n '(\n \"Hasklig-Black.otf\"\n \"Hasklig-BlackIt.otf\"\n \"Hasklig-Bold.otf\"\n \"Hasklig-BoldIt.otf\"\n \"Hasklig-ExtraLight.otf\"\n \"Hasklig-ExtraLightIt.otf\"\n \"Hasklig-It.otf\"\n \"Hasklig-Light.otf\"\n \"Hasklig-LightIt.otf\"\n \"Hasklig-Medium.otf\"\n \"Hasklig-MediumIt.otf\"\n \"Hasklig-Regular.otf\"\n \"Hasklig-Semibold.otf\"\n \"Hasklig-SemiboldIt.otf\"))\n\n;;;###autoload\n(defun +pretty-code\/install-hasklig-font (&optional prefix)\n \"Download and install Hasklig font based on OS.\nWhen prefix is non-nil, ignore the prompt and just install.\"\n (interactive \"P\")\n (+pretty-code--install-font\n prefix\n \"Hasklig\"\n \"https:\/\/github.com\/jsravn\/hasklig-emacs\/raw\/33354a3\/%s\"\n +pretty-code--hasklig-font-names))\n","subject":"Fix type in Hasklig install messages","message":"Fix type in Hasklig install messages\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs"} {"commit":"cb45e28514c0ef18a19a2b2cf83b2f1bf301c717","old_file":"emacs\/.emacs.d\/config\/my-magit.el","new_file":"emacs\/.emacs.d\/config\/my-magit.el","old_contents":";; magit - It's Magit! A Git porcelain inside Emacs\n;; https:\/\/github.com\/magit\/magit\n(use-package magit\n :ensure magit\n :config\n (progn\n (evil-set-initial-state 'magit-mode 'normal)\n (evil-set-initial-state 'magit-status-mode 'normal)\n (evil-set-initial-state 'magit-diff-mode 'normal)\n (evil-set-initial-state 'magit-log-mode 'normal)\n (evil-define-key 'normal magit-mode-map\n \"j\" 'magit-goto-next-section\n \"k\" 'magit-goto-previous-section)\n (evil-define-key 'normal magit-log-mode-map\n \"j\" 'magit-goto-next-section\n \"k\" 'magit-goto-previous-section)\n (evil-define-key 'normal magit-diff-mode-map\n \"j\" 'magit-goto-next-section\n \"k\" 'magit-goto-previous-section)))\n\n(provide 'my-magit)\n","new_contents":";; magit - It's Magit! A Git porcelain inside Emacs\n;; https:\/\/github.com\/magit\/magit\n(use-package magit\n :ensure magit\n :config\n (progn\n (evil-set-initial-state 'magit-mode 'normal)\n (evil-set-initial-state 'magit-status-mode 'normal)\n (evil-set-initial-state 'magit-diff-mode 'normal)\n (evil-set-initial-state 'magit-log-mode 'normal)\n (evil-define-key 'normal magit-mode-map\n \"j\" 'magit-section-forward\n \"k\" 'magit-section-backward)\n (evil-define-key 'normal magit-log-mode-map\n \"j\" 'magit-section-forward\n \"k\" 'magit-section-backward)\n (evil-define-key 'normal magit-diff-mode-map\n \"j\" 'magit-section-forward\n \"k\" 'magit-section-backward)))\n\n(provide 'my-magit)\n","subject":"Change magit bindings to call proper functions","message":"Change magit bindings to call proper functions\n","lang":"Emacs Lisp","license":"unlicense","repos":"Llewxamris\/dotfiles"} {"commit":"acdac9f48a33e5c9742f7f9a3a212308a2944ec4","old_file":"lisp\/init-projectile.el","new_file":"lisp\/init-projectile.el","old_contents":"(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-mode)\n\n ;; Shorter modeline\n (setq-default projectile-mode-line-lighter \" Proj\")\n\n (after-load 'projectile\n (define-key projectile-mode-map (kbd \"C-c C-p\") 'projectile-command-map))\n\n (maybe-require-package 'ibuffer-projectile))\n\n\n(provide 'init-projectile)\n","new_contents":"(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-mode)\n\n ;; Shorter modeline\n (setq-default projectile-mode-line-prefix \" Proj\")\n\n (after-load 'projectile\n (define-key projectile-mode-map (kbd \"C-c C-p\") 'projectile-command-map))\n\n (maybe-require-package 'ibuffer-projectile))\n\n\n(provide 'init-projectile)\n","subject":"Use projectile-mode-line-prefix to set projectile mode line","message":"Use projectile-mode-line-prefix to set projectile mode line\n\nprojectile-mode-line-lighter is obsolete\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"baohaojun\/emacs.d,benkha\/emacs.d,svenyurgensson\/emacs.d,blueseason\/emacs.d,braveoyster\/emacs.d,qianwan\/emacs.d,blueabysm\/emacs.d,lust4life\/emacs.d,mmqmzk\/emacs.d,cjqw\/emacs.d,sgarciac\/emacs.d,arthurl\/emacs.d,me020523\/emacs.d,kongfy\/emacs.d,gsmlg\/emacs.d,emuio\/emacs.d,kindoblue\/emacs.d,krzysz00\/emacs.d,purcell\/emacs.d,wegatron\/emacs.d,dcorking\/emacs.d"} {"commit":"3bd8d6608824910d8ac5c13113c5c9a53cd29a55","old_file":"lisp\/ui.el","new_file":"lisp\/ui.el","old_contents":";; don't show the startup help screen\n(setq inhibit-startup-screen t)\n\n;; mode line settings\n(column-number-mode t)\n(line-number-mode t)\n(size-indication-mode t)\n\n;; remove clutter from the UI\n(menu-bar-mode -1)\n(tool-bar-mode -1)\n(tooltip-mode -1)\n(scroll-bar-mode -1)\n(set-fringe-style -1)\n\n;; blinking cursor\n(blink-cursor-mode t)\n\n;; enable mouse gestures in terminal\n(require 'mouse)\n(xterm-mouse-mode t)\n\n;; disable alarm bell beep\n(setq visible-bell nil)\n\n;; use Monaco font in Mac OS X\n(when (eq system-type 'darwin)\n (set-default-font \"Monaco\"))\n\n;; my theme of choice\n(load-theme 'zenburn t)\n","new_contents":";; don't show the startup help screen\n(setq inhibit-startup-screen t)\n\n;; mode line settings\n(column-number-mode t)\n(line-number-mode t)\n(size-indication-mode t)\n\n;; remove clutter from the UI\n(menu-bar-mode -1)\n(tool-bar-mode -1)\n(tooltip-mode -1)\n(scroll-bar-mode -1)\n(set-fringe-style -1)\n\n;; blinking cursor\n(blink-cursor-mode t)\n\n;; enable mouse gestures in terminal\n(require 'mouse)\n(xterm-mouse-mode t)\n\n;; disable alarm bell beep\n(setq ring-bell-function 'ignore)\n\n;; use Monaco font in Mac OS X\n(when (eq system-type 'darwin)\n (set-default-font \"Monaco\"))\n\n;; my theme of choice\n(load-theme 'zenburn t)\n","subject":"Disable the alarm bell completely","message":"Disable the alarm bell completely\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"danielfm\/dotfiles-emacs"} {"commit":"295a26de51dfd3f2840737a4bcf7157795c40915","old_file":"init-haskell.el","new_file":"init-haskell.el","old_contents":"(require-package 'haskell-mode)\n\n(dolist (hook '(haskell-mode-hook inferior-haskell-mode-hook))\n (add-hook hook 'turn-on-haskell-doc-mode))\n\n(add-auto-mode 'haskell-mode \"\\\\.ghci\\\\'\")\n\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)\n(add-hook 'haskell-mode-hook (lambda () (subword-mode +1)))\n\n(after-load 'haskell-mode\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle))\n\n(when (eval-when-compile (>= emacs-major-version 24))\n (require-package 'ghci-completion)\n (add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion))\n\n\n;; Make compilation-mode understand \"at blah.hs:11:34-50\" lines output by GHC\n(after-load 'compile\n (let ((alias 'ghc-at-regexp))\n (add-to-list\n 'compilation-error-regexp-alist-alist\n (list alias \" at \\\\(.*\\\\.\\\\(?:l?[gh]hs\\\\|hi\\\\)\\\\):\\\\([0-9]+\\\\):\\\\([0-9]+\\\\)-[0-9]+$\" 1 2 3 0 1))\n (add-to-list\n 'compilation-error-regexp-alist alias)))\n\n(provide 'init-haskell)\n","new_contents":"(require-package 'haskell-mode)\n\n(dolist (hook '(haskell-mode-hook inferior-haskell-mode-hook))\n (add-hook hook 'turn-on-haskell-doc-mode))\n\n(add-auto-mode 'haskell-mode \"\\\\.ghci\\\\'\")\n\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)\n(add-hook 'haskell-mode-hook (lambda () (subword-mode +1)))\n\n(after-load 'haskell-mode\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle))\n\n(when (eval-when-compile (>= emacs-major-version 24))\n (require-package 'ghci-completion)\n (add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion))\n\n(eval-after-load 'page-break-lines\n '(push 'haskell-mode page-break-lines-modes))\n\n;; Make compilation-mode understand \"at blah.hs:11:34-50\" lines output by GHC\n(after-load 'compile\n (let ((alias 'ghc-at-regexp))\n (add-to-list\n 'compilation-error-regexp-alist-alist\n (list alias \" at \\\\(.*\\\\.\\\\(?:l?[gh]hs\\\\|hi\\\\)\\\\):\\\\([0-9]+\\\\):\\\\([0-9]+\\\\)-[0-9]+$\" 1 2 3 0 1))\n (add-to-list\n 'compilation-error-regexp-alist alias)))\n\n(provide 'init-haskell)\n","subject":"Enable page-break-lines-mode in haskell buffers","message":"Enable page-break-lines-mode in haskell buffers\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"kindoblue\/emacs.d,bibaijin\/emacs.d,farzadbekran\/emacs.d,jkaessens\/emacs.d,farzadbekran\/emacs.d,gsmlg\/emacs.d,cyjia\/emacs.d,purcell\/emacs.d,dcorking\/emacs.d,carlosliu\/emacs.d,jhpx\/emacs.d,baohaojun\/emacs.d,benkha\/emacs.d,farzadbekran\/emacs.d,hophacker\/emacs.d,farzadbekran\/emacs.d,cjqw\/emacs.d,renatoriccio\/emacs.d,me020523\/emacs.d,lust4life\/emacs.d,Togal\/emacs.d,shafayetkhan\/emacs.d,whizzzkid\/emacs.d,blueabysm\/emacs.d,ilove0518\/emacs.d,Werewolflsp\/emacs.d,boblannon\/emacs.d,jachinpy\/emacs.d,scorpionis\/emacs.d,ruiyang\/emacs.d,dongdonghu\/.emacs.d,46do14\/emacs.d,dhanunjaya\/emacs.d,LKI\/emacs.d,Jadecity\/PurcellEmacs.d,svenyurgensson\/emacs.d,arthurl\/emacs.d,braveoyster\/emacs.d,zhuoyikang\/emacs.d,mmqmzk\/emacs.d,Guoozz\/emacs.d,hkcqr\/emacs.d,DarkThrone\/emacs.d,farzadbekran\/emacs.d,caoyuanqi\/emacs.d,jthetzel\/emacs.d,modkzs\/emcs.d,danfengcao\/emacs.d,fengxl\/emacs.d,jachinpy\/emacs.d,LittleLmp\/emacs.d,wegatron\/emacs.d,Enzo-Liu\/emacs.d,sgarciac\/emacs.d,wenpincui\/emacs.d,atreeyang\/emacs.d,pairyo\/emacs.d,mpwang\/emacs.d,ernest-dzf\/emacs.d,Shanicky\/emacs.d,zenith-john\/emacs.d,qinshulei\/emacs.d,haodaivshen\/emacs.d,exclamaforte\/emacs.d,qianwan\/emacs.d,lujianmei\/emacs.d,roxolan\/emacs.d,zhaotai\/.emacs.d,ruiyang\/emacs.d,alant\/emacs.d,lromang\/emacs.d,emuio\/emacs.d,kongfy\/emacs.d,krzysz00\/emacs.d,blueseason\/emacs.d"} {"commit":"7fb90668f51cb1a95d6d482b7bc6df0d39bf8107","old_file":"init-package\/init-rainbow-delimiters.el","new_file":"init-package\/init-rainbow-delimiters.el","old_contents":"(defun turn-on-rainbow-delimiters-mode ()\n (interactive)\n (rainbow-delimiters-mode 1))\n\n(setq-default frame-background-mode 'dark)\n(let ((supported-modes '(emacs-lisp-mode-hook\n clojure-mode-hook\n javascript-mode-hook\n lisp-mode-hook\n python-mode-hook\n erlang-mode-hook)))\n (dolist (hook supported-modes)\n (add-hook hook 'turn-on-rainbow-delimiters-mode)))\n","new_contents":"(defun turn-on-rainbow-delimiters-mode ()\n (interactive)\n (rainbow-delimiters-mode 1))\n\n(setq-default frame-background-mode 'dark)\n(let ((supported-modes '(c-mode-common-hook\n emacs-lisp-mode-hook\n clojure-mode-hook\n javascript-mode-hook\n lisp-mode-hook\n python-mode-hook\n erlang-mode-hook)))\n (dolist (hook supported-modes)\n (add-hook hook 'turn-on-rainbow-delimiters-mode)))\n","subject":"Add c modes to rainbow delimiters mode","message":"Add c modes to rainbow delimiters mode\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"1ea76e40d85d2a471df96620074a8d68c1d2a347","old_file":"radian-emacs\/radian-python.el","new_file":"radian-emacs\/radian-python.el","old_contents":";;; radian-python.el --- Support for Python\n\n(require 'radian-autocomplete)\n(require 'radian-package)\n\n;; Integrated development environment for Python.\n(use-package anaconda-mode\n :defer-install t\n :commands (anaconda-mode)\n :init\n\n ;; Enable the functionality of anaconda-mode in Python buffers, as\n ;; suggested in the README [1].\n ;;\n ;; [1]: https:\/\/github.com\/proofit404\/anaconda-mode\n (add-hook 'python-mode-hook #'anaconda-mode)\n\n :diminish anaconda-mode)\n\n;; Company integration for anaconda-mode.\n(use-package company-anaconda\n :recipe (:fetcher github\n :repo \"raxod502\/company-anaconda\"\n :branch \"radian-1\")\n :defer-install t\n :commands (company-anaconda)\n :init\n\n (with-eval-after-load 'company\n ;; Enable the functionality of company-anaconda in Python buffers,\n ;; as suggested in the README [1].\n ;;\n ;; [1]: https:\/\/github.com\/proofit404\/company-anaconda\n\n (defun radian--enable-company-anaconda ()\n (add-to-list 'company-backends #'company-anaconda))\n\n (add-hook 'python-mode-hook #'radian--enable-company-anaconda)))\n\n(provide 'radian-python)\n\n;;; radian-python.el ends here\n","new_contents":";;; radian-python.el --- Support for Python\n\n(require 'radian-autocomplete)\n(require 'radian-package)\n\n;; Integrated development environment for Python.\n(use-package anaconda-mode\n :defer-install t\n :commands (anaconda-mode)\n :init\n\n ;; Enable the functionality of anaconda-mode in Python buffers, as\n ;; suggested in the README [1].\n ;;\n ;; [1]: https:\/\/github.com\/proofit404\/anaconda-mode\n (add-hook 'python-mode-hook #'anaconda-mode)\n\n :diminish anaconda-mode)\n\n;; Company integration for anaconda-mode.\n(use-package company-anaconda\n :defer-install t\n :commands (company-anaconda)\n :init\n\n (with-eval-after-load 'company\n ;; Enable the functionality of company-anaconda in Python buffers,\n ;; as suggested in the README [1].\n ;;\n ;; [1]: https:\/\/github.com\/proofit404\/company-anaconda\n\n (defun radian--enable-company-anaconda ()\n (add-to-list 'company-backends #'company-anaconda))\n\n (add-hook 'python-mode-hook #'radian--enable-company-anaconda)))\n\n(provide 'radian-python)\n\n;;; radian-python.el ends here\n","subject":"Stop using my fork of company-anaconda","message":"Stop using my fork of company-anaconda\n","lang":"Emacs Lisp","license":"mit","repos":"raxod502\/radian,raxod502\/radian"} {"commit":"6ca17cf2cda01dadb23bff500e8eeb7504de553e","old_file":"emacs\/jbarnette.el","new_file":"emacs\/jbarnette.el","old_contents":"(put 'erase-buffer 'disabled nil)\n\n(global-set-key (kbd \"C-x f\") 'find-file-at-point)\n(global-set-key (kbd \"C-x m\") 'magit-status)\n(global-set-key (kbd \"M-s\") 'fixup-whitespace)\n\n(add-hook 'ruby-mode-hook 'ruby-electric-mode)\n\n(setenv \"PAGER\" \"\/bin\/cat\")\n(server-start)\n","new_contents":"(put 'erase-buffer 'disabled nil)\n\n(global-set-key (kbd \"C-x f\") 'find-file-at-point)\n(global-set-key (kbd \"C-x m\") 'magit-status)\n(global-set-key (kbd \"M-s\") 'fixup-whitespace)\n\n(add-hook 'ruby-mode-hook 'ruby-electric-mode)\n\n(defun copy-from-osx ()\n (shell-command-to-string \"pbpaste\"))\n\n(defun paste-to-osx (text &optional push)\n (let ((process-connection-type nil))\n (let ((proc (start-process \"pbcopy\" \"*Messages*\" \"pbcopy\")))\n (process-send-string proc text)\n (process-send-eof proc))))\n\n(setq interprogram-cut-function 'paste-to-osx)\n(setq interprogram-paste-function 'copy-from-osx)\n\n(setenv \"PAGER\" \"\/bin\/cat\")\n(server-start)\n","subject":"Integrate cut\/copy\/paste with the OS.","message":"Integrate cut\/copy\/paste with the OS.\n","lang":"Emacs Lisp","license":"mit","repos":"tsnow\/dotfiles,tsnow\/dotfiles,tsnow\/dotfiles"} {"commit":"822092184c7c816edd5d50a7c6a1149155389b26","old_file":"emacs\/emacs.d\/pmade-server.el","new_file":"emacs\/emacs.d\/pmade-server.el","old_contents":"(defun pmade-server-start ()\n (when window-system\n (add-hook 'server-visit-hook 'save-place-find-file-hook)\n (server-start)))\n\n(setq server-use-tcp t\n server-host (if (string= \"hawkins.pmade.com\" system-name)\n \"10.0.1.10\" system-name))\n\n(add-hook 'after-init-hook 'pmade-server-start)\n","new_contents":"(defun pmade-server-start ()\n (when window-system\n (add-hook 'server-visit-hook 'save-place-find-file-hook)\n (server-start)))\n\n(setq server-use-tcp t\n server-host (if (string= \"hawkins\" system-name)\n \"10.0.1.10\" system-name))\n\n(add-hook 'after-init-hook 'pmade-server-start)\n","subject":"Make up your mind emacs, what does system-name return?","message":"Make up your mind emacs, what does system-name return?\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"4d092d38d37a19caf68e7bd4d9ffcc963b6ded38","old_file":"core\/lib\/macros-auto-insert.el","new_file":"core\/lib\/macros-auto-insert.el","old_contents":";;; macros-auto-insert.el\n;; for ..\/core-auto-insert.el\n\n;;;###autoload\n(defmacro add-template! (regexp-or-major-mode uuid yas-mode &optional project-only)\n `(define-auto-insert ,regexp-or-major-mode\n (lambda ()\n (unless (or (and ,project-only (not (narf\/project-p)))\n (not (or (eq major-mode ,yas-mode)\n (symbol-value ,yas-mode))))\n (insert ,uuid)\n (yas-expand-from-trigger-key)\n (if (string-equal ,uuid (s-trim (buffer-string)))\n (erase-buffer)\n (evil-insert-state 1))))))\n\n(provide 'macros-auto-insert)\n;;; macros-auto-insert.el ends here\n","new_contents":";;; macros-auto-insert.el\n;; for ..\/core-auto-insert.el\n\n;;;###autoload\n(defmacro add-template! (regexp-or-major-mode uuid yas-mode &optional project-only)\n `(define-auto-insert ,regexp-or-major-mode\n (lambda ()\n (unless (or (and ,project-only (not (narf\/project-p)))\n (not (or (eq major-mode ,yas-mode)\n (and (boundp ,yas-mode)\n (symbol-value ,yas-mode)))))\n (insert ,uuid)\n (yas-expand-from-trigger-key)\n (if (string-equal ,uuid (s-trim (buffer-string)))\n (erase-buffer)\n (evil-insert-state 1))))))\n\n(provide 'macros-auto-insert)\n;;; macros-auto-insert.el ends here\n","subject":"Fix error checking minor-mode for file templates","message":"Fix error checking minor-mode for file templates\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,keoko\/.emacs.d,keoko\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,aminb\/.emacs.d,hlissner\/.emacs.d,keoko\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,keoko\/.emacs.d,keoko\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,keoko\/.emacs.d,aminb\/.emacs.d,hlissner\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,keoko\/.emacs.d,keoko\/.emacs.d,UndeadKernel\/emacs_doom"} {"commit":"231841cbe58325e2b1bf43ee1cba462e9420c669","old_file":"config\/newemacs\/settings\/elpy-settings.el","new_file":"config\/newemacs\/settings\/elpy-settings.el","old_contents":"(use-package elpy\n :config\n (elpy-enable))\n\n(provide 'elpy-settings)\n","new_contents":"(use-package elpy\n :config\n (delete `elpy-module-highlight-indentation elpy-modules)\n (elpy-enable))\n\n(provide 'elpy-settings)\n","subject":"Remove python indent highlight module","message":"Remove python indent highlight module\n","lang":"Emacs Lisp","license":"mit","repos":"rogerzanoni\/dotfiles"} {"commit":"c4c6b0d80b7edd7f7a80bfaa58a8b0c80d7ea415","old_file":"layers\/my-lsp\/packages.el","new_file":"layers\/my-lsp\/packages.el","old_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-lsp-packages '(company-lsp\n lsp-mode\n lsp-treemacs))\n\n(defun my-lsp\/post-init-company-lsp ()\n (setq company-lsp-cache-candidates 'auto))\n\n(defun my-lsp\/post-init-lsp-mode ()\n (setq lsp-restart 'ignore))\n\n(defun my-lsp\/post-init-lsp-treemacs ()\n (with-eval-after-load 'treemacs\n (with-eval-after-load 'lsp-mode\n (lsp-treemacs-sync-mode))))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-lsp-packages '(company-lsp\n lsp-mode\n lsp-treemacs))\n\n(defun my-lsp\/post-init-company-lsp ()\n (setq company-lsp-cache-candidates 'auto))\n\n(defun my-lsp\/post-init-lsp-mode ()\n (setq lsp-restart 'ignore)\n (with-eval-after-load 'lsp-mode\n (spacemacs\/set-leader-keys-for-minor-mode 'lsp-mode\n \"hd\" #'lsp-ui-doc-glance)))\n\n(defun my-lsp\/post-init-lsp-treemacs ()\n (with-eval-after-load 'treemacs\n (with-eval-after-load 'lsp-mode\n (lsp-treemacs-sync-mode))))\n","subject":"Add a key binding to show thing-at-point documentation via lsp","message":"Add a key binding to show thing-at-point documentation via lsp\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"7e324d3c3b20caaeccdac72cfce00cbdc749bf6b","old_file":"init-sql.el","new_file":"init-sql.el","old_contents":"(require-package 'sql-indent)\n(eval-after-load 'sql\n '(load-library \"sql-indent\"))\n\n(eval-after-load 'sql\n '(when (featurep 'dash-at-point)\n (defun sanityinc\/maybe-set-dash-db-docset ()\n (when (eq sql-product 'postgres)\n (setq dash-at-point-docset \"psql\")))\n\n (add-hook 'sql-mode-hook 'sanityinc\/maybe-set-dash-db-docset)\n (add-hook 'sql-interactive-mode-hook 'sanityinc\/maybe-set-dash-db-docset)\n (defadvice sql-set-product (after set-dash-docset activate)\n (sanityinc\/maybe-set-dash-db-docset))))\n\n\n(provide 'init-sql)\n","new_contents":"(require-package 'sql-indent)\n(eval-after-load 'sql\n '(load-library \"sql-indent\"))\n\n(eval-after-load 'sql\n '(when (package-installed-p 'dash-at-point)\n (defun sanityinc\/maybe-set-dash-db-docset ()\n (when (eq sql-product 'postgres)\n (setq dash-at-point-docset \"psql\")))\n\n (add-hook 'sql-mode-hook 'sanityinc\/maybe-set-dash-db-docset)\n (add-hook 'sql-interactive-mode-hook 'sanityinc\/maybe-set-dash-db-docset)\n (defadvice sql-set-product (after set-dash-docset activate)\n (sanityinc\/maybe-set-dash-db-docset))))\n\n\n(provide 'init-sql)\n","subject":"Use package-installed-p to detect dash-at-point","message":"Use package-installed-p to detect dash-at-point\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"Enzo-Liu\/emacs.d,ruiyang\/emacs.d,zhaotai\/.emacs.d,cjqw\/emacs.d,modkzs\/emcs.d,LittleLmp\/emacs.d,mpwang\/emacs.d,ruiyang\/emacs.d,farzadbekran\/emacs.d,Togal\/emacs.d,pairyo\/emacs.d,mmqmzk\/emacs.d,ernest-dzf\/emacs.d,zenith-john\/emacs.d,boblannon\/emacs.d,carlosliu\/emacs.d,purcell\/emacs.d,wenpincui\/emacs.d,me020523\/emacs.d,Guoozz\/emacs.d,jachinpy\/emacs.d,lujianmei\/emacs.d,46do14\/emacs.d,hkcqr\/emacs.d,Shanicky\/emacs.d,danfengcao\/emacs.d,baohaojun\/emacs.d,zhuoyikang\/emacs.d,jkaessens\/emacs.d,renatoriccio\/emacs.d,shafayetkhan\/emacs.d,caoyuanqi\/emacs.d,sgarciac\/emacs.d,lust4life\/emacs.d,DarkThrone\/emacs.d,haodaivshen\/emacs.d,exclamaforte\/emacs.d,dcorking\/emacs.d,gsmlg\/emacs.d,dhanunjaya\/emacs.d,braveoyster\/emacs.d,krzysz00\/emacs.d,farzadbekran\/emacs.d,hophacker\/emacs.d,roxolan\/emacs.d,qinshulei\/emacs.d,cyjia\/emacs.d,farzadbekran\/emacs.d,emuio\/emacs.d,kindoblue\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,whizzzkid\/emacs.d,scorpionis\/emacs.d,alant\/emacs.d,wegatron\/emacs.d,blueseason\/emacs.d,svenyurgensson\/emacs.d,Jadecity\/PurcellEmacs.d,atreeyang\/emacs.d,dongdonghu\/.emacs.d,ilove0518\/emacs.d,jachinpy\/emacs.d,bibaijin\/emacs.d,LKI\/emacs.d,jhpx\/emacs.d,arthurl\/emacs.d,benkha\/emacs.d,fengxl\/emacs.d,blueabysm\/emacs.d,Werewolflsp\/emacs.d,kongfy\/emacs.d,qianwan\/emacs.d,jthetzel\/emacs.d,lromang\/emacs.d"} {"commit":"141d8f06355f5b62f131b736e6de8c6a7b691a7e","old_file":"settings\/shortcut-file.el","new_file":"settings\/shortcut-file.el","old_contents":"(defhydra hydra-file-shortcuts (:color teal\n :columns 4)\n \"files\"\n (\"s\" (switch-to-buffer \"*scratch*\") \"scratch\" :exit t)\n (\"e\" (find-file \"~\/Library\/Preferences\/Aquamacs Emacs\/Preferences.el\") \".emacs\" :exit t)\n (\"b\" (find-file \"~\/.bashrc\") \"bashrc\" :exit t)\n (\"n\" (find-file \"~\/workspace\/org\/notes.org\") \"notes\" :exit t)\n (\"c\" (find-file \"~\/.ssh\/config\") \"SSH Config\" :exit t)\n (\"D\" (find-file \"\/d\") \"\/d\" :exit t)\n (\"q\" nil \"quit\" :color blue))\n(global-set-key (kbd \"s-\/\") 'hydra-file-shortcuts\/body)\n\n(provide 'shortcut-file)\n","new_contents":"(defhydra hydra-file-shortcuts (:color teal\n :columns 4)\n \"files\"\n (\"s\" (switch-to-buffer \"*scratch*\") \"scratch\" :exit t)\n (\"e\" (find-file \"~\/Library\/Preferences\/Aquamacs Emacs\/Preferences.el\") \".emacs\" :exit t)\n (\"b\" (find-file \"~\/.bash\/interactive\") \"bashrc\" :exit t)\n (\"n\" (find-file \"~\/workspace\/org\/notes.org\") \"notes\" :exit t)\n (\"c\" (find-file \"~\/.ssh\/config\") \"SSH Config\" :exit t)\n (\"D\" (find-file \"\/d\") \"\/d\" :exit t)\n (\"q\" nil \"quit\" :color blue))\n(global-set-key (kbd \"s-\/\") 'hydra-file-shortcuts\/body)\n\n(provide 'shortcut-file)\n","subject":"Set bashrc shortcut to ~\/.bash\/interactive","message":"Set bashrc shortcut to ~\/.bash\/interactive\n","lang":"Emacs Lisp","license":"mit","repos":"hsienchiaolee\/aquamacs"} {"commit":"0178438913ff6156a30fd0c2970cca22158854c9","old_file":"init-misc.el","new_file":"init-misc.el","old_contents":";;----------------------------------------------------------------------------\n;; Misc config - yet to be placed in separate files\n;;----------------------------------------------------------------------------\n(add-auto-mode 'tcl-mode \"Portfile\\\\'\")\n(fset 'yes-or-no-p 'y-or-n-p)\n\n(dolist (hook (if (fboundp 'prog-mode)\n '(prog-mode-hook ruby-mode-hook)\n '(find-file-hooks)))\n (add-hook hook 'goto-address-prog-mode))\n(add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)\n(setq goto-address-mail-face 'link)\n\n(setq-default regex-tool-backend 'perl)\n\n\n(provide 'init-misc)\n","new_contents":";;----------------------------------------------------------------------------\n;; Misc config - yet to be placed in separate files\n;;----------------------------------------------------------------------------\n(add-auto-mode 'tcl-mode \"Portfile\\\\'\")\n(fset 'yes-or-no-p 'y-or-n-p)\n\n(dolist (hook (if (fboundp 'prog-mode)\n '(prog-mode-hook ruby-mode-hook)\n '(find-file-hooks)))\n (add-hook hook 'goto-address-prog-mode))\n(add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)\n(setq goto-address-mail-face 'link)\n\n(setq-default regex-tool-backend 'perl)\n\n(add-auto-mode 'conf-mode \"Procfile\")\n\n\n(provide 'init-misc)\n","subject":"Use conf-mode for foreman's Procfile","message":"Use conf-mode for foreman's Procfile\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d,roxolan\/emacs.d,purcell\/emacs.d,haodaivshen\/emacs.d,ruiyang\/emacs.d,zhuoyikang\/emacs.d,blueabysm\/emacs.d,exclamaforte\/emacs.d,arthurl\/emacs.d,jachinpy\/emacs.d,fengxl\/emacs.d,Guoozz\/emacs.d,Werewolflsp\/emacs.d,farzadbekran\/emacs.d,caoyuanqi\/emacs.d,mmqmzk\/emacs.d,cyjia\/emacs.d,bibaijin\/emacs.d,46do14\/emacs.d,Enzo-Liu\/emacs.d,Shanicky\/emacs.d,farzadbekran\/emacs.d,alant\/emacs.d,jhpx\/emacs.d,jkaessens\/emacs.d,shafayetkhan\/emacs.d,dhanunjaya\/emacs.d,baohaojun\/emacs.d,krzysz00\/emacs.d,wenpincui\/emacs.d,Jadecity\/PurcellEmacs.d,whizzzkid\/emacs.d,scorpionis\/emacs.d,dcorking\/emacs.d,kindoblue\/emacs.d,boblannon\/emacs.d,ilove0518\/emacs.d,qinshulei\/emacs.d,qianwan\/emacs.d,dongdonghu\/.emacs.d,jachinpy\/emacs.d,zenith-john\/emacs.d,hkcqr\/emacs.d,DarkThrone\/emacs.d,hophacker\/emacs.d,cjqw\/emacs.d,ernest-dzf\/emacs.d,kongfy\/emacs.d,LittleLmp\/emacs.d,lromang\/emacs.d,sgarciac\/emacs.d,me020523\/emacs.d,modkzs\/emcs.d,wegatron\/emacs.d,renatoriccio\/emacs.d,farzadbekran\/emacs.d,gsmlg\/emacs.d,danfengcao\/emacs.d,benkha\/emacs.d,jthetzel\/emacs.d,LKI\/emacs.d,pairyo\/emacs.d,zhaotai\/.emacs.d,carlosliu\/emacs.d,lust4life\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,atreeyang\/emacs.d,lujianmei\/emacs.d,svenyurgensson\/emacs.d,mpwang\/emacs.d,emuio\/emacs.d,braveoyster\/emacs.d,ruiyang\/emacs.d,Togal\/emacs.d"} {"commit":"5a01cb828d1841b1fb17e985b7893e61d8f36556","old_file":"emacs\/.emacs.d\/config\/my-autocomplete.el","new_file":"emacs\/.emacs.d\/config\/my-autocomplete.el","old_contents":";;; company: Modular in-buffer completion framework for Emacs\n;;; http:\/\/company-mode.github.io\/\n(use-package company\n :ensure t\n :config\n (progn\n (add-hook 'after-init-hook 'global-company-mode)))\n\n;;; yasnippet: A template system for Emacs\n;;; https:\/\/github.com\/joaotavora\/yasnippet\n(use-package yasnippet\n :ensure t\n :config\n (progn\n (yas-global-mode 1)))\n\n;;; yasnippet-snippets: a collection of yasnippet snippets for many languages\n;;; https:\/\/github.com\/AndreaCrotti\/yasnippet-snippets\n(use-package yasnippet-snippets\n :ensure t)\n\n(provide 'my-autocomplete)\n","new_contents":";;; company: Modular in-buffer completion framework for Emacs\n;;; http:\/\/company-mode.github.io\/\n(use-package company\n :ensure t\n :config\n (progn\n (add-hook 'after-init-hook 'global-company-mode)\n (evil-define-key 'insert 'company-active-map\n (kbd \"C-j\") 'company-select-next\n (kbd \"C-k\") 'company-select-previous)))\n\n;;; yasnippet: A template system for Emacs\n;;; https:\/\/github.com\/joaotavora\/yasnippet\n(use-package yasnippet\n :ensure t\n :config\n (progn\n (yas-global-mode 1)))\n\n;;; yasnippet-snippets: a collection of yasnippet snippets for many languages\n;;; https:\/\/github.com\/AndreaCrotti\/yasnippet-snippets\n(use-package yasnippet-snippets\n :ensure t)\n\n(provide 'my-autocomplete)\n","subject":"Change company keybindings to be more vim-like","message":"Change company keybindings to be more vim-like\n","lang":"Emacs Lisp","license":"unlicense","repos":"Llewxamris\/dotfiles"} {"commit":"ab9dc56ad52e06134c694824053a1c822d722a1e","old_file":"init-lisp.el","new_file":"init-lisp.el","old_contents":";; pretty lambda (see also slime) -> \"λ\"\n;; 'greek small letter lambda' \/ utf8 cebb \/ unicode 03bb -> \\u03BB \/ mule?!\n;; in greek-iso8859-7 -> 107 > 86 ec\n(defun pretty-lambdas ()\n (font-lock-add-keywords\n nil `((\"(\\\\(lambda\\\\>\\\\)\"\n (0 (progn (compose-region (match-beginning 1) (match-end 1)\n ,(make-char 'greek-iso8859-7 107))\n 'font-lock-keyword-face))))))\n\n(autoload 'paredit-mode \"paredit\"\n \"Minor mode for pseudo-structurally editing Lisp code.\" t)\n\n(defun enable-paredit (keymap)\n (paredit-mode +1)\n (define-key keymap (kbd \"RET\") 'paredit-newline))\n\n(add-hook 'emacs-lisp-mode-hook 'pretty-lambdas)\n(add-hook 'emacs-lisp-mode-hook (lambda () (enable-paredit emacs-lisp-mode-map)))\n\n\n(provide 'init-lisp)\n","new_contents":";; pretty lambda (see also slime) -> \"λ\"\n;; 'greek small letter lambda' \/ utf8 cebb \/ unicode 03bb -> \\u03BB \/ mule?!\n;; in greek-iso8859-7 -> 107 > 86 ec\n(defun pretty-lambdas ()\n (font-lock-add-keywords\n nil `((\"(\\\\(lambda\\\\>\\\\)\"\n (0 (progn (compose-region (match-beginning 1) (match-end 1)\n ,(make-char 'greek-iso8859-7 107))\n 'font-lock-keyword-face))))))\n\n(autoload 'paredit-mode \"paredit\"\n \"Minor mode for pseudo-structurally editing Lisp code.\" t)\n\n(defun enable-paredit (keymap)\n (paredit-mode +1)\n (define-key keymap (kbd \"RET\") 'paredit-newline))\n\n(add-hook 'emacs-lisp-mode-hook 'pretty-lambdas)\n(add-hook 'emacs-lisp-mode-hook (lambda () (enable-paredit emacs-lisp-mode-map)))\n\n\n(add-hook 'emacs-lisp-mode-hook 'turn-on-eldoc-mode)\n(add-hook 'lisp-interaction-mode-hook 'turn-on-eldoc-mode)\n\n\n(provide 'init-lisp)\n","subject":"Use eldoc mode to provide inline help in emacs-lisp-mode","message":"Use eldoc mode to provide inline help in emacs-lisp-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zenith-john\/emacs.d,qianwan\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,whizzzkid\/emacs.d,danfengcao\/emacs.d,lust4life\/emacs.d,kongfy\/emacs.d,farzadbekran\/emacs.d,Enzo-Liu\/emacs.d,renatoriccio\/emacs.d,carlosliu\/emacs.d,boblannon\/emacs.d,bibaijin\/emacs.d,jachinpy\/emacs.d,wenpincui\/emacs.d,mpwang\/emacs.d,scorpionis\/emacs.d,mmqmzk\/emacs.d,caoyuanqi\/emacs.d,atreeyang\/emacs.d,dongdonghu\/.emacs.d,Shanicky\/emacs.d,blueabysm\/emacs.d,jachinpy\/emacs.d,jkaessens\/emacs.d,YangXin\/emacs.d,alant\/emacs.d,fengxl\/emacs.d,zuoshifan\/emacs.d,arthurl\/emacs.d,emuio\/emacs.d,lujianmei\/emacs.d,wegatron\/emacs.d,Togal\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,svenyurgensson\/emacs.d,zuoshifan\/emacs.d,Guoozz\/emacs.d,farzadbekran\/emacs.d,modkzs\/emcs.d,benkha\/emacs.d,shafayetkhan\/emacs.d,farzadbekran\/emacs.d,dcorking\/emacs.d,farzadbekran\/emacs.d,cjqw\/emacs.d,cyjia\/emacs.d,zhaotai\/.emacs.d,hkcqr\/emacs.d,Werewolflsp\/emacs.d,LKI\/emacs.d,purcell\/emacs.d,ilove0518\/emacs.d,me020523\/emacs.d,YangXin\/emacs.d,ruiyang\/emacs.d,zuoshifan\/emacs.d,lromang\/emacs.d,gsmlg\/emacs.d,zuoshifan\/emacs.d,dhanunjaya\/emacs.d,haodaivshen\/emacs.d,46do14\/emacs.d,kindoblue\/emacs.d,blueseason\/emacs.d,pairyo\/emacs.d,jthetzel\/emacs.d,ernest-dzf\/emacs.d,zhuoyikang\/emacs.d,LittleLmp\/emacs.d,DarkThrone\/emacs.d,Jadecity\/PurcellEmacs.d,krzysz00\/emacs.d,jhpx\/emacs.d,sgarciac\/emacs.d,hophacker\/emacs.d,exclamaforte\/emacs.d,ruiyang\/emacs.d,qinshulei\/emacs.d,baohaojun\/emacs.d,braveoyster\/emacs.d,roxolan\/emacs.d"} {"commit":"c9a87637b904a03313ee5c3a98310694f092a5a8","old_file":"init-misc.el","new_file":"init-misc.el","old_contents":";;----------------------------------------------------------------------------\n;; Misc config - yet to be placed in separate files\n;;----------------------------------------------------------------------------\n(add-auto-mode 'tcl-mode \"Portfile$\")\n(fset 'yes-or-no-p 'y-or-n-p)\n(add-hook 'find-file-hooks 'goto-address-prog-mode)\n(add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)\n(setq goto-address-mail-face 'link)\n\n(autoload 'mwe:log-keyboard-commands \"mwe-log-commands\"\n \"Log commands executed in the current buffer\" t)\n\n(show-paren-mode 1)\n(setq show-paren-style 'parenthesis)\n(setq show-paren-delay 0)\n(column-number-mode 1)\n\n(provide 'init-misc)\n","new_contents":";;----------------------------------------------------------------------------\n;; Misc config - yet to be placed in separate files\n;;----------------------------------------------------------------------------\n(add-auto-mode 'tcl-mode \"Portfile$\")\n(fset 'yes-or-no-p 'y-or-n-p)\n(add-hook 'find-file-hooks 'goto-address-prog-mode)\n(add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)\n(setq goto-address-mail-face 'link)\n\n(autoload 'mwe:log-keyboard-commands \"mwe-log-commands\"\n \"Log commands executed in the current buffer\" t)\n\n(column-number-mode 1)\n\n(provide 'init-misc)\n","subject":"Remove show-paren settings that sometimes made editing unresponsive","message":"Remove show-paren settings that sometimes made editing unresponsive\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"farzadbekran\/emacs.d,zuoshifan\/emacs.d,wegatron\/emacs.d,whizzzkid\/emacs.d,gsmlg\/emacs.d,LKI\/emacs.d,lust4life\/emacs.d,zhaotai\/.emacs.d,zuoshifan\/emacs.d,caoyuanqi\/emacs.d,Guoozz\/emacs.d,dhanunjaya\/emacs.d,svenyurgensson\/emacs.d,exclamaforte\/emacs.d,farzadbekran\/emacs.d,mmqmzk\/emacs.d,emuio\/emacs.d,pairyo\/emacs.d,farzadbekran\/emacs.d,jhpx\/emacs.d,modkzs\/emcs.d,fengxl\/emacs.d,alant\/emacs.d,kindoblue\/emacs.d,mpwang\/emacs.d,zuoshifan\/emacs.d,dcorking\/emacs.d,zuoshifan\/emacs.d,hkcqr\/emacs.d,krzysz00\/emacs.d,atreeyang\/emacs.d,ruiyang\/emacs.d,YangXin\/emacs.d,wenpincui\/emacs.d,shafayetkhan\/emacs.d,qianwan\/emacs.d,jachinpy\/emacs.d,bibaijin\/emacs.d,lujianmei\/emacs.d,roxolan\/emacs.d,zuoshifan\/emacs.d,46do14\/emacs.d,renatoriccio\/emacs.d,scorpionis\/emacs.d,danfengcao\/emacs.d,braveoyster\/emacs.d,benkha\/emacs.d,YangXin\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,haodaivshen\/emacs.d,Shanicky\/emacs.d,ilove0518\/emacs.d,purcell\/emacs.d,Werewolflsp\/emacs.d,ruiyang\/emacs.d,blueseason\/emacs.d,ernest-dzf\/emacs.d,carlosliu\/emacs.d,lromang\/emacs.d,zuoshifan\/emacs.d,sgarciac\/emacs.d,hophacker\/emacs.d,qinshulei\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,boblannon\/emacs.d,Enzo-Liu\/emacs.d,me020523\/emacs.d,blueabysm\/emacs.d,zhuoyikang\/emacs.d,Jadecity\/PurcellEmacs.d,cyjia\/emacs.d,jachinpy\/emacs.d,DarkThrone\/emacs.d,baohaojun\/emacs.d,dongdonghu\/.emacs.d,Togal\/emacs.d,zuoshifan\/emacs.d,zenith-john\/emacs.d,arthurl\/emacs.d,jkaessens\/emacs.d,cjqw\/emacs.d,jthetzel\/emacs.d,kongfy\/emacs.d,LittleLmp\/emacs.d"} {"commit":"ee11d104986f708e153630515ed179bc14f73225","old_file":"emacs\/cust-java-mode.el","new_file":"emacs\/cust-java-mode.el","old_contents":";;\n;; cust-java-mode.el\n;;\n\n;; Java keywords:\n(setq cust-java-font-lock-keywords\n (list\n '(\"^class \\\\([a-zA-Z0-9]*\\\\)\" 1 'bold-italic t)\n '(\"\\\\(public\\\\|private\\\\|protected\\\\|package\\\\)\" 1 'bold-LightSteelBlue2-face t)\n '(\"::\" . 'Thistle2-face)\n '(\"\\\\<\\\\(catch\\\\|try\\\\|throw\\\\)\" 1 'Plum2-face t)\n ))\n\n(font-lock-add-keywords 'java-mode cust-java-font-lock-keywords)\n\n;; Function to generate header:\n(defun java-insert-file-header () \n (interactive)\n \"Inserts some lines for a header, including VCS info, author, date and copyright.\"\n (insert \n \"\/\/____________________________________________________________________ \n\/\/ File: \" (buffer-name) \"\n\/\/____________________________________________________________________ \n\/\/ \n\/\/ Author: \" (user-full-name) \" <\" user-mail-address \">\n\/\/ Update: \" (format-time-string \"%Y-%m-%d %T%z\") \"\n\/\/ Revision: $Id\" \"$ \n\/\/\n\/\/ Copyright: \" (format-time-string \"%Y\") \" (C) \" (user-full-name) \"\n\/\/\n\/\/--------------------------------------------------------------------\n\"))\n\n;;\n(add-hook 'java-mode-hook\n\t (function (lambda ()\n\t\t (require 'easymenu)\n\t\t (easy-menu-define java-menu java-mode-map \"Java Menu\"\n\t\t\t'(\"Insert\"\n\t\t\t [\"Insert File Header\" java-insert-file-header t]\n\t\t\t ))\n\t\t ;;\n\t\t (define-key java-mode-map \"\\C-m\" 'newline-and-indent))))\n;;\n(setq auto-mode-alist (append '((\"\\\\.java\\\\'\" . java-mode))\n\t\t\t auto-mode-alist))\n\n;;\n;; End of cust-java-mode.el\n;;\n","new_contents":";;\n;; cust-java-mode.el\n;;\n\n;; Java keywords:\n(setq cust-java-font-lock-keywords\n (list\n '(\"^class \\\\([a-zA-Z0-9]*\\\\)\" 1 'bold-italic t)\n '(\"\\\\(public\\\\|private\\\\|protected\\\\|package\\\\)\" 1 'bold-LightSteelBlue2-face t)\n '(\"::\" . 'Thistle2-face)\n '(\"\\\\<\\\\(catch\\\\|try\\\\|throw\\\\)\" 1 'Plum2-face t)\n ))\n\n(font-lock-add-keywords 'java-mode cust-java-font-lock-keywords)\n;;\n(add-hook 'java-mode-hook\n\t (function (lambda ()\n\t\t ;;\n\t\t (define-key java-mode-map \"\\C-m\" 'newline-and-indent))))\n;;\n;; End of cust-java-mode.el\n;;\n","subject":"Remove Java insert-file-header function - moved to auto-insert customizations.","message":"Remove Java insert-file-header function - moved to auto-insert customizations.\n","lang":"Emacs Lisp","license":"mit","repos":"shaunashby\/Desktop-Env,shaunashby\/Desktop-Env,shaunashby\/Desktop-Env,shaunashby\/Desktop-Env"} {"commit":"11ff294f7d039d9997aeded0a5561e97ca77635c","old_file":"modules\/tools\/ansible\/config.el","new_file":"modules\/tools\/ansible\/config.el","old_contents":";;; tools\/ansible\/config.el -*- lexical-binding: t; -*-\n\n(use-package! ansible\n :commands ansible-auto-decrypt-encrypt\n :init\n (put 'ansible-vault-password-file 'safe-local-variable #'stringp)\n :config\n (setq ansible-section-face 'font-lock-variable-name-face\n ansible-task-label-face 'font-lock-doc-face)\n (map! :map ansible-key-map\n :localleader\n :desc \"Decrypt buffer\" \"d\" #'ansible-decrypt-buffer\n :desc \"Encrypt buffer\" \"e\" #'ansible-encrypt-buffer\n :desc \"Look up in Ansible docs\" \"h\" #'ansible-doc))\n\n\n(after! ansible-doc\n (set-evil-initial-state! '(ansible-doc-module-mode) 'emacs))\n\n\n(use-package! jinja2-mode\n :mode \"\\\\.j2$\"\n :config\n ;; The default behavior is to reindent the whole buffer on save. This is\n ;; disruptive and imposing. There are indentation commands available; the user\n ;; can decide when they want their code reindented.\n (setq jinja2-enable-indent-on-save nil))\n\n\n(def-project-mode! +ansible-yaml-mode\n :modes '(yaml-mode)\n :add-hooks '(ansible ansible-auto-decrypt-encrypt ansible-doc-mode)\n :files (\"roles\/\"))\n","new_contents":";;; tools\/ansible\/config.el -*- lexical-binding: t; -*-\n\n(use-package! ansible\n :commands ansible-auto-decrypt-encrypt\n :init\n (put 'ansible-vault-password-file 'safe-local-variable #'stringp)\n :config\n (setq ansible-section-face 'font-lock-variable-name-face\n ansible-task-label-face 'font-lock-doc-face)\n (map! :map ansible-key-map\n :localleader\n :desc \"Decrypt buffer\" \"d\" #'ansible-decrypt-buffer\n :desc \"Encrypt buffer\" \"e\" #'ansible-encrypt-buffer\n :desc \"Look up in Ansible docs\" \"h\" #'ansible-doc))\n\n\n(after! ansible-doc\n (set-evil-initial-state! '(ansible-doc-module-mode) 'emacs))\n\n\n(use-package! jinja2-mode\n :mode \"\\\\.j2$\"\n :config\n ;; The default behavior is to reindent the whole buffer on save. This is\n ;; disruptive and imposing. There are indentation commands available; the user\n ;; can decide when they want their code reindented.\n (setq jinja2-enable-indent-on-save nil))\n\n\n(def-project-mode! +ansible-yaml-mode\n :modes '(yaml-mode)\n :add-hooks '(ansible ansible-auto-decrypt-encrypt ansible-doc-mode)\n :files (or \"roles\/\" \"tasks\/main.yml\"))\n","subject":"Add detection for projects that are ansible roles","message":"Add detection for projects that are ansible roles\n\nAnsible roles _often_ have a `tasks\/main.yml` file in them, and benefit\nfrom some of the nice ansible syntax highlighting.\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs"} {"commit":"6dc349dc1f2eea3bb53836e032cf535978d9174f","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"((cperl-mode . ((cperl-indent-level . 3)\n )))\n","new_contents":"((cperl-mode . ((cperl-indent-level . 3)\n ))\n (perl-mode . ((perl-indent-level . 3)\n )))\n","subject":"Add emacs config for perl-mode","message":"Add emacs config for perl-mode\n\n... because people might use perl-mode instead of cperl-mode\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"matrix-org\/sytest,matrix-org\/sytest"} {"commit":"01ced5f82a3f76afd058c551a919770cf59e4a20","old_file":"user-lisp\/org-customisations.el","new_file":"user-lisp\/org-customisations.el","old_contents":"(require 'org)\n\n(setq org-return-follows-link t)\n\n;; Syntax highlight org code snippets.\n(setq org-src-fontify-natively t)\n\n(provide 'org-customisations)\n","new_contents":"(require 'org)\n\n(setq org-return-follows-link t)\n\n;; Syntax highlight org code snippets.\n(setq org-src-fontify-natively t)\n\n;; Allow running code in sh and python\n(require 'ob-sh)\n(require 'ob-python)\n\n(provide 'org-customisations)\n","subject":"Allow sh and python code snippets in org-mode.","message":"Allow sh and python code snippets in org-mode.\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"5ba641583d8612831690ea6e9ea1be194a1e92df","old_file":"Emacs\/init.el","new_file":"Emacs\/init.el","old_contents":";; Gosin's Emacs Configuration 2021\/01\/09\n;; add ELPA and MELPA package repos\n(setq package-archives\n '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t(\"melpa\" . \"http:\/\/melpa.org\/packages\/\")))\n\n;; user solarized dark color theme\n(add-to-list 'custom-theme-load-path \"~\/.emacs.d\/solarized_theme\")\n(set-terminal-parameter nil 'background-mode 'dark)\n(set-frame-parameter nil 'background-mode 'dark)\n(load-theme 'solarized t)\n\n;; define three useful commands(from org guide)\n(global-set-key (kbd \"C-c l\") 'org-store-link)\n(global-set-key (kbd \"C-c a\") 'org-agenda)\n(global-set-key (kbd \"C-c c\") 'org-capture)\n\n(custom-set-variables\n ;; score apropos results by relavance.\n '(apropos-sort-by-scores t)\n ;; show line numbers.\n '(global-display-line-numbers-mode t)\n ;; save back up files to temporary directories.\n '(backup-directory-alist `((\".*\" . ,temporary-file-directory))))\n","new_contents":";; Gosin's Emacs Configuration 2021\/01\/09\n;; add ELPA and MELPA package repos\n(setq package-archives\n '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t(\"melpa\" . \"http:\/\/melpa.org\/packages\/\")))\n\n;; user solarized dark color theme\n(add-to-list 'custom-theme-load-path \"~\/.emacs.d\/solarized_theme\")\n(set-terminal-parameter nil 'background-mode 'dark)\n(set-frame-parameter nil 'background-mode 'dark)\n(load-theme 'solarized t)\n\n;; define three useful commands(from org guide)\n(global-set-key (kbd \"C-c l\") 'org-store-link)\n(global-set-key (kbd \"C-c a\") 'org-agenda)\n(global-set-key (kbd \"C-c c\") 'org-capture)\n\n(custom-set-variables\n ;; score apropos results by relavance.\n '(apropos-sort-by-scores t)\n ;; show line numbers.\n '(global-display-line-numbers-mode t)\n ;; save back up files to temporary directories.\n '(backup-directory-alist `((\".*\" . ,temporary-file-directory))))\n\n;; remap keys for iTerm 2\n;; use cat -v or ctrl-v to show the sequence in iTerm 2.\n;; replace ^[ with \\e\n(define-key input-decode-map \"\\e[1;9A\" [M-up])\n(define-key input-decode-map \"\\e[1;9B\" [M-down])\n(define-key input-decode-map \"\\e[1;9C\" [M-right])\n(define-key input-decode-map \"\\e[1;9D\" [M-left])\n","subject":"Add keymappings for iTerm 2","message":"Add keymappings for iTerm 2\n","lang":"Emacs Lisp","license":"mit","repos":"Gosin\/Vim4Gosin"} {"commit":"512e651f9a58a470eae3a7ae2a7cf32dde6317e8","old_file":"emacs.d\/ui.el","new_file":"emacs.d\/ui.el","old_contents":"(load \"~\/.emacs.d\/fira_init.el\")\n\n;; (set-frame-font \"Fira Code:size=10\")\n(setq default-frame-alist '((font . \"Fira Code:size=12\")))\n(scroll-bar-mode 0)\n(menu-bar-mode 0)\n(tool-bar-mode 0)\n\n(global-linum-mode 1)\n(show-paren-mode 1)\n(global-hl-line-mode 1)\n\n(setq-default fill-column 80)\n\n(setq initial-scratch-message \"\")\n(setq inhibit-startup-message t)\n\n(setq scroll-conservatively 101)\n(setq scroll-margin 5)\n\n(setq visible-bell t)\n","new_contents":"(setq default-frame-alist '((font . \"Fira Code:size=12\")))\n(defun my-correct-symbol-bounds (pretty-alist)\n (mapcar (lambda (el)\n (setcdr el (string ?\\t (cdr el)))\n el)\n pretty-alist))\n(defun my-ligature-list (ligatures codepoint-start)\n (let ((codepoints (-iterate '1+ codepoint-start (length ligatures))))\n (-zip-pair ligatures codepoints)))\n(setq my-hasklig-ligatures\n (let* ((ligs '(\"&&\" \"***\" \"*>\" \"\\\\\\\\\" \"||\" \"|>\" \"::\"\n \"==\" \"===\" \"==>\" \"=>\" \"=<<\" \"!!\" \">>\"\n \">>=\" \">>>\" \">>-\" \">-\" \"->\" \"-<\" \"-<<\"\n \"<*\" \"<*>\" \"<|\" \"<|>\" \"<$>\" \"<>\" \"<-\"\n \"<<\" \"<<<\" \"<+>\" \"..\" \"...\" \"++\" \"+++\"\n \"\/=\" \":::\" \">=>\" \"->>\" \"<=>\" \"<=<\" \"<->\")))\n (my-correct-symbol-bounds (my-ligature-list ligs #Xe100))))\n\n(defun my-set-hasklig-ligatures ()\n (setq prettify-symbols-alist\n (append my-hasklig-ligatures prettify-symbols-alist))\n (prettify-symbols-mode))\n\n(add-hook 'prog-mode-hook 'my-set-hasklig-ligatures)\n\n(scroll-bar-mode 0)\n(menu-bar-mode 0)\n(tool-bar-mode 0)\n\n(global-linum-mode 1)\n(show-paren-mode 1)\n(global-hl-line-mode 1)\n\n(setq-default fill-column 80)\n\n(setq initial-scratch-message \"\")\n(setq inhibit-startup-message t)\n\n(setq scroll-conservatively 101)\n(setq scroll-margin 5)\n\n(setq visible-bell t)\n","subject":"Add hasklig font mappings to emacs; switch font to hasklig","message":"emacs: Add hasklig font mappings to emacs; switch font to hasklig\n","lang":"Emacs Lisp","license":"mit","repos":"bbenne10\/dotfiles,bbenne10\/dotfiles"} {"commit":"81d6cb84df20971b72e31921b6d0b076a7e15821","old_file":"init-package\/init-evil-leader.el","new_file":"init-package\/init-evil-leader.el","old_contents":"(setq evil-leader\/in-all-states t\n evil-leader\/leader \"SPC\"\n evil-leader\/non-normal-prefix \"s-\")\n(require 'evil-leader)\n;; make leader available in visual mode\n(define-key evil-visual-state-map (kbd \"SPC\") evil-leader\/map)\n;; Unset shortcuts which shadow evil leader\n(eval-after-load \"compile\"\n (define-key compilation-mode-map (kbd \"SPC\") nil))\n","new_contents":"(setq evil-leader\/in-all-states t\n evil-leader\/leader \"SPC\"\n evil-leader\/non-normal-prefix \"s-\")\n(require 'evil-leader)\n;; Unset shortcuts which shadow evil leader\n(eval-after-load \"compile\"\n (define-key compilation-mode-map (kbd \"SPC\") nil))\n;; make leader available in visual mode\n(define-key evil-visual-state-map (kbd \"SPC\") evil-leader\/map)\n(define-key evil-motion-state-map (kbd \"SPC\") evil-leader\/map)\n(define-key evil-emacs-state-map (kbd \"SPC\") evil-leader\/map)\n","subject":"Add evil leader to emacs and motion states.","message":"Add evil leader to emacs and motion states.\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"ee1dbb3ea31926d1421f5881441af89d73915879","old_file":"setup-files\/setup-pcache.el","new_file":"setup-files\/setup-pcache.el","old_contents":";; Time-stamp: <2015-05-22 13:01:06 kmodi>\n\n;; Pcache\n\n(use-package pcache\n :init\n (progn\n (setq pcache-directory (let ((dir (concat user-emacs-directory\n \"var_\" emacs-version-short \"\/pcache\/\")))\n (make-directory dir :parents)\n dir))))\n\n\n(provide 'setup-pcache)\n","new_contents":";; Time-stamp: <2015-12-10 14:58:51 kmodi>\n\n;; Pcache\n\n(use-package pcache\n :preface\n (progn\n (setq pcache-directory (let ((dir (concat user-emacs-directory\n \"var_\" emacs-version-short \"\/pcache\/\")))\n (make-directory dir :parents)\n dir))))\n\n\n(provide 'setup-pcache)\n","subject":"Use :preface instead of :init","message":"Minor: Use :preface instead of :init\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"0ae2d44f123dc7980db3fd71291555946bb5a284","old_file":"setup-files\/setup-gtags.el","new_file":"setup-files\/setup-gtags.el","old_contents":";; Time-stamp: <2014-11-19 10:19:17 kmodi>\n\n;; gtags, GNU global\n\n(req-package ggtags\n :require (verilog-mode key-chord)\n :init\n (progn\n (setq ggtags-navigation-mode-lighter nil)\n (dolist (hook '(verilog-mode-hook\n matlab-mode-hook\n c-mode-hook))\n (add-hook hook 'ggtags-mode))\n (key-chord-define-global \"??\" 'ggtags-show-definition)))\n\n\n(provide 'setup-gtags)\n","new_contents":";; Time-stamp: <2014-12-11 14:03:10 kmodi>\n\n;; gtags, GNU global\n\n(req-package ggtags\n :require (verilog-mode key-chord)\n :init\n (progn\n (setq ggtags-navigation-mode-lighter nil)\n (setq ggtags-oversize-limit (* 30 1024 1024))\n\n (dolist (hook '(verilog-mode-hook\n matlab-mode-hook\n c-mode-hook))\n (add-hook hook 'ggtags-mode))\n\n (key-chord-define-global \"??\" 'ggtags-show-definition)))\n\n\n(provide 'setup-gtags)\n","subject":"Set ggtags oversize limit to 30 MB","message":"Set ggtags oversize limit to 30 MB\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"b61b1cd6912afa2d6f88f34ab236011aacfe4db2","old_file":"Emacs\/emacs-custom.el","new_file":"Emacs\/emacs-custom.el","old_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(global-display-line-numbers-mode t)\n '(ido-create-new-buffer 'always)\n '(ido-enable-flex-matching t)\n '(ido-everywhere t)\n '(ido-mode 'both nil (ido))\n '(indent-tabs-mode nil)\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode))\n '(standard-indent 4)\n '(tab-always-indent 'complete))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(fido-mode t)\n '(global-display-line-numbers-mode t)\n '(ido-create-new-buffer 'always)\n '(ido-enable-flex-matching t)\n '(ido-everywhere t)\n '(ido-mode 'both nil (ido))\n '(indent-tabs-mode nil)\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode))\n '(standard-indent 4)\n '(tab-always-indent 'complete))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Enable fido mode by default in Emacs","message":"Enable fido mode by default in Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"Gosin\/Vim4Gosin"} {"commit":"48c82873b4923c104956f331a4d6f5b8d9b3e7ee","old_file":"emacs\/init\/init-calendar.el","new_file":"emacs\/init\/init-calendar.el","old_contents":"; Calendar\n\t\n\t(require 'calfw)\n\t(require 'calfw-ical)\n\t(require 'calfw-org)\n\n; Settings\n\n\t(define-key evil-normal-state-map (kbd \",cal\") (lambda () (interactive) (cfw:open-ical-calendar \"\/home\/musicnate\/.emacs.d\/calendar\/emacs-cal.ics\")))\n\n\t; TODO intergrate org mode\n\n(provide 'init-calendar)\n","new_contents":"; Calendar\n\t\n\t(require 'calfw)\n\t(require 'calfw-ical)\n\t(require 'calfw-org)\n\n; Settings\n\n\t(define-key evil-normal-state-map (kbd \",cal\") (lambda () (interactive) (cfw:open-ical-calendar \"https:\/\/calendar.google.com\/calendar\/ical\/nathan.mador.house%40gmail.com\/public\/basic.ics\")))\n\t; (define-key evil-normal-state-map (kbd \",cal\") (lambda () (interactive) (cfw:open-ical-calendar \"\/home\/musicnate\/.emacs.d\/calendar\/emacs-cal.ics\")))\n\n\t; TODO intergrate org mode\n\n(provide 'init-calendar)\n","subject":"Change local location of ics to online version.","message":"Change local location of ics to online version.\n","lang":"Emacs Lisp","license":"mit","repos":"NathanMH\/dotfiles,NathanMH\/dotfiles,NathanMH\/dotfiles,NathanMH\/dotfiles"} {"commit":"70fd6eecc5463a42e26ab1d0092a8ec59a7e5867","old_file":"exercises\/bob\/example.el","new_file":"exercises\/bob\/example.el","old_contents":";;; bob.el --- Bob exercise (exercism)\n\n;;; Commentary:\n\n;;; Code:\n(require 'subr-x)\n\n(defun response-for (phrase)\n \"Provides Bob's response to PHRASE.\"\n (let ((stripped-phrase (string-trim phrase)))\n (cond ((shout-questionp stripped-phrase) \"Calm down, I know what I'm doing!\")\n ((shoutp stripped-phrase) \"Whoa, chill out!\")\n ((string-match-p \"^[[:space:]]*$\" stripped-phrase) \"Fine. Be that way!\")\n ((questionp stripped-phrase) \"Sure.\")\n (t \"Whatever.\"))))\n\n(defun shoutp (phrase)\n \"Determines if PHRASE is shouted.\"\n (and (string-match \"[A-Z]\" phrase)\n (string= (upcase phrase) phrase)))\n\n(defun questionp (phrase)\n \"Determines if PHRASE is a question.\"\n (string-suffix-p \"?\" phrase))\n\n(defun shout-questionp (phrase)\n \"Determines if PHRASE is a shouted question.\"\n (and (shoutp phrase) (questionp phrase)))\n\n(provide 'bob)\n;;; bob.el ends here\n","new_contents":";;; bob.el --- Bob exercise (exercism)\n\n;;; Commentary:\n\n;;; Code:\n(require 'subr-x)\n\n(defun response-for (phrase)\n \"Provides Bob's response to PHRASE.\"\n (let ((stripped-phrase (string-trim phrase)))\n (cond ((shout-questionp stripped-phrase) \"Calm down, I know what I'm doing!\")\n ((shoutp stripped-phrase) \"Whoa, chill out!\")\n ((string-empty-p stripped-phrase) \"Fine. Be that way!\")\n ((questionp stripped-phrase) \"Sure.\")\n (t \"Whatever.\"))))\n\n(defun shoutp (phrase)\n \"Determines if PHRASE is shouted.\"\n (and (string-match \"[A-Z]\" phrase)\n (string= (upcase phrase) phrase)))\n\n(defun questionp (phrase)\n \"Determines if PHRASE is a question.\"\n (string-suffix-p \"?\" phrase))\n\n(defun shout-questionp (phrase)\n \"Determines if PHRASE is a shouted question.\"\n (and (shoutp phrase) (questionp phrase)))\n\n(provide 'bob)\n;;; bob.el ends here\n","subject":"Simplify 'Fine' case to avoid another regex","message":"Simplify 'Fine' case to avoid another regex\n\nIf the string has been trimmed on the left and right for\nwhitespace (in the let-binding), the string will be empty.\n","lang":"Emacs Lisp","license":"mit","repos":"exercism\/xelisp"} {"commit":"e5aef568fbc555a0ddcd0620aff6ab3bd394e935","old_file":"emacs.d\/lisp\/personal\/settings.el","new_file":"emacs.d\/lisp\/personal\/settings.el","old_contents":"(setf inhibit-startup-screen t) ; disable welcome screen\n\n(when (not (display-graphic-p))\n (menu-bar-mode -1)) ; disable menu bar in CLI\n\n;; improve scrolling\n(setf scroll-margin 5\n scroll-step 1\n scroll-conservatively 10000\n scroll-up-aggressively 0.01\n scroll-down-aggressively 0.01)\n\n(show-paren-mode 1) ; highlight matching parens\n\n(global-hl-line-mode 1) ; highlight current line\n\n(setq-default indent-tabs-mode nil) ; use spaces instead of tabs\n","new_contents":"(setf inhibit-startup-screen t) ; disable welcome screen\n\n(setf ring-bell-function 'ignore) ; disable alarm bell\n\n(when (not (display-graphic-p))\n (menu-bar-mode -1)) ; disable menu bar in CLI\n\n;; improve scrolling\n(setf scroll-margin 5\n scroll-step 1\n scroll-conservatively 10000\n scroll-up-aggressively 0.01\n scroll-down-aggressively 0.01)\n\n(show-paren-mode 1) ; highlight matching parens\n\n(global-hl-line-mode 1) ; highlight current line\n\n(setq-default indent-tabs-mode nil) ; use spaces instead of tabs\n","subject":"Disable alarm bell in emacs","message":"Disable alarm bell in emacs\n","lang":"Emacs Lisp","license":"mit","repos":"anishathalye\/dotfiles,anishathalye\/dotfiles,anishathalye\/dotfiles"} {"commit":"913ed6ff5a8568683efb2471aa4a5878f1802572","old_file":"lib\/yaml-init.el","new_file":"lib\/yaml-init.el","old_contents":"(require 'yaml-mode)\n\n(add-to-list 'auto-mode-alist '(\"\\.yml\" . feature-mode))\n","new_contents":"(require 'yaml-mode)\n\n(add-to-list 'auto-mode-alist '(\"\\.yml\" . yaml-mode))\n","subject":"Fix yaml auto load list.","message":"Fix yaml auto load list.\n","lang":"Emacs Lisp","license":"mit","repos":"tobytripp\/emacs.d,tobytripp\/emacs.d,tobytripp\/emacs.d,tobytripp\/emacs.d"} {"commit":"6811e59b5ceda95349e2d08371900502f519b6b0","old_file":"config\/color_theme.el","new_file":"config\/color_theme.el","old_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n;; (set-face-foreground 'mode-line \"black\")\n;; (set-face-background 'mode-line \"purple\")\n;; (set-face-background 'mode-line-inactive \"blue\")\n;; (set-face-background 'modeline-inactive \"red\")\n\n;; (setq custom-enabled-themes \"hipster\")\n;; (setq custom-safe-themes \"hipster\")\n;; (custom-safe-themes 'hipster-theme)\n\n\n;; We use a high contrast theme in the summer and a low contrast theme in the winter\n\n;; (setq sunny-month-list '(Apr May June July Aug Sept Oct))\n;; (setq high-contrast-theme 'badger)\n;; (setq low-contrast-theme 'zenburn)\n\n(load-theme 'badger)\n\n;; (set-color-theme-by-current-month(sunny-month-list high-contrast-theme low-contrast-theme)\n\n(custom-set-faces\n ;; '(neo-dir-link-face ((t (:foreground \"yellow\"))))\n ;; '(neo-dir-link-face ((t (:foreground \"color-64\"))))\n ;; '(neo-file-link-face ((t (:foreground \"color-244\")))))\n","new_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n;; (set-face-foreground 'mode-line \"black\")\n;; (set-face-background 'mode-line \"purple\")\n;; (set-face-background 'mode-line-inactive \"blue\")\n;; (set-face-background 'modeline-inactive \"red\")\n\n;; (setq custom-enabled-themes \"hipster\")\n;; (setq custom-safe-themes \"hipster\")\n;; (custom-safe-themes 'hipster-theme)\n\n\n;; We use a high contrast theme in the summer and a low contrast theme in the winter\n\n;; (setq sunny-month-list '(Apr May June July Aug Sept Oct))\n;; (setq high-contrast-theme 'badger)\n;; (setq low-contrast-theme 'zenburn)\n\n(load-theme 'badger)\n\n;; (set-color-theme-by-current-month(sunny-month-list high-contrast-theme low-contrast-theme)\n\n;; (custom-set-faces\n ;; '(neo-dir-link-face ((t (:foreground \"yellow\"))))\n ;; '(neo-dir-link-face ((t (:foreground \"color-64\"))))\n ;; '(neo-file-link-face ((t (:foreground \"color-244\")))))\n","subject":"Fix syntax error in color theme module","message":"Fix syntax error in color theme module\n","lang":"Emacs Lisp","license":"unlicense","repos":"schanur\/emacs.d"} {"commit":"b44f43418a9754e980f965d53f5116f2a39c7c10","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((nil . ((fill-column . 80)))\n (c++-mode . ((mode . subword)))\n (c-mode . ((mode . subword))))\n","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((nil . ((fill-column . 80)))\n (c++-mode . ((page-delimiter . \"^\/\/\/\")\n (mode . subword)))\n (c-mode . ((page-delimiter . \"^\/\/\/\")\n (mode . subword))))\n","subject":"Allow for headings starting with \"\/\/\/\" in C\/C++ files","message":"Allow for headings starting with \"\/\/\/\" in C\/C++ files\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp"} {"commit":"d8515e2aa8555d09dc51e9dc81a822cad0567811","old_file":"emacs.d\/core\/jl-ui.el","new_file":"emacs.d\/core\/jl-ui.el","old_contents":";; disable menu\/toolbar\/scrollbar\n(scroll-bar-mode -1)\n(tool-bar-mode -1)\n(menu-bar-mode -1)\n\n;; open emacs blank scratch\n(setq inhibit-splash-screen t\n initial-scratch-message nil)\n\n;; status bar settings\n(column-number-mode t)\n\n;; display and format line numbers\n(global-linum-mode t)\n(setq linum-format \"%2d \")\n\n;; highlight current line\n(global-hl-line-mode 1)\n(set-face-background 'hl-line \"#330\")\n\n;; enable y\/n answers\n(fset 'yes-or-no-p 'y-or-n-p)\n\n;; show trailing whitespace\n(require 'whitespace)\n(setq whitespace-line-column 80\n whitespace-style '(face lines-tail trailing))\n(add-hook 'prog-mode-hook 'whitespace-mode)\n\n;; syntax highlighting everywhere\n(global-font-lock-mode 1)\n\n;; Add proper word wrapping\n(global-visual-line-mode t)\n\n;; load zenburn theme\n(load-theme 'zenburn t)\n\n(provide 'jl-ui)\n","new_contents":";; disable menu\/toolbar\/scrollbar\n(scroll-bar-mode -1)\n(tool-bar-mode -1)\n(menu-bar-mode -1)\n\n;; open emacs blank scratch\n(setq inhibit-splash-screen t\n initial-scratch-message nil)\n\n;; status bar settings\n(column-number-mode t)\n\n;; display and format line numbers\n(global-linum-mode t)\n(setq linum-format \"%2d \")\n\n;; highlight current line\n(global-hl-line-mode 1)\n(set-face-background 'hl-line \"#330\")\n\n;; enable y\/n answers\n(fset 'yes-or-no-p 'y-or-n-p)\n\n;; show trailing whitespace\n(require 'whitespace)\n(setq whitespace-line-column 80\n whitespace-style '(face lines-tail trailing))\n(add-hook 'prog-mode-hook 'whitespace-mode)\n\n;; syntax highlighting everywhere\n(global-font-lock-mode 1)\n\n;; Add proper word wrapping\n(global-visual-line-mode t)\n\n;; set tabs to 2 spaces\n(setq-default indent-tabs-mode nil)\n(setq-default tab-width 2)\n(setq indent-line-function 'insert-tab)\n\n;; load zenburn theme\n(load-theme 'zenburn t)\n\n(provide 'jl-ui)\n","subject":"Use 2 spaces for tabs","message":"emacs: Use 2 spaces for tabs\n","lang":"Emacs Lisp","license":"mit","repos":"jdlehman\/dotfiles,jdlehman\/dotfiles"} {"commit":"53f8e8b2493c33a741f36b0f7a33a0dac6506032","old_file":"modules\/editor\/god\/config.el","new_file":"modules\/editor\/god\/config.el","old_contents":";;; editor\/god\/config.el -*- lexical-binding: t; -*-\n\n(use-package! god-mode\n :hook (doom-after-init-modules . god-mode-all)\n :config\n (add-hook 'post-command-hook #'+god--configure-cursor-and-modeline-h)\n (add-hook 'overwrite-mode-hook #'+god--toggle-on-overwrite-h))\n","new_contents":";;; editor\/god\/config.el -*- lexical-binding: t; -*-\n\n(use-package! god-mode\n :hook (doom-after-init-modules . god-mode-all)\n :config\n (add-hook 'post-command-hook #'+god--configure-cursor-and-modeline-h)\n (add-hook 'overwrite-mode-hook #'+god--toggle-on-overwrite-h)\n\n (after! which-key\n (which-key-enable-god-mode-support)))\n","subject":"Enable god-mode support for which-key if required","message":"Enable god-mode support for which-key if required\n\nSigned-off-by: Akhil Wali <943cd345c3e5219847c26c148b71517511dbc93b@gmail.com>\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"33c69a4f9978d366a7d280776ca7784b4ca2ce21","old_file":"load\/rb.el","new_file":"load\/rb.el","old_contents":"(add-hook\n 'ruby-mode-hook\n (lambda ()\n ;; Check spelling.\n (flyspell-prog-mode)\n ;; Don't autofill\n (auto-fill-mode 0)\n ;; Make enter indent.\n (local-set-key (kbd \"C-m\") 'reindent-then-newline-and-indent)\n ;; Clean up whitespace on save.\n (add-hook 'before-save-hook 'whitespace-cleanup nil t)\n ;; Rebuild tags on save.\n (add-hook (make-local-variable 'after-save-hook) 'rebuild-tags nil t)\n ;; Disable rubocop\n (defvar flycheck-disabled-checkers \"flycheck.el\")\n (setq flycheck-disabled-checkers\n (cons 'ruby-rubocop flycheck-disabled-checkers))\n ;; Turn on subword-mode\n (require 'diminish)\n (subword-mode 1)\n (diminish 'subword-mode)\n ;; Make do\/end less prominent.\n (defvar paren-face-regexp)\n (setq-local paren-face-regexp\n (rx symbol-start (or \"do\" \"end\") symbol-end))))\n","new_contents":"(add-hook\n 'ruby-mode-hook\n (lambda ()\n ;; Check spelling.\n (flyspell-prog-mode)\n ;; Don't autofill\n (auto-fill-mode 0)\n ;; Make enter indent.\n (local-set-key (kbd \"C-m\") 'reindent-then-newline-and-indent)\n ;; Make smart-tab always indent\n (defvar smart-tab-always-indent nil)\n (setq-local smart-tab-always-indent t)\n ;; Clean up whitespace on save.\n (add-hook 'before-save-hook 'whitespace-cleanup nil t)\n ;; Rebuild tags on save.\n (add-hook (make-local-variable 'after-save-hook) 'rebuild-tags nil t)\n ;; Disable rubocop\n (defvar flycheck-disabled-checkers \"flycheck.el\")\n (setq flycheck-disabled-checkers\n (cons 'ruby-rubocop flycheck-disabled-checkers))\n ;; Turn on subword-mode\n (require 'diminish)\n (subword-mode 1)\n (diminish 'subword-mode)\n ;; Make do\/end less prominent.\n (defvar paren-face-regexp)\n (setq-local paren-face-regexp\n (rx symbol-start (or \"do\" \"end\") symbol-end))))\n","subject":"Make tab always indent in Ruby","message":"Make tab always indent in Ruby\n","lang":"Emacs Lisp","license":"mit","repos":"kaidadragonfly\/.emacs"} {"commit":"107fe46d6e5871c3f25cd46f23964909ac1211b7","old_file":"layers\/+lang\/latex\/config.el","new_file":"layers\/+lang\/latex\/config.el","old_contents":";;; packages.el --- Latex Layer Configuration File for Spacemacs\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n;; variables\n\n(spacemacs|defvar-company-backends LaTeX-mode)\n\n(spacemacs|define-jump-handlers LaTeX-mode)\n\n(defvar latex-build-command (if (executable-find \"latexmk\") \"LatexMk\" \"LaTeX\")\n \"The default command to use with `SPC m b'\")\n\n(defvar latex-enable-auto-fill t\n \"Whether to use auto-fill-mode or not in tex files.\")\n\n(defvar latex-enable-folding nil\n \"Whether to use `TeX-fold-mode' or not in tex\/latex buffers.\")\n\n(defvar latex-nofill-env '(\"equation\"\n \"equation*\"\n \"align\"\n \"align*\"\n \"tabular\"\n \"tikzpicture\")\n \"List of environment names in which `auto-fill-mode' will be inhibited.\")\n","new_contents":";;; packages.el --- Latex Layer Configuration File for Spacemacs\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n;; variables\n\n(spacemacs|defvar-company-backends LaTeX-mode)\n\n(spacemacs|define-jump-handlers latex-mode)\n\n(defvar latex-build-command (if (executable-find \"latexmk\") \"LatexMk\" \"LaTeX\")\n \"The default command to use with `SPC m b'\")\n\n(defvar latex-enable-auto-fill t\n \"Whether to use auto-fill-mode or not in tex files.\")\n\n(defvar latex-enable-folding nil\n \"Whether to use `TeX-fold-mode' or not in tex\/latex buffers.\")\n\n(defvar latex-nofill-env '(\"equation\"\n \"equation*\"\n \"align\"\n \"align*\"\n \"tabular\"\n \"tikzpicture\")\n \"List of environment names in which `auto-fill-mode' will be inhibited.\")\n","subject":"Fix latex-mode jump handler definition","message":"Fix latex-mode jump handler definition\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"6ce31393eae82e53a98c6dc6d89db3f57c259c8b","old_file":"standard_emacs_d_init.el","new_file":"standard_emacs_d_init.el","old_contents":";; backup in one place. flat, no tree structure\n;; http:\/\/ergoemacs.org\/emacs\/emacs_set_backup_into_a_directory.html\n(setq backup-directory-alist '((\"\" . \"~\/.emacs.d\/emacs-backup\")))\n\n;; setup for installing markdown-mode\n;; https:\/\/jblevins.org\/projects\/markdown-mode\/\n(require 'package)\n(add-to-list 'package-archives\n\t '(\"melpa-stable\"\n\t . \"https:\/\/stable.melpa.org\/packages\/\"))\n(package-initialize)\n","new_contents":";; backup in one place. flat, no tree structure\n;; http:\/\/ergoemacs.org\/emacs\/emacs_set_backup_into_a_directory.html\n(setq backup-directory-alist '((\"\" . \"~\/.emacs.d\/emacs-backup\")))\n\n;; setup for installing markdown-mode\n;; https:\/\/jblevins.org\/projects\/markdown-mode\/\n(require 'package)\n(add-to-list 'package-archives\n\t '(\"melpa-stable\"\n\t . \"https:\/\/stable.melpa.org\/packages\/\"))\n(package-initialize)\n\n;; Make the default window bigger\n(add-to-list 'default-frame-alist '(height . 45))\n(add-to-list 'default-frame-alist '(width . 110))\n","subject":"Make emacs default window bigger","message":"Make emacs default window bigger\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"philipwilcox\/homedir"} {"commit":"df643186d574e74861f24ce30ce78db45c1907db","old_file":"modules\/tools\/taskrunner\/config.el","new_file":"modules\/tools\/taskrunner\/config.el","old_contents":";;; tools\/taskrunner\/config.el -*- lexical-binding: t; -*-\n\n(use-package! helm-taskrunner\n :when (featurep! :completion helm)\n :defer t\n :config (helm-taskrunner-minor-mode +1))\n\n(use-package! ivy-taskrunner\n :when (featurep! :completion ivy)\n :defer t\n :config (ivy-taskrunner-minor-mode +1))\n","new_contents":";;; tools\/taskrunner\/config.el -*- lexical-binding: t; -*-\n\n(after! taskrunner\n (set-popup-rule! taskrunner--buffer-name-regexp :quit t))\n\n(use-package! helm-taskrunner\n :when (featurep! :completion helm)\n :defer t\n :config (helm-taskrunner-minor-mode +1))\n\n(use-package! ivy-taskrunner\n :when (featurep! :completion ivy)\n :defer t\n :config (ivy-taskrunner-minor-mode +1))\n","subject":"Set popup rule for taskrunner buffer","message":"tools\/taskrunner: Set popup rule for taskrunner buffer\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs"} {"commit":"ed231db5e75eaa915f505279883faa1d40604c7b","old_file":"setup-files\/setup-beacon.el","new_file":"setup-files\/setup-beacon.el","old_contents":";; Time-stamp: <2015-10-18 11:41:54 kmodi>\n\n;; Beacon\n;; https:\/\/github.com\/Malabarba\/beacon\n\n(use-package beacon\n :config\n (progn\n (setq beacon-blink-when-point-moves nil) ; default nil\n (setq beacon-blink-when-buffer-changes t) ; default t\n (setq beacon-blink-when-window-scrolls t) ; default t\n (setq beacon-blink-when-window-changes t) ; default t\n\n (setq beacon-blink-duration 0.3) ; default 0.3\n (setq beacon-blink-delay 0.3) ; default 0.3\n (setq beacon-size 20) ; default 40\n ;; (setq beacon-color \"yellow\") ; default 0.5\n (setq beacon-color 0.5) ; default 0.5\n\n (beacon-mode 1)))\n\n\n(provide 'setup-beacon)\n","new_contents":";; Time-stamp: <2015-10-19 09:42:35 kmodi>\n\n;; Beacon\n;; https:\/\/github.com\/Malabarba\/beacon\n\n(use-package beacon\n :config\n (progn\n ;; Remove extra space from minor mode lighters\n (setq beacon-lighter (cond\n ((char-displayable-p ?💡) \"💡\")\n ((char-displayable-p ?Λ) \"Λ\")\n (t \"*\")))\n\n (setq beacon-blink-when-point-moves nil) ; default nil\n (setq beacon-blink-when-buffer-changes t) ; default t\n (setq beacon-blink-when-window-scrolls t) ; default t\n (setq beacon-blink-when-window-changes t) ; default t\n\n (setq beacon-blink-duration 0.3) ; default 0.3\n (setq beacon-blink-delay 0.3) ; default 0.3\n (setq beacon-size 20) ; default 40\n ;; (setq beacon-color \"yellow\") ; default 0.5\n (setq beacon-color 0.5) ; default 0.5\n\n (beacon-mode 1)))\n\n\n(provide 'setup-beacon)\n","subject":"Remove space from beacon lighter","message":"Remove space from beacon lighter\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"e5914e8ed7d404cdb786b0d272e01cad1caffc05","old_file":".emacs.d\/lisp\/package\/repositories.el","new_file":".emacs.d\/lisp\/package\/repositories.el","old_contents":"(require 'package)\n\n;; Add MELPA repository\n(add-to-list 'package-archives\n '(\"melpa\" .\n \"http:\/\/melpa.milkbox.net\/packages\/\"))\n\n;; Add MELPA Stable\n(add-to-list 'package-archives\n '(\"melpa-stable\" .\n \"https:\/\/stable.melpa.org\/packages\/\"))\n\n;; Add GNU ELPA repository\n(add-to-list 'package-archives\n '(\"gnu\" .\n \"http:\/\/elpa.gnu.org\/packages\/\"))\n\n(setf package-archive-priorities\n '((\"melpa-stable\" . 20)\n (\"gnu\" . 10)\n (\"marmalade\" . 10)\n (\"melpa\" . 0)))\n\n;; (require 'packup)\n\n(provide 'repositories)\n","new_contents":"(require 'package)\n\n;; Add MELPA repository\n(add-to-list 'package-archives\n '(\"melpa\" .\n \"http:\/\/melpa.milkbox.net\/packages\/\"))\n\n;; Add MELPA Stable\n(add-to-list 'package-archives\n '(\"melpa-stable\" .\n \"https:\/\/stable.melpa.org\/packages\/\"))\n\n;; Add GNU ELPA repository\n(add-to-list 'package-archives\n '(\"gnu\" .\n \"http:\/\/elpa.gnu.org\/packages\/\"))\n\n(setf package-archive-priorities\n '((\"melpa-stable\" . 20)\n (\"gnu\" . 10)\n (\"melpa\" . 0)))\n\n;; (require 'packup)\n\n(provide 'repositories)\n","subject":"Delete Marmalade from our list of package-archive priorities","message":"Delete Marmalade from our list of package-archive priorities\n\nWe don't need to keep it around if it's not configured---Marmalade\nusers can definitely install it themselves later on.\n","lang":"Emacs Lisp","license":"mit","repos":"kotct\/dot,kotct\/dot"} {"commit":"28532082c21d444fb469384a7ed578ef6803389b","old_file":"Emacs\/init.el","new_file":"Emacs\/init.el","old_contents":";; Gosin's Emacs Configuration 2021\/01\/09\n;; add ELPA and MELPA package repos\n(setq package-archives\n '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t(\"melpa\" . \"http:\/\/melpa.org\/packages\/\")))\n\n;; user solarized dark color theme\n(add-to-list 'custom-theme-load-path \"~\/.emacs.d\/solarized_theme\")\n(set-terminal-parameter nil 'background-mode 'dark)\n(set-frame-parameter nil 'background-mode 'dark)\n(load-theme 'solarized t)\n\n;; define three useful commands(from org guide)\n(global-set-key (kbd \"C-c l\") 'org-store-link)\n(global-set-key (kbd \"C-c a\") 'org-agenda)\n(global-set-key (kbd \"C-c c\") 'org-capture)\n\n(custom-set-variables\n '(global-display-line-numbers-mode t) ; display line numbers\n '(apropos-sort-by-scores t)) ; sort apropos results by relevance\n\n","new_contents":";; Gosin's Emacs Configuration 2021\/01\/09\n;; add ELPA and MELPA package repos\n(setq package-archives\n '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t(\"melpa\" . \"http:\/\/melpa.org\/packages\/\")))\n\n;; user solarized dark color theme\n(add-to-list 'custom-theme-load-path \"~\/.emacs.d\/solarized_theme\")\n(set-terminal-parameter nil 'background-mode 'dark)\n(set-frame-parameter nil 'background-mode 'dark)\n(load-theme 'solarized t)\n\n;; define three useful commands(from org guide)\n(global-set-key (kbd \"C-c l\") 'org-store-link)\n(global-set-key (kbd \"C-c a\") 'org-agenda)\n(global-set-key (kbd \"C-c c\") 'org-capture)\n\n(custom-set-variables\n '(global-display-line-numbers-mode t) ; display line numbers\n '(apropos-sort-by-scores t)) ; sort apropos results by relevance\n\n;; store backup and autosave files to temporary directories\n(setq backup-director-alist\n '((\".*\" . ,temporary-file-directory)))\n","subject":"Save backup files to temporary directory for Emacs","message":"Save backup files to temporary directory for Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"Gosin\/Vim4Gosin"} {"commit":"54d17e0c814a8f8c9e5db2b25b6f9962cbba3e89","old_file":"user-lisp\/c-customisations.el","new_file":"user-lisp\/c-customisations.el","old_contents":"(require 'flycheck)\n\n;; todo: show eldoc in modeline, since the minibuffer is used by\n;; flycheck.\n(add-hook 'c-mode-hook #'c-turn-on-eldoc-mode)\n\n(require 'which-func)\n(setq which-func-modes (list #'c-mode))\n(add-hook 'c-mode-hook #'which-function-mode)\n\n;; C++\n(add-hook\n 'c++-mode-hook\n (lambda ()\n (setq flycheck-clang-language-standard \"c++11\"\n flycheck-clang-definitions '(\"__STDC_LIMIT_MACROS\"\n \"__STDC_CONSTANT_MACROS\"))))\n\n(provide 'c-customisations)\n","new_contents":"(require 'flycheck)\n\n;; todo: show eldoc in modeline, since the minibuffer is used by\n;; flycheck.\n(add-hook 'c-mode-hook #'c-turn-on-eldoc-mode)\n\n;; TODO: this doesn't belong here.\n(require 'which-func)\n(setq which-func-modes (list #'c-mode #'python-mode))\n\n(add-hook 'c-mode-hook #'which-function-mode)\n\n;; C++\n(add-hook\n 'c++-mode-hook\n (lambda ()\n (setq flycheck-clang-language-standard \"c++11\"\n flycheck-clang-definitions '(\"__STDC_LIMIT_MACROS\"\n \"__STDC_CONSTANT_MACROS\"))))\n\n(provide 'c-customisations)\n","subject":"Use which-func-mode in python too.","message":"Use which-func-mode in python too.\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"436c467baee2f7d449be4744dfa120377bf3052e","old_file":"doom-emacs\/.doom.d\/packages.el","new_file":"doom-emacs\/.doom.d\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; ~\/.doom.d\/packages.el\n\n;;; Examples:\n;; (package! some-package)\n;; (package! another-package :recipe (:fetcher github :repo \"username\/repo\"))\n;; (package! builtin-package :disable t)\n(package! flymd)\n(package! lispyville)\n(package! sort-words)\n(package! uuidgen)\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; ~\/.doom.d\/packages.el\n\n;;; Examples:\n;; (package! some-package)\n;; (package! another-package :recipe (:fetcher github :repo \"username\/repo\"))\n;; (package! builtin-package :disable t)\n(package! cider\n :recipe (:fetcher github\n :repo \"clojure-emacs\/cider\"\n :commit \"200c88adb1314b5811ba749af42ffb6817c1ca1b\"\n :files (\"*.el\" (:exclude \".dir-locals.el\"))\n :old-names (nrepl)))\n(package! clj-refactor\n :recipe (:fetcher github\n :repo \"clojure-emacs\/clj-refactor.el\"\n :commit \"3d5d1fbf28bfcc00f917cd96d6784968dcbbc962\"))\n(package! flymd)\n(package! lispyville)\n(package! sort-words)\n(package! uuidgen)\n","subject":"Revert \"doom-emacs: Remove cider and clj-refactor pins\"","message":"Revert \"doom-emacs: Remove cider and clj-refactor pins\"\n\nThis reverts commit afe0422471cb25078cede64bf699d4a25acf4775.\n","lang":"Emacs Lisp","license":"mit","repos":"m45t3r\/dotfiles,m45t3r\/dotfiles,m45t3r\/dotfiles"} {"commit":"ff139f33976fc6bd1ba920a7f3f4d0625bdb8cd3","old_file":"doom_emacs\/packages.el","new_file":"doom_emacs\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n\n(package! bison-mode)\n(package! vimrc-mode)\n(package! ripgrep)\n(package! alloy-mode\n :recipe (:host github :repo \"dwwmmn\/alloy-mode\"))\n(package! org-ref)\n(package! fill-column-indicator)\n\n(package! evil-snipe :disable t)\n","new_contents":";; -*- no-byte-compile: t; -*-\n\n(package! bison-mode)\n(package! vimrc-mode)\n(package! ripgrep)\n(package! alloy-mode\n :recipe (:host github :repo \"dwwmmn\/alloy-mode\"))\n(package! org-ref)\n(package! fill-column-indicator)\n\n(package! evil-snipe :disable t)\n\n(package! rebecca-theme)\n","subject":"Add rebecca-theme (from spacemacs) to emacs","message":"Add rebecca-theme (from spacemacs) to emacs\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"4f76347ee840054385730912db48bd877a1277e7","old_file":"init-clojure.el","new_file":"init-clojure.el","old_contents":"(add-hook 'clojure-mode-hook 'enable-paredit-mode)\n\n(setq clojure-src-root (expand-file-name \"~\/Projects\/External\"))\n(setq swank-clojure-extra-vm-args (list \"-server\"\n \"-Xmx1024m\"\n \"-XX:+UseConcMarkSweepGC\"\n \"-XX:+UseCompressedOops\"\n \"-XX:+DoEscapeAnalysis\"))\n\n(add-hook 'slime-repl-mode-hook 'slime-redirect-inferior-output)\n\n(eval-after-load \"viper\"\n '(add-to-list 'viper-vi-state-mode-list 'clojure-mode))\n\n(eval-after-load \"gist\"\n '(add-to-list 'gist-supported-modes-alist '(clojure-mode . \".clj\")))\n\n(provide 'init-clojure)\n","new_contents":"(add-hook 'clojure-mode-hook 'enable-paredit-mode)\n\n(setq clojure-src-root (expand-file-name \"~\/Projects\/External\"))\n(setq swank-clojure-extra-vm-args (list \"-server\"\n \"-Xmx1024m\"\n \"-XX:+UseConcMarkSweepGC\"\n \"-XX:+UseCompressedOops\"\n \"-XX:+DoEscapeAnalysis\"))\n\n(defun slime-clojure-repl-setup ()\n (when (string-equal \"clojure\" (slime-connection-name))\n (message \"Setting up repl for clojure\")\n (slime-redirect-inferior-output)\n (when (and (featurep 'paredit) paredit-mode (>= paredit-version 21))\n (define-key paredit-mode-map \"{\" 'paredit-open-curly)\n (define-key paredit-mode-map \"}\" 'paredit-close-curly))))\n\n(add-hook 'slime-repl-mode-hook 'slime-clojure-repl-setup)\n\n(eval-after-load \"viper\"\n '(add-to-list 'viper-vi-state-mode-list 'clojure-mode))\n\n(eval-after-load \"gist\"\n '(add-to-list 'gist-supported-modes-alist '(clojure-mode . \".clj\")))\n\n(provide 'init-clojure)\n","subject":"Make { and } magic in slime repl when connection is to clojure","message":"Make { and } magic in slime repl when connection is to clojure\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"krzysz00\/emacs.d,farzadbekran\/emacs.d,jkaessens\/emacs.d,YangXin\/emacs.d,ilove0518\/emacs.d,Werewolflsp\/emacs.d,exclamaforte\/emacs.d,wenpincui\/emacs.d,ernest-dzf\/emacs.d,hkcqr\/emacs.d,farzadbekran\/emacs.d,fengxl\/emacs.d,svenyurgensson\/emacs.d,farzadbekran\/emacs.d,pairyo\/emacs.d,bibaijin\/emacs.d,hophacker\/emacs.d,dongdonghu\/.emacs.d,jthetzel\/emacs.d,blueabysm\/emacs.d,lromang\/emacs.d,cyjia\/emacs.d,mmqmzk\/emacs.d,jhpx\/emacs.d,arthurl\/emacs.d,renatoriccio\/emacs.d,zuoshifan\/emacs.d,YangXin\/emacs.d,ruiyang\/emacs.d,boblannon\/emacs.d,lust4life\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,ruiyang\/emacs.d,sgarciac\/emacs.d,farzadbekran\/emacs.d,zenith-john\/emacs.d,zuoshifan\/emacs.d,baohaojun\/emacs.d,haodaivshen\/emacs.d,kindoblue\/emacs.d,farzadbekran\/emacs.d,blueseason\/emacs.d,modkzs\/emcs.d,zhaotai\/.emacs.d,mpwang\/emacs.d,lujianmei\/emacs.d,atreeyang\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,me020523\/emacs.d,zuoshifan\/emacs.d,shafayetkhan\/emacs.d,DarkThrone\/emacs.d,zuoshifan\/emacs.d,cjqw\/emacs.d,Guoozz\/emacs.d,zhuoyikang\/emacs.d,kongfy\/emacs.d,dcorking\/emacs.d,qinshulei\/emacs.d,gsmlg\/emacs.d,alant\/emacs.d,carlosliu\/emacs.d,LittleLmp\/emacs.d,scorpionis\/emacs.d,dhanunjaya\/emacs.d,wegatron\/emacs.d,caoyuanqi\/emacs.d,Shanicky\/emacs.d,qianwan\/emacs.d,braveoyster\/emacs.d,Togal\/emacs.d,whizzzkid\/emacs.d,roxolan\/emacs.d,emuio\/emacs.d,Enzo-Liu\/emacs.d,purcell\/emacs.d,benkha\/emacs.d,zuoshifan\/emacs.d,danfengcao\/emacs.d,zuoshifan\/emacs.d,46do14\/emacs.d,Jadecity\/PurcellEmacs.d,jachinpy\/emacs.d,LKI\/emacs.d"} {"commit":"a08579a121434736c93d4626d061b46fd1da20c1","old_file":"setup-files\/setup-wrap-region.el","new_file":"setup-files\/setup-wrap-region.el","old_contents":";; Time-stamp: <2015-02-23 11:42:33 kmodi>\n\n;; wrap-region\n;; https:\/\/github.com\/rejeep\/wrap-region.el\n\n(use-package wrap-region\n :config\n (progn\n ;; Enable wrap-region in the following major modes\n (dolist (hook '(emacs-lisp-mode-hook\n org-mode-hook))\n (add-hook hook 'wrap-region-mode))\n\n (wrap-region-add-wrapper \"`\" \"'\") ; select region, hit ` then region -> `region'\n\n (wrap-region-add-wrapper \"=\" \"=\" nil 'org-mode) ; select region, hit = then region -> =region= in org-mode\n (wrap-region-add-wrapper \"*\" \"*\" nil 'org-mode) ; select region, hit * then region -> *region* in org-mode\n (wrap-region-add-wrapper \"\/\" \"\/\" nil 'org-mode) ; select region, hit \/ then region -> \/region\/ in org-mode\n (wrap-region-add-wrapper \"_\" \"_\" nil 'org-mode) ; select region, hit _ then region -> _region_ in org-mode\n (wrap-region-add-wrapper \"+\" \"+\" nil 'org-mode))) ; select region, hit + then region -> +region+ in org-mode\n\n\n(provide 'setup-wrap-region)\n","new_contents":";; Time-stamp: <2015-07-08 14:12:24 kmodi>\n\n;; wrap-region\n;; https:\/\/github.com\/rejeep\/wrap-region.el\n\n(use-package wrap-region\n :config\n (progn\n ;; Enable `wrap-region' in the following major modes\n (dolist (hook '(emacs-lisp-mode-hook\n org-mode-hook\n text-mode-hook\n markdown-mode-hook))\n (add-hook hook #'wrap-region-mode))\n\n (wrap-region-add-wrapper \"`\" \"'\" nil 'emacs-lisp-mode)\n\n (wrap-region-add-wrapper \"`\" \"`\" nil '(text-mode markdown-mode))\n (wrap-region-add-wrapper \"**\" \"**\" \"*\" '(text-mode markdown-mode))\n (wrap-region-add-wrapper \"*\" \"*\" \"\/\" '(text-mode markdown-mode))\n (wrap-region-add-wrapper \"~~\" \"~~\" \"+\" '(text-mode markdown-mode))\n\n (wrap-region-add-wrapper \"=\" \"=\" nil 'org-mode)\n (wrap-region-add-wrapper \"*\" \"*\" nil 'org-mode)\n (wrap-region-add-wrapper \"\/\" \"\/\" nil 'org-mode)\n (wrap-region-add-wrapper \"_\" \"_\" nil 'org-mode)\n (wrap-region-add-wrapper \"+\" \"+\" nil 'org-mode)))\n\n\n(provide 'setup-wrap-region)\n\n;; (wrap-region-add-wrapper \"\" \"\" KEY 'MODE), or\n;; (wrap-region-add-wrapper \"\" \"\" KEY '(MODE1 MODE2))\n;; - Select TEXT, hit KEY (or if KEY is nil), then TEXT becomes\n;; TEXT in major mode MODE (or in major modes MODE1 and MODE2)\n","subject":"Add `wrap-region` wrappers for `markdown-mode`","message":"Add `wrap-region` wrappers for `markdown-mode`\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"a0df3b4936c2b7025640ee74c23faa51fc18442f","old_file":"emacs\/init.el","new_file":"emacs\/init.el","old_contents":"(org-babel-load-file \"~\/.emacs.d\/config.org\")\n","new_contents":"; Avoid Emacs asking if to follow a symlink on startup\n(setq vc-follow-symlinks t)\n(org-babel-load-file \"~\/.emacs.d\/config.org\")\n","subject":"Enable following symlinks as early as possible","message":"Enable following symlinks as early as possible\n\nTo prevent Emacs asking on startup\n\n5c3cc950e wasn't enough. Presumably because the Org config is still a\nsymlink.\n","lang":"Emacs Lisp","license":"mit","repos":"raindev\/dotfiles"} {"commit":"b51696d7648bb275fe3fefc2d50cad5e59807998","old_file":"emacs\/to-do-mode.el","new_file":"emacs\/to-do-mode.el","old_contents":";;; to-do-mode -- major mode for editing in to-do format\n;;;\n\n(provide 'to-do-mode)\n\n\n(defvar to-do-mode-hook nil\n \"Hook run when to-do-mode is loaded.\"\n )\n\n(define-derived-mode to-do-mode text-mode \"To-Do\"\n \"Major mode for to-do files.\n\\\\{to-do-mode-map}\nTurning on To-Do mode runs the normal hook `to-do-mode-hook'.\"\n \n (setq-local indent-tabs-mode nil)\n (local-set-key \"\\C-C*\" 'to-do-mark-item-done)\n )\n\n;;; to-do-mark-item-done \n(defun to-do-mark-item-done ()\n \"Change the flag character to an asterisk.\" ; ought to go backward with C-U\n (interactive nil)\n (move-beginning-of-line 1)\n (cond ((looking-at \".* o \")\t\t; this doesn't handle partial items. Should search.\n\t (re-search-forward \" o \")\n\t (delete-backward-char 2)\n\t (insert \"* \"))\n\t((looking-at \"[[:space:]]*$\")\n\t (insert \" *\"))\t; probably ought to handle indent. tricky.\n\t)\n )\n\n","new_contents":";;; to-do-mode -- major mode for editing in to-do format\n;;;\n\n(provide 'to-do-mode)\n\n\n(defvar to-do-mode-hook nil\n \"Hook run when to-do-mode is loaded.\"\n )\n\n(define-derived-mode to-do-mode text-mode \"To-Do\"\n \"Major mode for to-do files.\n\\\\{to-do-mode-map}\nTurning on To-Do mode runs the normal hook `to-do-mode-hook'.\"\n \n (setq-local indent-tabs-mode nil)\n (local-set-key \"\\C-C*\" 'to-do-mark-item-done)\n )\n\n;;; to-do-mark-item-done \n(defun to-do-mark-item-done ()\n \"Change an 'o' flag character to an asterisk.\nMove to next line if no open items remain on the line.\" ; ought to go backward with C-U\n (interactive nil)\n (move-beginning-of-line 1)\n (cond ((looking-at \".* o \")\t\t; this doesn't handle partial items. Should search.\n\t (re-search-forward \" o \")\n\t (delete-backward-char 2)\n\t (insert \"* \"))\n\t((looking-at \"[[:space:]]*$\")\n\t (insert \" *\"))\t; probably ought to handle indent. tricky.\n\t)\n (or (looking-at \".* o \") (next-line))\n )\n\n","subject":"Make ^C* go to next line if no open items","message":"Make ^C* go to next line if no open items\n","lang":"Emacs Lisp","license":"mit","repos":"ssavitzky\/Honu,ssavitzky\/Honu,ssavitzky\/Honu"} {"commit":"223cd0625838c79f4322c439133528872c6cc17f","old_file":"configs\/emacs.d\/pkgs\/pkg-go.el","new_file":"configs\/emacs.d\/pkgs\/pkg-go.el","old_contents":"(use-package go-mode\n :ensure t\n\n :config\n (add-hook 'before-save-hook 'gofmt-before-save)\n (setq-default tab-width 2)\n )\n\n(use-package company-go\n :ensure t\n\n :config\n (add-hook 'go-mode-hook (lambda ()\n (set (make-local-variable 'company-backends) '(company-go))\n (company-mode)))\n )\n\n(provide 'pkg-go)\n","new_contents":"(use-package go-mode\n :ensure t\n\n :config\n (add-hook 'before-save-hook 'gofmt-before-save)\n (setq-default tab-width 2)\n (define-key evil-normal-state-map (kbd \"M-.\") 'godef-jump)\n )\n\n(use-package company-go\n :ensure t\n\n :config\n (add-hook 'go-mode-hook (lambda ()\n (set (make-local-variable 'company-backends) '(company-go))\n (company-mode)))\n )\n\n(provide 'pkg-go)\n","subject":"Add 'M-.' keymap for godef-jump in go-mode","message":"Add 'M-.' keymap for godef-jump in go-mode\n","lang":"Emacs Lisp","license":"mit","repos":"noraesae\/dotfiles,noraesae\/dotfiles,noraesae\/dotfiles"} {"commit":"2ec0998d8aeb3e7f296424eb004f79cafca7b278","old_file":"emacs.d.symlink\/scripts\/evil.el","new_file":"emacs.d.symlink\/scripts\/evil.el","old_contents":"(require 'evil)\n(evil-mode 1) \n\n;; Use undo-tree so don't have to figure out the full undo\/redo system atm.\n;; Evil will detect this. \n(require 'undo-tree)\n\n;; Remap \";\" to \":\" and \",\" to \";\", like vimrc\n(define-key evil-motion-state-map \";\" 'evil-ex)\n(define-key evil-motion-state-map \",\" 'evil-repeat-find-char)\n\n;; Make cancel everything\n(define-key evil-normal-state-map [escape] 'keyboard-quit)\n(define-key evil-visual-state-map [escape] 'keyboard-quit)\n(define-key minibuffer-local-map [escape] 'minibuffer-keyboard-quit)\n(define-key minibuffer-local-ns-map [escape] 'minibuffer-keyboard-quit)\n(define-key minibuffer-local-completion-map [escape] 'minibuffer-keyboard-quit)\n(define-key minibuffer-local-must-match-map [escape] 'minibuffer-keyboard-quit)\n(define-key minibuffer-local-isearch-map [escape] 'minibuffer-keyboard-quit)\n\n;; Closest thing to easymotion\n(require 'ace-jump-mode)\n(define-key evil-normal-state-map (kbd \"SPC\") 'ace-jump-char-mode)\n","new_contents":"(require 'evil)\n(evil-mode 1) \n\n;; Use undo-tree so don't have to figure out the full undo\/redo system atm.\n;; Evil will detect this. \n(require 'undo-tree)\n\n;; Remap \";\" to \":\" and \",\" to \";\", like vimrc\n(define-key evil-motion-state-map \";\" 'evil-ex)\n(define-key evil-motion-state-map \",\" 'evil-repeat-find-char)\n\n;; Make cancel everything\n(define-key evil-normal-state-map [escape] 'keyboard-quit)\n(define-key evil-visual-state-map [escape] 'keyboard-quit)\n(define-key minibuffer-local-map [escape] 'minibuffer-keyboard-quit)\n(define-key minibuffer-local-ns-map [escape] 'minibuffer-keyboard-quit)\n(define-key minibuffer-local-completion-map [escape] 'minibuffer-keyboard-quit)\n(define-key minibuffer-local-must-match-map [escape] 'minibuffer-keyboard-quit)\n(define-key minibuffer-local-isearch-map [escape] 'minibuffer-keyboard-quit)\n\n;; Closest thing to easymotion\n(require 'ace-jump-mode)\n(setq ace-jump-mode-scope 'window) ;; it's quicker this way\n(define-key evil-normal-state-map (kbd \"SPC\") 'ace-jump-line-mode)\n","subject":"Tidy emacs jump mode setup","message":"Tidy emacs jump mode setup\n","lang":"Emacs Lisp","license":"mit","repos":"mattduck\/dotfiles,mattduck\/dotfiles"} {"commit":"9184056ea23beb90d25656a15b122b6a8cc4ce11","old_file":"emacs\/lisp\/prog-modes-config.el","new_file":"emacs\/lisp\/prog-modes-config.el","old_contents":";;; prog-modes-config -- general setup for progamming modes\n;;; Commentary:\n;;;\n;;; Code:\n(defun bcj\/prog-mode-hook ()\n \"Custom configuration for programming modes.\"\n (fci-mode t)\n (require 'idle-highlight)\n (idle-highlight t)\n (linum-relative-on)\n )\n(add-hook 'prog-mode-hook 'bcj\/prog-mode-hook)\n\n\n(provide 'prog-modes-config)\n;;; prog-modes-config.el ends here\n","new_contents":";;; prog-modes-config -- general setup for progamming modes\n;;; Commentary:\n;;;\n;;; Code:\n\n;; thanks to https:\/\/emacs.stackexchange.com\/questions\/21205\/flycheck-with-file-relative-eslint-executable\n(defun bcj\/use-eslint-from-node-modules ()\n (let* ((root (locate-dominating-file\n (or (buffer-file-name) default-directory)\n \"node_modules\"))\n (eslint (and root\n (expand-file-name \"node_modules\/eslint\/bin\/eslint.js\"\n root))))\n (when (and eslint (file-executable-p eslint))\n (setq-local flycheck-javascript-eslint-executable eslint))))\n(add-hook 'flycheck-mode-hook #'bcj\/use-eslint-from-node-modules)\n\n(defun bcj\/prog-mode-hook ()\n \"Custom configuration for programming modes.\"\n (fci-mode t)\n\n (use-package nlinum\n :init\n (global-nlinum-mode t))\n ;; (require 'idle-highlight)\n ;; (idle-highlight t)\n ;(linum-relative-on) ;;makes 400+ line files so laggy to scroll\/move!!\n ) ;\n(add-hook 'prog-mode-hook 'bcj\/prog-mode-hook)\n\n(provide 'prog-modes-config)\n;;; prog-modes-config.el ends here\n","subject":"Use local eslint executable for flycheck, remove slow packages","message":"Use local eslint executable for flycheck, remove slow packages\n\nUse the eslint executable that is present in the `node_modules\/` of\nthe current project, so that the correct .eslintrc config file can be\nfound by eslint.\n","lang":"Emacs Lisp","license":"mit","repos":"blaedj\/dotfiles,blaedj\/dotfiles,blaedj\/dotfiles,blaedj\/dotfiles"} {"commit":"a9844cb7b649f3c16d1772ede711a180fe441333","old_file":"lisp\/init-purescript.el","new_file":"lisp\/init-purescript.el","old_contents":"(when (maybe-require-package 'purescript-mode)\n (when (maybe-require-package 'psc-ide)\n (add-hook 'purescript-mode-hook\n (lambda ()\n (psc-ide-mode)\n (company-mode)\n (flycheck-mode)\n (turn-on-purescript-indentation)))))\n\n(provide 'init-purescript)\n","new_contents":"(when (maybe-require-package 'purescript-mode)\n (when (maybe-require-package 'psc-ide)\n (add-hook 'purescript-mode-hook\n (lambda ()\n (psc-ide-mode)\n (company-mode)\n (flycheck-mode)\n (turn-on-purescript-indentation))))\n (when (maybe-require-package 'add-node-modules-path)\n (after-load 'purescript-mode\n (add-hook 'purescript-mode-hook 'add-node-modules-path))))\n\n(provide 'init-purescript)\n","subject":"Use node_modules\/.bin path for executables in purescript-mode","message":"Use node_modules\/.bin path for executables in purescript-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"krzysz00\/emacs.d,emuio\/emacs.d,sgarciac\/emacs.d,benkha\/emacs.d,blueseason\/emacs.d,me020523\/emacs.d,cjqw\/emacs.d,lust4life\/emacs.d,braveoyster\/emacs.d,dcorking\/emacs.d,svenyurgensson\/emacs.d,arthurl\/emacs.d,kongfy\/emacs.d,purcell\/emacs.d,baohaojun\/emacs.d,kindoblue\/emacs.d,qianwan\/emacs.d,wegatron\/emacs.d,blueabysm\/emacs.d,gsmlg\/emacs.d,mmqmzk\/emacs.d"} {"commit":"f3d076d345fa5452dc9cffc91189fe432b822ec0","old_file":"setup-files\/setup-which-key.el","new_file":"setup-files\/setup-which-key.el","old_contents":";; Time-stamp: <2015-07-17 12:57:27 kmodi>\n\n;; Which Key\n;; https:\/\/github.com\/justbur\/emacs-which-key\n\n(use-package which-key\n :defer 15\n :config\n (progn\n (setq which-key-popup-type 'minibuffer) ; default\n ;; (setq which-key-popup-type 'side-window)\n\n (setq which-key-sort t) ; sort keys alphabetically\n\n (setq which-key-key-replacement-alist\n '((\"<\\\\(\\\\(C-\\\\|M-\\\\)*.+\\\\)>\" . \"\\\\1\")\n (\"left\" . \"◀\")\n (\"right\" . \"▶\")\n (\"up\" . \"▲\")\n (\"down\" . \"▼\")))\n\n (setq which-key-special-keys '(\"SPC\" \"TAB\" \"RET\" \"ESC\" \"DEL\"))\n\n (setq which-key-key-based-description-replacement-alist\n '((\"C-x 8\" . \"unicode\")\n (\"C-x a\" . \"abbrev\/expand\")\n (\"C-x r\" . \"rect\/reg\")\n (\"C-x w\" . \"hi-lock-map\")\n (\"C-c \/\" . \"engine-mode-map\")\n (\"C-x 8 0\" . \"ZWS\")))\n\n (which-key-mode 1)))\n\n\n(provide 'setup-which-key)\n","new_contents":";; Time-stamp: <2015-07-21 17:19:59 kmodi>\n\n;; Which Key\n;; https:\/\/github.com\/justbur\/emacs-which-key\n\n(use-package which-key\n :defer 15\n :config\n (progn\n (setq which-key-popup-type 'minibuffer) ; default\n ;; (setq which-key-popup-type 'side-window)\n\n (setq which-key-sort t) ; sort keys alphabetically\n\n (setq which-key-key-replacement-alist\n '((\"<\\\\(\\\\(C-\\\\|M-\\\\)*.+\\\\)>\" . \"\\\\1\")\n (\"left\" . \"◀\")\n (\"right\" . \"▶\")\n (\"up\" . \"▲\")\n (\"down\" . \"▼\")\n (\"next\" . \"PgDn\")\n (\"prior\" . \"PgUp\")))\n\n (setq which-key-special-keys '(\"SPC\" \"TAB\" \"RET\" \"ESC\" \"DEL\"))\n\n (setq which-key-key-based-description-replacement-alist\n '((\"C-x 8\" . \"unicode\")\n (\"C-x a\" . \"abbrev\/expand\")\n (\"C-x r\" . \"rect\/reg\")\n (\"C-x w\" . \"hi-lock-map\")\n (\"C-c \/\" . \"engine-mode-map\")\n (\"C-c C-v\" . \"org-babel\")\n (\"C-x 8 0\" . \"ZWS\")))\n\n ;; Paging\n (setq which-key-paging-prefixes '(\"C-x\" \"C-c\"))\n (setq which-key-paging-key \"\") ; Pg Down\n\n (which-key-mode 1)))\n\n\n(provide 'setup-which-key)\n","subject":"Add paging config for which-key","message":"Add paging config for which-key\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"92552e17853fad750aaab6afee97e6a6f2b7ef4c","old_file":"emacs\/mhc-process.el","new_file":"emacs\/mhc-process.el","old_contents":"(defvar mhc-process nil)\n\n(add-to-list 'process-coding-system-alist '(\"^mhc$\" . utf-8))\n\n(defun mhc-process-send-command (command)\n (with-current-buffer (process-buffer mhc-process)\n (delete-region (point-min) (point-max))\n (process-send-string mhc-process (concat command \"\\n\"))\n (let ((i 1))\n (while (not (and (> (point-max) 1)\n (eq (char-after (1- (point-max))) ?\\n)))\n (message (format \"Waiting mhc process...%d\" i))\n (setq i (1+ i))\n (accept-process-output mhc-process 0.5)))\n (read (buffer-substring (point-min) (1- (point-max))))))\n\n(defun mhc-start-process ()\n (interactive)\n (let ((base-dir (mhc-summary-folder-to-path mhc-base-folder)))\n (if (and (processp mhc-process)\n (eq (process-status mhc-process) 'run))\n (kill-process mhc-process))\n (setq mhc-process (start-process\n \"mhc\"\n (get-buffer-create \" *mhc-scan-process*\")\n \"mhc\"\n \"server\"\n (format \"--repository=%s\" base-dir)))\n (set-process-query-on-exit-flag mhc-process nil)\n mhc-process))\n\n(provide 'mhc-process)\n","new_contents":"(defvar mhc-process nil)\n\n(add-to-list 'process-coding-system-alist '(\"^mhc$\" . utf-8))\n\n(defun mhc-process-send-command (command)\n (with-current-buffer (process-buffer mhc-process)\n (delete-region (point-min) (point-max))\n (process-send-string mhc-process (concat command \"\\n\"))\n (let ((i 1))\n (while (not (and (> (point-max) 1)\n (eq (char-after (1- (point-max))) ?\\n)))\n (message (format \"Waiting mhc process...%d\" i))\n (setq i (1+ i))\n (accept-process-output mhc-process 0.5)))\n (read (buffer-substring (point-min) (1- (point-max))))))\n\n(defun mhc-start-process ()\n (interactive)\n (let ((base-dir (mhc-summary-folder-to-path mhc-base-folder))\n (process-connection-type nil)) ;; use PIPE not tty\n (if (and (processp mhc-process)\n (eq (process-status mhc-process) 'run))\n (kill-process mhc-process))\n (setq mhc-process (start-process\n \"mhc\"\n (get-buffer-create \" *mhc-scan-process*\")\n \"mhc\"\n \"server\"\n (format \"--repository=%s\" base-dir)))\n (set-process-query-on-exit-flag mhc-process nil)\n mhc-process))\n\n(provide 'mhc-process)\n","subject":"Use pipe not tty for communicating with mhc process","message":"Use pipe not tty for communicating with mhc process\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"river24\/mhc,river24\/mhc"} {"commit":"08ec6ad2e6ccb5b44efad2e34fafa6e980f315ef","old_file":"layers\/+web-services\/spotify\/packages.el","new_file":"layers\/+web-services\/spotify\/packages.el","old_contents":";;; packages.el --- spotify Layer packages File for Spacemacs\n;;\n;; Copyright (c) 2012-2017 Sylvain Benner & Contributors\n;;\n;; Author: Brian Hicks \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(setq spotify-packages\n '(\n spotify\n (helm-spotify :toggle (configuration-layer\/package-usedp 'helm))\n ))\n\n(defun spotify\/init-spotify ()\n (use-package spotify\n :defer t\n :init\n (progn\n (spacemacs\/declare-prefix \"am\" \"music\")\n (spacemacs\/declare-prefix \"ams\" \"Spotify\")\n (spacemacs\/set-leader-keys\n \"amsp\" 'spotify-playpause\n \"amsn\" 'spotify-next\n \"amsN\" 'spotify-previous\n \"amsQ\" 'spotify-quit))))\n\n(defun spotify\/init-helm-spotify ()\n (use-package helm-spotify\n :defer t\n :init (spacemacs\/set-leader-keys \"amsg\" 'helm-spotify)))\n","new_contents":";;; packages.el --- spotify Layer packages File for Spacemacs\n;;\n;; Copyright (c) 2012-2017 Sylvain Benner & Contributors\n;;\n;; Author: Brian Hicks \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(setq spotify-packages\n '(\n spotify\n (helm-spotify-plus :toggle (configuration-layer\/package-usedp 'helm))\n ))\n\n(defun spotify\/init-spotify ()\n (use-package spotify\n :defer t\n :init\n (progn\n (spacemacs\/declare-prefix \"am\" \"music\")\n (spacemacs\/declare-prefix \"ams\" \"Spotify\")\n (spacemacs\/set-leader-keys\n \"amsp\" 'spotify-playpause\n \"amsn\" 'spotify-next\n \"amsN\" 'spotify-previous\n \"amsQ\" 'spotify-quit))))\n\n(defun spotify\/init-helm-spotify-plus ()\n (use-package helm-spotify-plus\n :defer t\n :init (spacemacs\/set-leader-keys \"amsg\" 'helm-spotify-plus)))\n","subject":"Use helm-spotify-plus instead of helm-spotify","message":"Use helm-spotify-plus instead of helm-spotify\n\nhelm-spotify doesn't work anymore due to changes to the spotify web API\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"9c7508c181bb0615b746b8a658aaa52b59384f26","old_file":"modules\/editor\/lispy\/config.el","new_file":"modules\/editor\/lispy\/config.el","old_contents":";;; editor\/lispy\/config.el -*- lexical-binding: t; -*-\n\n(use-package! lispy\n :hook ((lisp-mode . lispy-mode)\n (emacs-lisp-mode . lispy-mode)\n (scheme-mode . lispy-mode)\n (racket-mode . lispy-mode)\n (hy-mode . lispy-mode)\n (lfe-mode . lispy-mode)\n (dune-mode . lispy-mode)\n (clojure-mode . lispy-mode))\n :config\n (setq lispy-close-quotes-at-end-p t)\n (add-hook 'lispy-mode-hook #'turn-off-smartparens-mode))\n\n\n(use-package! lispyville\n :when (featurep! :editor evil)\n :hook (lispy-mode . lispyville-mode)\n :init\n (setq lispyville-key-theme\n '((operators normal)\n c-w\n (prettify insert)\n (atom-movement t)\n slurp\/barf-lispy\n additional\n additional-insert))\n :config\n (lispyville-set-key-theme))\n","new_contents":";;; editor\/lispy\/config.el -*- lexical-binding: t; -*-\n\n(use-package! lispy\n :hook ((lisp-mode . lispy-mode)\n (emacs-lisp-mode . lispy-mode)\n (ielm-mode . lispy-mode)\n (scheme-mode . lispy-mode)\n (racket-mode . lispy-mode)\n (hy-mode . lispy-mode)\n (lfe-mode . lispy-mode)\n (dune-mode . lispy-mode)\n (clojure-mode . lispy-mode))\n :config\n (setq lispy-close-quotes-at-end-p t)\n (add-hook 'lispy-mode-hook #'turn-off-smartparens-mode))\n\n\n(use-package! lispyville\n :when (featurep! :editor evil)\n :hook (lispy-mode . lispyville-mode)\n :init\n (setq lispyville-key-theme\n '((operators normal)\n c-w\n (prettify insert)\n (atom-movement t)\n slurp\/barf-lispy\n additional\n additional-insert))\n :config\n (lispyville-set-key-theme))\n","subject":"Add ielm-mode to lipsy module hooks","message":"Add ielm-mode to lipsy module hooks\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs"} {"commit":"aba41fccc45ac8de6d041db542e37489ca90ce2a","old_file":"init-clojure.el","new_file":"init-clojure.el","old_contents":"(add-hook 'clojure-mode-hook 'pretty-lambdas)\n(add-hook 'clojure-mode-hook (lambda () (enable-paredit clojure-mode-map)))\n\n\n(setq clojure-src-root (expand-file-name \"~\/Projects\/External\"))\n\n(setq swank-clojure-jar-path (concat clojure-src-root \"\/clojure\/clojure.jar\")\n swank-clojure-extra-classpaths (list (concat clojure-src-root \"\/clojure-contrib\/clojure-contrib.jar\")))\n\n(require 'swank-clojure-autoload)\n\n\n(defun slime-clojure ()\n \"Fire up slime running the swank-clojure backend\"\n (interactive)\n (slime 'clojure))\n\n(provide 'init-clojure)\n","new_contents":"(add-hook 'clojure-mode-hook 'pretty-lambdas)\n(add-hook 'clojure-mode-hook (lambda () (enable-paredit clojure-mode-map)))\n\n\n(setq clojure-src-root (expand-file-name \"~\/Projects\/External\"))\n\n(setq swank-clojure-jar-path (concat clojure-src-root \"\/clojure\/clojure.jar\")\n swank-clojure-extra-classpaths (list (concat clojure-src-root \"\/clojure-contrib\/clojure-contrib.jar\")))\n\n(require 'swank-clojure-autoload)\n\n(eval-after-load \"slime\"\n '(progn\n ;; Ensure we get a REPL\n (slime-setup '(slime-repl))))\n\n\n(defun slime-clojure ()\n \"Fire up slime running the swank-clojure backend\"\n (interactive)\n (slime 'clojure))\n\n(provide 'init-clojure)\n","subject":"Enable Slime's REPL feature for clojure, now that that isn't the default behaviour","message":"Enable Slime's REPL feature for clojure, now that that isn't the default behaviour\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"Togal\/emacs.d,shafayetkhan\/emacs.d,zuoshifan\/emacs.d,jhpx\/emacs.d,YangXin\/emacs.d,qinshulei\/emacs.d,baohaojun\/emacs.d,farzadbekran\/emacs.d,roxolan\/emacs.d,zhaotai\/.emacs.d,atreeyang\/emacs.d,fengxl\/emacs.d,modkzs\/emcs.d,scorpionis\/emacs.d,zuoshifan\/emacs.d,gsmlg\/emacs.d,ruiyang\/emacs.d,cyjia\/emacs.d,blueabysm\/emacs.d,ilove0518\/emacs.d,blueseason\/emacs.d,lujianmei\/emacs.d,danfengcao\/emacs.d,qianwan\/emacs.d,farzadbekran\/emacs.d,cjqw\/emacs.d,haodaivshen\/emacs.d,pairyo\/emacs.d,kongfy\/emacs.d,LittleLmp\/emacs.d,jachinpy\/emacs.d,hophacker\/emacs.d,Jadecity\/PurcellEmacs.d,farzadbekran\/emacs.d,purcell\/emacs.d,zuoshifan\/emacs.d,zhuoyikang\/emacs.d,Enzo-Liu\/emacs.d,benkha\/emacs.d,whizzzkid\/emacs.d,jachinpy\/emacs.d,Shanicky\/emacs.d,jthetzel\/emacs.d,zuoshifan\/emacs.d,bibaijin\/emacs.d,caoyuanqi\/emacs.d,zuoshifan\/emacs.d,lromang\/emacs.d,46do14\/emacs.d,hkcqr\/emacs.d,zuoshifan\/emacs.d,mpwang\/emacs.d,alant\/emacs.d,zenith-john\/emacs.d,renatoriccio\/emacs.d,kindoblue\/emacs.d,braveoyster\/emacs.d,svenyurgensson\/emacs.d,farzadbekran\/emacs.d,YangXin\/emacs.d,krzysz00\/emacs.d,lust4life\/emacs.d,me020523\/emacs.d,boblannon\/emacs.d,dhanunjaya\/emacs.d,exclamaforte\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,Werewolflsp\/emacs.d,carlosliu\/emacs.d,mmqmzk\/emacs.d,zuoshifan\/emacs.d,emuio\/emacs.d,jkaessens\/emacs.d,ernest-dzf\/emacs.d,arthurl\/emacs.d,wenpincui\/emacs.d,DarkThrone\/emacs.d,Guoozz\/emacs.d,wegatron\/emacs.d,dcorking\/emacs.d,sgarciac\/emacs.d,ruiyang\/emacs.d,LKI\/emacs.d,farzadbekran\/emacs.d,dongdonghu\/.emacs.d"} {"commit":"e3f1c3f10a4d247a43b5d07d9961b2e42ddce81f","old_file":"modes\/projectile-conf.el","new_file":"modes\/projectile-conf.el","old_contents":";;; projectile-conf.el -- Settings for projectile.\n(eval-when-compile\n (require 'projectile))\n\n(custom-set-variables\n '(projectile-switch-project-action 'projectile-dired)\n '(projectile-mode-line\n '(:eval (format \" [%s]\" (projectile-project-name)))))\n\n(add-to-list 'projectile-globally-ignored-modes \"mu4e-.*-mode\")\n(add-to-list 'projectile-globally-ignored-modes \"org-agenda-mode\")\n\n(add-to-list 'projectile-project-root-files \"GNUmakefile\")\n(add-to-list 'projectile-project-root-files \"Rakefile\")\n(add-to-list 'projectile-project-root-files \"package.json\")\n(add-to-list 'projectile-project-root-files-bottom-up \".dir-locals.el\")\n\n(projectile-register-project-type\n 'edify '(\"default.nix\" \"courses\" \"content\")\n :compile \"nix-shell --run 'edify build courses\/*'\")\n\n(projectile-register-project-type\n 'haskell '(\"default.nix\" \"Setup.hs\")\n :compile \"nix-hs\")\n","new_contents":";;; projectile-conf.el -- Settings for projectile.\n(eval-when-compile\n (require 'projectile))\n\n(custom-set-variables\n '(projectile-switch-project-action 'projectile-dired)\n '(projectile-mode-line\n '(:eval (format \" [%s]\" (projectile-project-name)))))\n\n(add-to-list 'projectile-globally-ignored-modes \"mu4e-.*-mode\")\n(add-to-list 'projectile-globally-ignored-modes \"org-agenda-mode\")\n\n(add-to-list 'projectile-project-root-files \"GNUmakefile\")\n(add-to-list 'projectile-project-root-files \"Rakefile\")\n(add-to-list 'projectile-project-root-files \"package.json\")\n(add-to-list 'projectile-project-root-files-bottom-up \".dir-locals.el\")\n\n(projectile-register-project-type\n 'edify '(\"default.nix\" \"courses\" \"content\")\n :compile \"nix-shell --run 'eval \\\"$buildPhase\\\"'\")\n\n(projectile-register-project-type\n 'haskell '(\"default.nix\" \"Setup.hs\")\n :compile \"nix-hs\")\n","subject":"Update the edify rule to use $buildPhase","message":"projectile: Update the edify rule to use $buildPhase\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"b3f33fb17a0aa0af6773661d2dfe82f51df190d9","old_file":"modules\/init-ruby.el","new_file":"modules\/init-ruby.el","old_contents":";;;; Configuration for Ruby\n;;;; https:\/\/github.com\/zenspider\/enhanced-ruby-mode\n\n(use-package enh-ruby-mode\n :ensure t\n :defer t\n :mode (\"\\\\.rb$\" . enh-ruby-mode)\n :interpreter (\"ruby\" . enh-ruby-mode))\n\n(provide 'init-ruby)\n","new_contents":";;;; Configuration for Ruby\n;;;; https:\/\/github.com\/zenspider\/enhanced-ruby-mode\n\n(use-package enh-ruby-mode\n :ensure t\n :defer t\n :mode (\"\\\\.rb'\" . enh-ruby-mode)\n :interpreter (\"ruby\" . enh-ruby-mode))\n\n(provide 'init-ruby)\n","subject":"Use smarter syntax for ruby files","message":"Use smarter syntax for ruby files\n","lang":"Emacs Lisp","license":"mit","repos":"pkryger\/exordium"} {"commit":"b3c2c211cc4738a76d43c1a3af8dbc40382636bf","old_file":"user-lisp\/rust-customisations.el","new_file":"user-lisp\/rust-customisations.el","old_contents":"(require 'flycheck)\n(add-hook 'flycheck-mode-hook #'flycheck-rust-setup)\n\n(provide 'rust-customisations)\n","new_contents":"(require 'flycheck)\n(add-hook 'flycheck-mode-hook #'flycheck-rust-setup)\n\n(add-hook 'rust-mode-hook #'flycheck-mode)\n\n(provide 'rust-customisations)\n","subject":"Use flycheck for all rust buffers.","message":"Use flycheck for all rust buffers.\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"9becc1229bd12ea6b05ac889abea7ef6c88d88dd","old_file":"init-marmalade.el","new_file":"init-marmalade.el","old_contents":";;; Handy code for uploading new versions of my own packages to marmalade\n\n(autoload 'marmalade-upload-buffer \"marmalade\")\n\n(defun latest-git-tag ()\n (replace-regexp-in-string\n \"[ \\t\\n]*$\"\n \"\"\n (shell-command-to-string \"git tag|sort -n|tail -1\"))) ;; TODO: sort versions properly\n\n(defun update-version-header (val)\n (save-excursion\n (beginning-of-buffer)\n (re-search-forward \"^;;;? ?Version:\")\n (kill-line)\n (insert \" \" val)))\n\n(defun submit-to-marmalade (buf)\n (interactive \"bSubmit buffer: \")\n (with-current-buffer buf\n (let ((tag (latest-git-tag)))\n (unless tag\n (error \"Not tagged\"))\n (update-version-header tag)\n (marmalade-upload-buffer buf))))\n\n\n(provide 'init-marmalade)\n","new_contents":";;; Handy code for uploading new versions of my own packages to marmalade\n\n(autoload 'marmalade-upload-buffer \"marmalade\")\n\n(defun latest-git-tag ()\n (replace-regexp-in-string\n \"[ \\t\\n]*$\"\n \"\"\n (shell-command-to-string \"git tag|sort -n|tail -1\"))) ;; TODO: sort versions properly\n\n(defun update-version-header (val)\n (save-excursion\n (beginning-of-buffer)\n (re-search-forward \"^;;;? ?Version:\")\n (kill-line)\n (insert \" \" val)))\n\n(defun submit-to-marmalade (buf)\n (interactive \"bSubmit buffer: \")\n (with-current-buffer buf\n (let ((tag (latest-git-tag)))\n (unless tag\n (error \"Not tagged\"))\n (update-version-header tag)\n (marmalade-upload-buffer buf)\n (revert-buffer t t)\n (message \"Submitted version %s to marmalade\" tag))))\n\n\n(provide 'init-marmalade)\n","subject":"Revert source buffer after submitting to maramalade","message":"Revert source buffer after submitting to maramalade\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"Guoozz\/emacs.d,emuio\/emacs.d,mpwang\/emacs.d,ernest-dzf\/emacs.d,zuoshifan\/emacs.d,Enzo-Liu\/emacs.d,atreeyang\/emacs.d,qinshulei\/emacs.d,fengxl\/emacs.d,scorpionis\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,braveoyster\/emacs.d,farzadbekran\/emacs.d,sgarciac\/emacs.d,jhpx\/emacs.d,zuoshifan\/emacs.d,wegatron\/emacs.d,ruiyang\/emacs.d,shafayetkhan\/emacs.d,cjqw\/emacs.d,zuoshifan\/emacs.d,zhaotai\/.emacs.d,jachinpy\/emacs.d,blueseason\/emacs.d,hophacker\/emacs.d,dcorking\/emacs.d,ruiyang\/emacs.d,zuoshifan\/emacs.d,qianwan\/emacs.d,Togal\/emacs.d,hkcqr\/emacs.d,46do14\/emacs.d,YangXin\/emacs.d,farzadbekran\/emacs.d,Werewolflsp\/emacs.d,zuoshifan\/emacs.d,caoyuanqi\/emacs.d,pairyo\/emacs.d,LKI\/emacs.d,kongfy\/emacs.d,arthurl\/emacs.d,mmqmzk\/emacs.d,zuoshifan\/emacs.d,wenpincui\/emacs.d,lust4life\/emacs.d,cyjia\/emacs.d,farzadbekran\/emacs.d,lujianmei\/emacs.d,zuoshifan\/emacs.d,gsmlg\/emacs.d,purcell\/emacs.d,whizzzkid\/emacs.d,krzysz00\/emacs.d,dhanunjaya\/emacs.d,jthetzel\/emacs.d,LittleLmp\/emacs.d,bibaijin\/emacs.d,zhuoyikang\/emacs.d,danfengcao\/emacs.d,farzadbekran\/emacs.d,blueabysm\/emacs.d,Jadecity\/PurcellEmacs.d,ilove0518\/emacs.d,alant\/emacs.d,DarkThrone\/emacs.d,Shanicky\/emacs.d,zuoshifan\/emacs.d,renatoriccio\/emacs.d,zenith-john\/emacs.d,roxolan\/emacs.d,YangXin\/emacs.d,benkha\/emacs.d,carlosliu\/emacs.d,boblannon\/emacs.d,farzadbekran\/emacs.d,dongdonghu\/.emacs.d,jkaessens\/emacs.d,baohaojun\/emacs.d,lromang\/emacs.d,haodaivshen\/emacs.d,exclamaforte\/emacs.d,me020523\/emacs.d,svenyurgensson\/emacs.d,modkzs\/emcs.d,kindoblue\/emacs.d"} {"commit":"da1ea461d66d1206f89e694b9e7e63734a276052","old_file":"lisp\/init-local.el","new_file":"lisp\/init-local.el","old_contents":"(provide 'init-local)\n\n;; rails reloaded plugin\n(push \"~\/.emacs.d\/site-lisp\/rails-reloaded\" load-path)\n(require 'rails-autoload)\n","new_contents":";; rails reloaded plugin\n(push \"~\/.emacs.d\/site-lisp\/rails-reloaded\" load-path)\n(require 'rails-autoload)\n\n;; Standard ML https:\/\/class.coursera.org\/proglang-003\/wiki\/view?page=smlEmacsInstall\n(setenv \"PATH\" (concat \"\/home\/david1\/workspace\/sml\/bin:\" (getenv \"PATH\")))\n(setq exec-path (cons \"\/home\/david1\/workspace\/sml\/bin\" exec-path))\n\n(require-package 'sml-mode)\n(require 'sml-mode)\n\n(provide 'init-local)\n","subject":"Add support for Standard ML","message":"Add support for Standard ML\n\nincluding path to a local binary\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"dcorking\/emacs.d"} {"commit":"22c145105d3756d94ba2e257d36deac8696a5d24","old_file":"modules\/emacs\/electric\/autoload.el","new_file":"modules\/emacs\/electric\/autoload.el","old_contents":";;; emacs\/electric\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autodef\n(defun set-electric! (modes &rest plist)\n \"Declare :words (list of strings) or :chars (lists of chars) in MODES that\ntrigger electric indentation.\"\n (declare (indent 1))\n (unless plist\n (signal 'wrong-number-of-arguments\n (list '(:char :words) plist)))\n (cl-destructuring-bind (&key chars words) plist\n (dolist (mode (doom-enlist modes))\n (let ((fn (intern (format \"+electric|init-%s\" mode))))\n (fset fn\n (lambda ()\n (electric-indent-local-mode +1)\n (if chars (setq electric-indent-chars chars))\n (if words (setq +electric-indent-words words))))\n (add-hook (intern (format \"%s-hook\" mode)) fn)))))\n\n;; FIXME obsolete :electric\n;;;###autoload\n(def-setting! :electric (modes &rest plist)\n :obsolete set-electric!\n `(set-electric! ,modes ,@plist))\n","new_contents":";;; emacs\/electric\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autodef\n(defun set-electric! (modes &rest plist)\n \"Declare :words (list of strings) or :chars (lists of chars) in MODES that\ntrigger electric indentation.\"\n (declare (indent 1))\n (dolist (mode (doom-enlist modes))\n (let ((hook (intern (format \"%s-hook\" mode)))\n (fn (intern (format \"+electric|init-%s\" mode))))\n (cond ((null (car-safe plist))\n (remove-hook hook fn)\n (unintern fn nil))\n ((fset fn\n (lambda ()\n (cl-destructuring-bind (&key chars words) plist\n (electric-indent-local-mode +1)\n (if chars (setq electric-indent-chars chars))\n (if words (setq +electric-indent-words words)))))\n (add-hook hook fn))))))\n\n;; FIXME obsolete :electric\n;;;###autoload\n(def-setting! :electric (modes &rest plist)\n :obsolete set-electric!\n `(set-electric! ,modes ,@plist))\n","subject":"Add unset capability to set-electric!","message":"Add unset capability to set-electric!\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom"} {"commit":"6b1d630296fccf1bdc2c2f83d7539a2fe71e1c53","old_file":"exercises\/luhn\/example.el","new_file":"exercises\/luhn\/example.el","old_contents":";;; luhn.el --- luhn (exercism)\n\n;;; Commentary:\n\n;;; Code:\n\n(require 'cl-lib)\n\n(defun luhn-p (dastring)\n \"Check if an input string DASTRING is valid using lhun algorithm.\"\n (let ((str (replace-regexp-in-string \" \" \"\" dastring)))\n (if (string-match-p \"[^0-9 ]\" str)\n\t(error \"String contains invalid character\")\n (if (<= (length str) 1)\n\t nil\n\t(let* ((digit-list (reverse (mapcar (lambda (x) (- x 48))\n\t\t\t\t (string-to-list (replace-regexp-in-string \" \" \"\" str)))))\n\t (digit-list-with-index (cl-pairlis (number-sequence 0 (- (length digit-list) 1)) digit-list)))\n\n\t (zerop (mod (apply #'+ (mapcar (lambda (x) (if (equal 1 (mod (car x) 2))\n\t\t\t\t\t (if (> (* 2 (cdr x)) 9)\n\t\t\t\t\t\t(- (* 2 (cdr x)) 9)\n\t\t\t\t\t (* 2 (cdr x)))\n\t\t\t\t\t (cdr x)))\n\t\t\t\t\t digit-list-with-index))\n\t\t\t10))))))))\n\n(provide 'luhn)\n;;; luhn.el ends here\n","new_contents":";;; luhn.el --- luhn (exercism)\n\n;;; Commentary:\n\n;;; Code:\n\n(require 'cl-lib)\n\n(defun luhn-p (dastring)\n \"Check if an input string DASTRING is valid using lhun algorithm.\"\n (let ((str (replace-regexp-in-string \" \" \"\" dastring)))\n (if (string-match-p \"[^0-9 ]\" str)\n\t(error \"String contains invalid character\")\n (if (<= (length str) 1)\n\t nil\n\t(let* ((digit-list (reverse (mapcar (lambda (x) (- x 48))\n\t\t\t\t (string-to-list str))))\n\t (digit-list-with-index (cl-pairlis (number-sequence 0 (- (length digit-list) 1)) digit-list)))\n\n\t (zerop (mod (apply #'+ (mapcar (lambda (x) (if (equal 1 (mod (car x) 2))\n\t\t\t\t\t (if (> (* 2 (cdr x)) 9)\n\t\t\t\t\t\t(- (* 2 (cdr x)) 9)\n\t\t\t\t\t (* 2 (cdr x)))\n\t\t\t\t\t (cdr x)))\n\t\t\t\t\t digit-list-with-index))\n\t\t\t10))))))))\n\n(provide 'luhn)\n;;; luhn.el ends here\n","subject":"Remove duplicated call to replace-regexp-in-string","message":"Remove duplicated call to replace-regexp-in-string\n","lang":"Emacs Lisp","license":"mit","repos":"exercism\/xelisp"} {"commit":"45ddd7a9dba8a013a15040a8988af87d0e18f7cf","old_file":".emacs.d\/config\/pre-package-load.el","new_file":".emacs.d\/config\/pre-package-load.el","old_contents":"(setq inhibit-startup-screen t)\n(setq make-backup-files nil)\n(setq highlight-nonselected-windows t)\n(setq browse-url-browser-function 'browse-url-generic\n browse-url-generic-program \"firefox\")\n(setq bookmark-save-flag 1) ; save bookmarks after every modifications\n\n(setq save-place-file \"~\/.emacs.d\/saveplace\")\n(setq-default save-place t)\n(require 'saveplace)\n\n(setq load-prefer-newer t)\n\n(add-hook 'text-mode-hook 'flyspell-mode)\n(add-hook 'prog-mode-hook 'hs-minor-mode)\n\n(global-linum-mode)\n(line-number-mode)\n(column-number-mode)\n(size-indication-mode)\n\n;; speedbar ;; replaced by sr-speedbar\n;; (when (window-system)\n;; (speedbar t)\n;; (add-hook 'speedbar-mode-hook\n;; \t '(lambda ()\n;; \t (interactive)\n;; \t (other-frame 0))))\n\n;; (add-hook 'after-change-major-mode-hook 'hl-line-mode) ; hl-line-mode is a buffer-local minor mode\n\n;;(global-set-key '[f9] 'shell)\n(global-set-key '[f11] 'flyspell-mode)\n(global-set-key '[f12] 'compile)\n","new_contents":"(setq inhibit-startup-screen t)\n(setq make-backup-files nil)\n(setq highlight-nonselected-windows t)\n(setq browse-url-browser-function 'browse-url-generic\n browse-url-generic-program \"firefox\")\n(setq bookmark-save-flag 1) ; save bookmarks after every modifications\n\n(setq save-place-file \"~\/.emacs.d\/saveplace\")\n(setq-default save-place t)\n(require 'saveplace)\n\n(setq load-prefer-newer t)\n\n(add-hook 'text-mode-hook 'flyspell-mode)\n(add-hook 'prog-mode-hook 'hs-minor-mode)\n\n(global-linum-mode)\n(line-number-mode)\n(column-number-mode)\n(size-indication-mode)\n\n(tool-bar-mode -1)\n\n;; speedbar ;; replaced by sr-speedbar\n;; (when (window-system)\n;; (speedbar t)\n;; (add-hook 'speedbar-mode-hook\n;; \t '(lambda ()\n;; \t (interactive)\n;; \t (other-frame 0))))\n\n;; (add-hook 'after-change-major-mode-hook 'hl-line-mode) ; hl-line-mode is a buffer-local minor mode\n\n;;(global-set-key '[f9] 'shell)\n(global-set-key '[f11] 'flyspell-mode)\n(global-set-key '[f12] 'compile)\n","subject":"Disable tool-bar-mode on startup to save screen space.","message":"Disable tool-bar-mode on startup to save screen space.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs"} {"commit":"0e051d72b8e7b0f719a6c680aa4808e78f0b67e7","old_file":".emacs.d\/lisp\/packages\/ido-use.el","new_file":".emacs.d\/lisp\/packages\/ido-use.el","old_contents":";;; ido-use.el --- Intelligent auto-completion (builtin package)\n\n(use-package ido\n :init\n (setq ido-enable-flex-matching t\n ido-everywhere t)\n\n :config\n (ido-mode 1)\n (ido-everywhere 1)\n\n (setq ido-create-new-buffer 'always)) ; Let ido make new files\n\n(use-package smex\n :config\n (smex-initialize)\n\n (global-set-key (kbd \"M-x\") 'smex)\n (global-set-key (kbd \"M-X\") 'smex-major-mode-commands)\n (global-set-key (kbd \"C-c C-c M-x\") 'execute-extended-command))\n\n(use-package ido-ubiquitous\n :config\n (ido-ubiquitous-mode 1))\n\n(provide 'ido-use)\n\n;;; ido-use.el ends here\n","new_contents":";;; ido-use.el --- Intelligent auto-completion (builtin package)\n\n(use-package ido\n :init\n (setq ido-enable-flex-matching t\n ido-everywhere t)\n\n :config\n (ido-mode 1)\n (ido-everywhere 1)\n\n (setq ido-create-new-buffer 'always)) ; Let ido make new files\n\n(use-package smex\n :config\n (smex-initialize)\n\n (global-set-key (kbd \"M-x\") 'smex)\n (global-set-key (kbd \"M-X\") 'smex-major-mode-commands)\n (global-set-key (kbd \"C-c C-c M-x\") 'execute-extended-command))\n\n(use-package ido-ubiquitous\n :config\n (ido-ubiquitous-mode 1))\n\n(use-package recentf\n :config\n (recentf-mode 1)\n\n (defun ido-use\/recentf-ido-find-file ()\n \"Open list of most recently used files with ido.\"\n (interactive)\n (let ((file (ido-completing-read \"Recent file: \" recentf-list nil t)))\n (when file\n (find-file file))))\n\n (global-set-key (kbd \"C-x C-r\") 'ido-use\/recentf-ido-find-file)\n\n (setq recentf-max-saved-items 50))\n\n(provide 'ido-use)\n\n;;; ido-use.el ends here\n","subject":"Add ability to open recently used files with ido","message":"Add ability to open recently used files with ido\n","lang":"Emacs Lisp","license":"mit","repos":"strburst\/dotfiles"} {"commit":"8b2a8db4fdfb435e08f3abfbd8500c4cffd01db2","old_file":"lisp\/init-keys.el","new_file":"lisp\/init-keys.el","old_contents":"(defvar my-keys-minor-mode-map (make-keymap) \"my-keys-minor-mode keymap.\")\n\n;; transpose lines\n(define-key my-keys-minor-mode-map (kbd \"C-q\") 'transpose-lines)\n\n;; compare with previous version\n(define-key my-keys-minor-mode-map (kbd \"M-P\") 'vc-version-ediff)\n\n;; transpose frame\n(require 'transpose-frame)\n(define-key my-keys-minor-mode-map (kbd \"C-t\") 'flop-frame)\n\n(define-key my-keys-minor-mode-map (kbd \"M-k\") 'kill-this-buffer)\n\n;; pretty replace using anzu\n(require 'anzu)\n(global-anzu-mode)\n(global-set-key (kbd \"M-%\") 'anzu-query-replace)\n(global-set-key (kbd \"C-M-%\") 'anzu-query-replace-regexp)\n\n;; -----------------\n(define-minor-mode my-keys-minor-mode\n \"A minor mode so that my key settings override annoying major modes.\"\n t \" my-keys\" 'my-keys-minor-mode-map)\n\n(my-keys-minor-mode 1)\n\n(defun my-minibuffer-setup-hook ()\n (my-keys-minor-mode 0))\n\n(add-hook 'minibuffer-setup-hook 'my-minibuffer-setup-hook)\n;; -----------------\n\n(provide 'init-keys)\n","new_contents":"(defvar my-keys-minor-mode-map (make-keymap) \"my-keys-minor-mode keymap.\")\n\n;; transpose lines\n(define-key my-keys-minor-mode-map (kbd \"C-q\") 'transpose-lines)\n\n;; compare with previous version\n(define-key my-keys-minor-mode-map (kbd \"M-P\") 'vc-version-ediff)\n\n;; transpose frame\n(require 'transpose-frame)\n(define-key my-keys-minor-mode-map (kbd \"C-t\") 'flop-frame)\n\n(define-key my-keys-minor-mode-map (kbd \"M-k\") 'kill-this-buffer)\n\n;; -----------------\n(define-minor-mode my-keys-minor-mode\n \"A minor mode so that my key settings override annoying major modes.\"\n t \" my-keys\" 'my-keys-minor-mode-map)\n\n(my-keys-minor-mode 1)\n\n(defun my-minibuffer-setup-hook ()\n (my-keys-minor-mode 0))\n\n(add-hook 'minibuffer-setup-hook 'my-minibuffer-setup-hook)\n;; -----------------\n\n(provide 'init-keys)\n","subject":"Move anzu shortcut to his right init file","message":"[*] Move anzu shortcut to his right init file\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"renatoriccio\/emacs.d"} {"commit":"bd01ce873c4bfcca529acf69e66be451ba672721","old_file":"emacs\/layers\/Wolfy87\/config.el","new_file":"emacs\/layers\/Wolfy87\/config.el","old_contents":";; Raise the GC threshold massively.\n(setq gc-cons-threshold 20000000)\n\n;; Enable spell checking in code and IRC.\n(add-hook 'text-mode-hook 'flyspell-mode)\n(add-hook 'prog-mode-hook 'flyspell-prog-mode)\n(erc-spelling-mode 1)\n\n;; Enable flycheck everywhere.\n(global-flycheck-mode)\n\n;; Display all whitespace.\n(require 'whitespace)\n(setq whitespace-style '(face\n tabs\n tab-mark\n trailing))\n(global-whitespace-mode)\n","new_contents":";; Raise the GC threshold massively.\n(setq gc-cons-threshold 20000000)\n\n;; Enable spell checking in code and IRC.\n(add-hook 'text-mode-hook 'flyspell-mode)\n(add-hook 'prog-mode-hook 'flyspell-prog-mode)\n(erc-spelling-mode 1)\n\n;; Enable flycheck everywhere.\n(global-flycheck-mode)\n\n;; Display all whitespace.\n(require 'whitespace)\n(setq whitespace-style '(face\n tabs\n tab-mark\n trailing))\n(global-whitespace-mode)\n\n;; Indentation for HTML should be four spaces.\n(setq sgml-basic-offset 4)\n","subject":"Set HTML indentation to four spaces.","message":"Set HTML indentation to four spaces.\n","lang":"Emacs Lisp","license":"unlicense","repos":"Wolfy87\/dotfiles,Wolfy87\/dotfiles,dk0104\/dotfiles,dk0104\/dotfiles,elleryatgmail\/dotfiles,Olical\/dotfiles,FrankCardillo\/dotfiles,FrankCardillo\/dotfiles,elleryatgmail\/dotfiles"} {"commit":"8b9d03c0f0fdccda8df9168aabe281166511440d","old_file":"emacs\/.emacs.d\/packages\/python.el","new_file":"emacs\/.emacs.d\/packages\/python.el","old_contents":"(use-package pyenv-mode\n :init\n :ensure t\n :config (pyenv-mode)\n\n (setenv \"WORKON_HOME\" \"~\/.pyenv\/versions\/\")\n (add-to-list 'exec-path \"~\/.pyenv\/shims\")\n (add-hook 'projectile-switch-project-hook 'projectile-pyenv-mode-set)\n (add-hook 'python-mode-hook 'pyenv-mode))\n\n(use-package pyenv-mode-auto\n :ensure t)\n\n(use-package elpy\n :ensure t\n :defer t\n :init\n (advice-add 'python-mode :before 'elpy-enable))\n","new_contents":"(use-package pyenv-mode\n :init\n :ensure t\n :config (pyenv-mode)\n\n (setenv \"WORKON_HOME\" \"~\/.pyenv\/versions\/\")\n (add-to-list 'exec-path \"~\/.pyenv\/shims\")\n (add-hook 'projectile-switch-project-hook 'projectile-pyenv-mode-set)\n (add-hook 'python-mode-hook 'pyenv-mode))\n\n(use-package pyenv-mode-auto\n :ensure t)\n\n(use-package elpy\n :ensure t\n :defer t\n :config\n (setq elpy-modules (delete 'elpy-module-highlight-indentation elpy-modules))\n :init\n (advice-add 'python-mode :before 'elpy-enable))\n","subject":"Disable highligh-indentation minor-mode on elpy","message":"Emacs: Disable highligh-indentation minor-mode on elpy\n","lang":"Emacs Lisp","license":"mit","repos":"benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles"} {"commit":"14cc9e31f40db80216f983e544db6018f5cf51a3","old_file":"exercises\/crypto-square\/example.el","new_file":"exercises\/crypto-square\/example.el","old_contents":"(defun normalize-text (string)\n (replace-regexp-in-string \"[^a-z0-9]\" \"\" (downcase string)))\n\n(defun find-rectangle-size (string)\n (ceiling (sqrt (length string))))\n\n(defun chop-string (string columns)\n (with-temp-buffer\n (insert string)\n (goto-char (point-min))\n (while (not (eobp))\n (ignore-errors (forward-char columns))\n (insert \"\\n\"))\n (split-string (buffer-string) \"\\n\" t)))\n\n(defun strings-column (strings column)\n (mapconcat (lambda (string)\n (if (< column (length string))\n (char-to-string (aref string column))\n \" \"))\n strings \"\"))\n\n(defun transpose-strings (strings columns)\n (mapcar (lambda (col) (strings-column strings col))\n (number-sequence 0 (1- columns))))\n\n(defun encipher (plaintext)\n (let* ((text (normalize-text plaintext))\n (columns (find-rectangle-size text))\n (strings (chop-string text columns))\n (transposed (transpose-strings strings columns)))\n (mapconcat 'identity transposed \" \")))\n","new_contents":";;; crypto-square.el --- Crypto Square (exercism)\n\n;;; Commentary:\n\n;;; Code:\n\n(defun normalize-text (string)\n (replace-regexp-in-string \"[^a-z0-9]\" \"\" (downcase string)))\n\n(defun find-rectangle-size (string)\n (ceiling (sqrt (length string))))\n\n(defun chop-string (string columns)\n (with-temp-buffer\n (insert string)\n (goto-char (point-min))\n (while (not (eobp))\n (ignore-errors (forward-char columns))\n (insert \"\\n\"))\n (split-string (buffer-string) \"\\n\" t)))\n\n(defun strings-column (strings column)\n (mapconcat (lambda (string)\n (if (< column (length string))\n (char-to-string (aref string column))\n \" \"))\n strings \"\"))\n\n(defun transpose-strings (strings columns)\n (mapcar (lambda (col) (strings-column strings col))\n (number-sequence 0 (1- columns))))\n\n(defun encipher (plaintext)\n (let* ((text (normalize-text plaintext))\n (columns (find-rectangle-size text))\n (strings (chop-string text columns))\n (transposed (transpose-strings strings columns)))\n (mapconcat 'identity transposed \" \")))\n\n(provide 'crypto-square)\n;;; crypto-square.el ends here\n","subject":"Add code commentary to exemplary solution","message":"Add code commentary to exemplary solution\n","lang":"Emacs Lisp","license":"mit","repos":"exercism\/xelisp"} {"commit":"6201e6e407c65551cfed6facfb13b6bf7d131d80","old_file":"emacs.d\/custom-keys.el","new_file":"emacs.d\/custom-keys.el","old_contents":";; Keyboard bindings\n\n;;;###autoload\n(progn\n ;; Font size\n (define-key global-map (kbd \"C-+\") 'text-scale-increase)\n (define-key global-map (kbd \"C--\") 'text-scale-decrease)\n\n ;; Use regex searches by default.\n (global-set-key (kbd \"C-s\") 'isearch-forward-regexp)\n (global-set-key (kbd \"\\C-r\") 'isearch-backward-regexp)\n (global-set-key (kbd \"C-M-s\") 'isearch-forward)\n (global-set-key (kbd \"C-M-r\") 'isearch-backward)\n\n ;; M-S-6 is awkward\n (global-set-key (kbd \"C-c q\") 'join-line)\n\n ;; Help should search more than just commands\n (global-set-key (kbd \"C-h a\") 'apropos)\n\n (global-set-key (kbd \"C-t\") 'textmate-goto-file)\n\n (global-set-key (kbd \"C-x m\") 'magit-status)\n (global-set-key (kbd \"M-s\") 'fixup-whitespace)\n)\n\n;; Open tabs in Aquamacs\n(if (featurep 'aquamacs)\n (global-set-key (kbd \"A-T\") 'new-tab))\n\n(provide 'custom-keys)","new_contents":";; Keyboard bindings\n\n;;;###autoload\n(progn\n ;; Font size\n (define-key global-map (kbd \"C-+\") 'text-scale-increase)\n (define-key global-map (kbd \"C--\") 'text-scale-decrease)\n\n ;; Use regex searches by default.\n (global-set-key (kbd \"C-s\") 'isearch-forward-regexp)\n (global-set-key (kbd \"\\C-r\") 'isearch-backward-regexp)\n (global-set-key (kbd \"C-M-s\") 'isearch-forward)\n (global-set-key (kbd \"C-M-r\") 'isearch-backward)\n\n ;; M-S-6 is awkward\n (global-set-key (kbd \"C-c q\") 'join-line)\n (global-set-key (kbd \"M-j\")\n (lambda ()\n (interactive)\n (join-line -1)))\n\n ;; Help should search more than just commands\n (global-set-key (kbd \"C-h a\") 'apropos)\n\n (global-set-key (kbd \"C-t\") 'textmate-goto-file)\n\n (global-set-key (kbd \"C-x m\") 'magit-status)\n (global-set-key (kbd \"M-s\") 'fixup-whitespace)\n)\n\n;; Open tabs in Aquamacs\n(if (featurep 'aquamacs)\n (global-set-key (kbd \"A-T\") 'new-tab))\n\n(provide 'custom-keys)","subject":"Add additional key binding for join-line","message":"Add additional key binding for join-line\n","lang":"Emacs Lisp","license":"mit","repos":"gmwils\/dotfiles,gmwils\/dotfiles,gmwils\/dotfiles"} {"commit":"8ecae58de60c7beccee2c947abb28574afbcc3c3","old_file":".emacs.d\/lisp\/pjs\/pjs-emacs-lisp.el","new_file":".emacs.d\/lisp\/pjs\/pjs-emacs-lisp.el","old_contents":"(defun pjs-add-eval-buffer-binding ()\n (local-set-key (kbd \"C-c C-k\") 'eval-buffer))\n\n(provide 'pjs-emacs-lisp)\n","new_contents":"(defun pjs-add-eval-buffer-binding ()\n (local-set-key (kbd \"C-c C-k\") 'eval-buffer)\n (setq fill-column 80))\n\n(provide 'pjs-emacs-lisp)\n","subject":"Use fill-column 80 for emacs lisp.","message":"Use fill-column 80 for emacs lisp.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"pjstadig\/dotfiles,pjstadig\/dotfiles"} {"commit":"259d40cb6c35786908b0a2154253186ca63d6637","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"((js2-mode . ((indent-tabs-mode . nil)\n (js2-basic-offset . 2)\n (show-trailing-whitespace . t))))\n","new_contents":"((js-mode . ((indent-tabs-mode . nil)\n (js-indent-level . 2)\n (show-trailing-whitespace . t))))\n","subject":"Use js-mode instead of js2-mode","message":"Use js-mode instead of js2-mode\n","lang":"Emacs Lisp","license":"mit","repos":"droonga\/express-droonga,droonga\/express-droonga,KitaitiMakoto\/express-droonga,KitaitiMakoto\/express-droonga"} {"commit":"9d450afe8a5b0d604a5e0cb59695d1a126f44dca","old_file":"setup-paredit.el","new_file":"setup-paredit.el","old_contents":";; My keybindings for paredit\n\n(require 'paredit)\n\n(defun paredit-wrap-round-from-behind ()\n (interactive)\n (forward-sexp -1)\n (paredit-wrap-round)\n (insert \" \")\n (forward-char -1))\n\n(defun setup-paredit-for-mode-map (mode-map)\n (define-key mode-map (kbd \"s-\") 'paredit-raise-sexp)\n (define-key mode-map (kbd \"s-\") 'paredit-forward-slurp-sexp)\n (define-key mode-map (kbd \"s-8\") 'paredit-wrap-round)\n (define-key mode-map (kbd \"s-9\") 'paredit-wrap-round-from-behind)\n (define-key mode-map (kbd \"s-\") 'paredit-splice-sexp-killing-backward)\n (define-key mode-map (kbd \"s-t\") 'transpose-sexps))\n\n(eval-after-load \"lisp-mode\" '(setup-paredit-for-mode-map emacs-lisp-mode-map))\n(eval-after-load \"clojure-mode\" '(setup-paredit-for-mode-map clojure-mode-map))\n\n(provide 'setup-paredit)\n","new_contents":";; My keybindings for paredit\n\n(require 'paredit)\n\n(defun paredit-wrap-round-from-behind ()\n (interactive)\n (forward-sexp -1)\n (paredit-wrap-round)\n (insert \" \")\n (forward-char -1))\n\n(defun setup-paredit-for-mode-map (mode-map)\n (define-key mode-map (kbd \"s-\") 'paredit-raise-sexp)\n (define-key mode-map (kbd \"s-\") 'paredit-forward-slurp-sexp)\n (define-key mode-map (kbd \"s-\") 'paredit-forward-barf-sexp)\n (define-key mode-map (kbd \"s-8\") 'paredit-wrap-round)\n (define-key mode-map (kbd \"s-9\") 'paredit-wrap-round-from-behind)\n (define-key mode-map (kbd \"s-\") 'paredit-splice-sexp-killing-backward)\n (define-key mode-map (kbd \"s-t\") 'transpose-sexps))\n\n(eval-after-load \"lisp-mode\" '(setup-paredit-for-mode-map emacs-lisp-mode-map))\n(eval-after-load \"clojure-mode\" '(setup-paredit-for-mode-map clojure-mode-map))\n\n(provide 'setup-paredit)\n","subject":"Add paredit-forward-barf-sexp to handy paredit commands.","message":"Add paredit-forward-barf-sexp to handy paredit commands.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"7cfb93d60136767e8a65bec0429cefb7b34ebdb6","old_file":"layers\/+lang\/common-lisp\/config.el","new_file":"layers\/+lang\/common-lisp\/config.el","old_contents":";;; config.el --- common-lisp Layer Configuration File for Spacemacs\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(spacemacs|define-jump-handlers lisp-mode slime-inspect-definition)\n","new_contents":";;; config.el --- common-lisp Layer Configuration File for Spacemacs\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(spacemacs|define-jump-handlers lisp-mode slime-inspect-definition)\n(spacemacs|define-jump-handlers common-lisp-mode)\n","subject":"Define jump handlers for common-lisp-mode","message":"Define jump handlers for common-lisp-mode\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"70ac1618d72aabeb0d46498d70a25979ee174fa2","old_file":"inits\/10_buffer.el","new_file":"inits\/10_buffer.el","old_contents":";; See www.emacswiki.org\/emacs\/RevertBuffer for more details.\n;; revert-buffer without any confirmation\n(defun reload-buffer ()\n \"Revert buffer without confirmation.\"\n (interactive)\n (revert-buffer t t)\n )\n\n;; Revert buffers when files are changed\n(global-auto-revert-mode)\n\n(setq inhibit-startup-message t)\n\n(column-number-mode t)\n\n;; for auto newline\n(setq fill-column 80)\n\n;; delete whitespaces of the end of each line before save.\n;; (add-hook 'before-save-hook 'delete-trailing-whitespace)\n","new_contents":";; See www.emacswiki.org\/emacs\/RevertBuffer for more details.\n;; revert-buffer without any confirmation\n(defun reload-buffer ()\n \"Revert buffer without confirmation.\"\n (interactive)\n (revert-buffer t t)\n )\n\n;; Revert buffers when files are changed\n(global-auto-revert-mode)\n\n(setq inhibit-startup-message t)\n\n(column-number-mode t)\n\n;; for auto newline\n(setq fill-column 80)\n\n(setq-default indent-tabs-mode nil)\n;; delete whitespaces of the end of each line before save.\n;; (add-hook 'before-save-hook 'delete-trailing-whitespace)\n","subject":"Use spaces instead of tabs for default modes.","message":"Use spaces instead of tabs for default modes.\n","lang":"Emacs Lisp","license":"mit","repos":"at-ishikawa\/dotfiles,at-ishikawa\/dotfiles"} {"commit":"66db3077b4f54a0cca57501a2d65c092a0e4ef8c","old_file":"lisp\/ui.el","new_file":"lisp\/ui.el","old_contents":";; don't show the startup help screen\n(setq inhibit-startup-screen t)\n\n;; mode line settings\n(column-number-mode t)\n(line-number-mode t)\n(size-indication-mode t)\n\n;; remove clutter from the UI\n(menu-bar-mode -1)\n(tool-bar-mode -1)\n(tooltip-mode -1)\n(scroll-bar-mode -1)\n\n;; blinking cursor\n(blink-cursor-mode t)\n\n;; enable mouse gestures in terminal\n(require 'mouse)\n(xterm-mouse-mode t)\n\n;; disable alarm bell beep\n(setq ring-bell-function 'ignore)\n\n;; use Monaco font in Mac OS X\n(when (eq system-type 'darwin)\n (set-default-font \"Monaco\"))\n\n;; my (current) theme of choice\n(load-theme 'tomorrow-night t)\n\n;; powerline\n(setq ns-use-srgb-colorspace nil)\n(powerline-default-theme)\n\n;; emacs-plus natural bar for better looks in OS X\n(add-to-list 'default-frame-alist '(ns-transparent-titlebar . t))\n(add-to-list 'default-frame-alist '(ns-appearance . dark))\n","new_contents":";; don't show the startup help screen\n(setq inhibit-startup-screen t)\n\n;; mode line settings\n(column-number-mode t)\n(line-number-mode t)\n(size-indication-mode t)\n\n;; remove clutter from the UI\n(menu-bar-mode -1)\n(tool-bar-mode -1)\n(tooltip-mode -1)\n(scroll-bar-mode -1)\n\n;; blinking cursor\n(blink-cursor-mode t)\n\n;; enable mouse gestures in terminal\n(require 'mouse)\n(xterm-mouse-mode t)\n\n;; disable alarm bell beep\n(setq ring-bell-function 'ignore)\n\n;; use Monaco font in Mac OS X\n(when (eq system-type 'darwin)\n (set-default-font \"Monaco\"))\n\n;; my (current) theme of choice\n(load-theme 'material t)\n\n;; powerline\n(setq ns-use-srgb-colorspace nil)\n(powerline-default-theme)\n\n;; emacs-plus natural bar for better looks in OS X\n(add-to-list 'default-frame-alist '(ns-transparent-titlebar . t))\n(add-to-list 'default-frame-alist '(ns-appearance . dark))\n","subject":"Use to a more terminal friendly theme","message":"Use to a more terminal friendly theme\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"danielfm\/dotfiles-emacs"} {"commit":"e6b2b48f0b0006c1b87e63ce93e7a023c890168d","old_file":"lisp\/init-fonts.el","new_file":"lisp\/init-fonts.el","old_contents":";;; Character sets\n\n(defcustom sanityinc\/force-default-font-for-symbols nil\n \"When non-nil, force Emacs to use your default font for symbols.\"\n :type 'boolean)\n\n(defun sanityinc\/maybe-use-default-font-for-symbols ()\n \"Force Emacs to render symbols using the default font, if so configured.\"\n (when sanityinc\/force-default-font-for-symbols\n (set-fontset-font \"fontset-default\" 'symbol (face-attribute 'default :family))))\n\n(add-hook 'after-init-hook 'sanityinc\/maybe-use-default-font-for-symbols)\n\n\f\n;;; Changing font sizes\n\n(require-package 'default-text-scale)\n(global-set-key (kbd \"C-M-=\") 'default-text-scale-increase)\n(global-set-key (kbd \"C-M--\") 'default-text-scale-decrease)\n\n\n\n(provide 'init-fonts)\n","new_contents":";;; Character sets\n\n(defcustom sanityinc\/force-default-font-for-symbols nil\n \"When non-nil, force Emacs to use your default font for symbols.\"\n :type 'boolean)\n\n(defun sanityinc\/maybe-use-default-font-for-symbols ()\n \"Force Emacs to render symbols using the default font, if so configured.\"\n (when sanityinc\/force-default-font-for-symbols\n (set-fontset-font \"fontset-default\" 'symbol (face-attribute 'default :family))))\n\n(add-hook 'after-init-hook 'sanityinc\/maybe-use-default-font-for-symbols)\n\n;; set a default font\n;; Download font from here: https:\/\/github.com\/powerline\/fonts\n(when (member \"Inconsolata-dz for Powerline\" (font-family-list))\n (set-face-attribute 'default nil :font \"Inconsolata-dz for Powerline\"))\n\f\n;;; Changing font sizes\n\n(require-package 'default-text-scale)\n(global-set-key (kbd \"C-M-=\") 'default-text-scale-increase)\n(global-set-key (kbd \"C-M--\") 'default-text-scale-decrease)\n\n\n\n(provide 'init-fonts)\n","subject":"Change font to Inconsolata-dz for Powerline","message":"Change font to Inconsolata-dz for Powerline\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"shafayetkhan\/emacs.d"} {"commit":"1db933db6f89886f6d1db6a1e4d89fbf0c336589","old_file":"init-flymake.el","new_file":"init-flymake.el","old_contents":"(require-package 'flymake-cursor)\n\n(setq flymake-gui-warnings-enabled nil)\n\n;; Stop flymake from breaking when ruby-mode is invoked by mmm-mode,\n;; at which point buffer-file-name is nil\n(eval-after-load 'flymake\n '(progn\n (global-set-key (kbd \"C-`\") 'flymake-goto-next-error)\n\n (defun flymake-can-syntax-check-file (file-name)\n \"Determine whether we can syntax check FILE-NAME.\nReturn nil if we cannot, non-nil if we can.\"\n (if (and file-name (flymake-get-init-function file-name)) t nil))))\n\n(provide 'init-flymake)\n","new_contents":"(require-package 'flymake-cursor)\n\n(setq flymake-gui-warnings-enabled nil)\n\n;; Stop flymake from breaking when ruby-mode is invoked by mmm-mode,\n;; at which point buffer-file-name is nil\n(eval-after-load 'flymake\n '(progn\n (defun flymake-can-syntax-check-file (file-name)\n \"Determine whether we can syntax check FILE-NAME.\nReturn nil if we cannot, non-nil if we can.\"\n (if (and file-name (flymake-get-init-function file-name)) t nil))))\n\n(provide 'init-flymake)\n","subject":"Remove binding of C-` for flymake-goto-next-error","message":"Remove binding of C-` for flymake-goto-next-error\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"fd17ab36e79f4222f036007663214e834c9f818f","old_file":"emacs.d\/behavior.el","new_file":"emacs.d\/behavior.el","old_contents":";; ~\/.emacs.d\/behavior.el\n;; Configuration settings for how Emacs should behave\n\n(use-package better-defaults\n :ensure t)\n\n;; NERDTree-style file viewer\n(use-package neotree\n :ensure t\n :init\n (global-set-key [f8] 'neotree-toggle))\n\n;; Use Helm for basic autocompletion and dialogs\n(use-package helm\n :ensure t)\n(helm-mode 1)\n(global-set-key \"\\C-x\\C-f\" 'helm-find-files)\n(global-set-key \"\\M-x\" 'helm-M-x)\n\n;; Always follow symlinks, do not prompt\n(setq vc-follow-symlinks t)\n\n;; Automatically download ELPA packages if not present\n(setq use-package-always-ensure t)\n\n;; Automatically fill paragraphs instead of doing M-q a whole bunch\n;; (add-hook 'text-mode-hook 'turn-on-auto-fill)\n;; (add-hook 'org-mode-hook 'turn-on-auto-fill)\n","new_contents":";; ~\/.emacs.d\/behavior.el\n;; Configuration settings for how Emacs should behave\n\n(use-package better-defaults\n :ensure t)\n\n;; NERDTree-style file viewer\n(use-package neotree\n :ensure t\n :config\n (global-set-key (kbd \"C-c t\") 'neotree-toggle))\n\n;; Use Helm for basic autocompletion and dialogs\n(use-package helm\n :ensure t)\n(helm-mode 1)\n(global-set-key \"\\C-x\\C-f\" 'helm-find-files)\n(global-set-key \"\\M-x\" 'helm-M-x)\n\n;; Always follow symlinks, do not prompt\n(setq vc-follow-symlinks t)\n\n;; Automatically download ELPA packages if not present\n(setq use-package-always-ensure t)\n\n;; Automatically fill paragraphs instead of doing M-q a whole bunch\n;; (add-hook 'text-mode-hook 'turn-on-auto-fill)\n;; (add-hook 'org-mode-hook 'turn-on-auto-fill)\n","subject":"Use C-c t to open neotree","message":"Use C-c t to open neotree\n","lang":"Emacs Lisp","license":"mit","repos":"ben01189998819991197253\/dotfiles"} {"commit":"89e6ccfbfc301e4b8840bebd59f70b8302c54708","old_file":"home\/.emacs.d\/lisp\/init-terraform.el","new_file":"home\/.emacs.d\/lisp\/init-terraform.el","old_contents":";;; init-terraform.el -- Terraform mode setup\n\n;;; Commentary:\n;;; Terraform mode setup\n\n;;; Code:\n(use-package terraform-mode\n :mode ((\"\\\\.tf\\\\'\" . terraform-mode)\n (\"\\\\.tfvars\\\\'\" . terraform-mode)))\n\n(provide 'init-terraform)\n;;; init-terraform.el ends here\n","new_contents":";;; init-terraform.el -- Terraform mode setup\n\n;;; Commentary:\n;;; Terraform mode setup\n\n;;; Code:\n(use-package terraform-mode\n :mode ((\"\\\\.tf\\\\'\" . terraform-mode)\n (\"\\\\.tfvars\\\\'\" . terraform-mode))\n :config\n (add-hook 'terraform-mode-hook 'terraform-format-on-save-mode))\n\n(provide 'init-terraform)\n;;; init-terraform.el ends here\n","subject":"Format Terraform files on save","message":"Format Terraform files on save\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"174d4888f5146f89951176817c411122a9a0a9d9","old_file":"lisp\/init-docker.el","new_file":"lisp\/init-docker.el","old_contents":"(maybe-require-package 'docker)\n(maybe-require-package 'dockerfile-mode)\n(maybe-require-package 'docker-compose-mode)\n\n\n(provide 'init-docker)\n","new_contents":"(when (maybe-require-package 'docker)\n (fullframe docker-images tablist-quit)\n (fullframe docker-machines tablist-quit)\n (fullframe docker-volumes tablist-quit)\n (fullframe docker-networks tablist-quit)\n (fullframe docker-containers tablist-quit))\n(maybe-require-package 'dockerfile-mode)\n(maybe-require-package 'docker-compose-mode)\n\n\n(provide 'init-docker)\n","subject":"Use fullframe for the various docker list commands","message":"Use fullframe for the various docker list commands\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"wegatron\/emacs.d,sgarciac\/emacs.d,blueabysm\/emacs.d,arthurl\/emacs.d,roxolan\/emacs.d,kindoblue\/emacs.d,purcell\/emacs.d,krzysz00\/emacs.d,braveoyster\/emacs.d,mmqmzk\/emacs.d,gsmlg\/emacs.d,lust4life\/emacs.d,qianwan\/emacs.d,me020523\/emacs.d,svenyurgensson\/emacs.d,cjqw\/emacs.d,emuio\/emacs.d,dcorking\/emacs.d,blueseason\/emacs.d,benkha\/emacs.d,kongfy\/emacs.d,baohaojun\/emacs.d"} {"commit":"34c0850649f8a30857706a27f3093bfaee5c5091","old_file":"configs\/emacs.d\/pkgs\/pkg-javascript.el","new_file":"configs\/emacs.d\/pkgs\/pkg-javascript.el","old_contents":"(use-package js2-mode\n :ensure t\n )\n\n(use-package vue-mode\n :ensure t\n )\n\n(provide 'pkg-javascript)\n","new_contents":"(use-package js2-mode\n :ensure t\n )\n\n(use-package web-mode\n :ensure t\n :config\n (setq web-mode-code-indent-offset 4)\n (setq web-mode-script-padding 0)\n (setq web-mode-markup-indent-offset 2)\n )\n\n(use-package mmm-mode\n :ensure t\n :config\n (setq mmm-global-mode 'maybe)\n\n (dolist (langsets '((\"script\" . ((coffee . coffee-mode)\n (es6 . js2-mode)))\n (\"style\" . ((stylus . stylus-mode)\n (less . less-css-mode)\n (scss . scss-mode)))))\n (let ((tag (car langsets)))\n (dolist (pair (cdr langsets))\n (let* ((lang (car pair))\n (submode (cdr pair))\n (class-name (make-symbol (format \"vueify-%s-%s\" tag lang)))\n (front (format \"<%s lang=\\\"%s\\\">\" tag lang))\n (back (format \"<\/%s>\" tag)))\n (mmm-add-classes\n `((,class-name\n :submode ,submode\n :front ,front\n :back ,back)))\n (mmm-add-mode-ext-class nil \"\\\\.vue?\\\\'\" class-name)))))\n\n (add-to-list 'auto-mode-alist '(\"\\\\.vue?\\\\'\" . web-mode))\n )\n\n(provide 'pkg-javascript)\n","subject":"Use web-mode instead of vue-mode","message":"Use web-mode instead of vue-mode\n","lang":"Emacs Lisp","license":"mit","repos":"noraesae\/dotfiles,noraesae\/dotfiles,noraesae\/dotfiles"} {"commit":"1d79a36b35379ceb717adcedbeb7e5f68c9ad9aa","old_file":"lisp\/init-compile.el","new_file":"lisp\/init-compile.el","old_contents":"(setq-default compilation-scroll-output t)\n\n(require-package 'alert)\n\n;; Customize `alert-default-style' to get messages after compilation\n\n(defun sanityinc\/alert-after-compilation-finish (buf result)\n \"Use `alert' to report compilation RESULT if BUF is hidden.\"\n (unless (catch 'is-visible\n (walk-windows (lambda (w)\n (when (eq (window-buffer w) buf)\n (throw 'is-visible t)))))\n (alert (concat \"Compilation \" result)\n :buffer buf\n :category 'compilation)))\n\n(after-load 'compile\n (add-hook 'compilation-finish-functions\n 'sanityinc\/alert-after-compilation-finish))\n\n\n(provide 'init-compile)\n","new_contents":"(setq-default compilation-scroll-output t)\n\n(require-package 'alert)\n\n;; Customize `alert-default-style' to get messages after compilation\n\n(defun sanityinc\/alert-after-compilation-finish (buf result)\n \"Use `alert' to report compilation RESULT if BUF is hidden.\"\n (unless (catch 'is-visible\n (walk-windows (lambda (w)\n (when (eq (window-buffer w) buf)\n (throw 'is-visible t))))\n nil)\n (alert (concat \"Compilation \" result)\n :buffer buf\n :category 'compilation)))\n\n(after-load 'compile\n (add-hook 'compilation-finish-functions\n 'sanityinc\/alert-after-compilation-finish))\n\n\n(provide 'init-compile)\n","subject":"Make block result explicit when not \"throw\"-ing","message":"Make block result explicit when not \"throw\"-ing\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"purcell\/emacs.d,benkha\/emacs.d,atreeyang\/emacs.d,farzadbekran\/emacs.d,svenyurgensson\/emacs.d,blueseason\/emacs.d,gsmlg\/emacs.d,farzadbekran\/emacs.d,dcorking\/emacs.d,blueabysm\/emacs.d,mpwang\/emacs.d,ernest-dzf\/emacs.d,Togal\/emacs.d,carlosliu\/emacs.d,alant\/emacs.d,renatoriccio\/emacs.d,jthetzel\/emacs.d,bibaijin\/emacs.d,LittleLmp\/emacs.d,boblannon\/emacs.d,wenpincui\/emacs.d,modkzs\/emcs.d,baohaojun\/emacs.d,me020523\/emacs.d,lujianmei\/emacs.d,lust4life\/emacs.d,kongfy\/emacs.d,jachinpy\/emacs.d,emuio\/emacs.d,jkaessens\/emacs.d,jhpx\/emacs.d,cjqw\/emacs.d,LKI\/emacs.d,Enzo-Liu\/emacs.d,scorpionis\/emacs.d,DarkThrone\/emacs.d,farzadbekran\/emacs.d,fengxl\/emacs.d,dhanunjaya\/emacs.d,pairyo\/emacs.d,zhuoyikang\/emacs.d,zenith-john\/emacs.d,roxolan\/emacs.d,Werewolflsp\/emacs.d,ilove0518\/emacs.d,caoyuanqi\/emacs.d,dongdonghu\/.emacs.d,krzysz00\/emacs.d,braveoyster\/emacs.d,Guoozz\/emacs.d,cyjia\/emacs.d,qianwan\/emacs.d,mmqmzk\/emacs.d,shafayetkhan\/emacs.d,hophacker\/emacs.d,kindoblue\/emacs.d,jachinpy\/emacs.d,whizzzkid\/emacs.d,wegatron\/emacs.d,Jadecity\/PurcellEmacs.d,lromang\/emacs.d,sgarciac\/emacs.d,danfengcao\/emacs.d,haodaivshen\/emacs.d,zhaotai\/.emacs.d,46do14\/emacs.d,Shanicky\/emacs.d,hkcqr\/emacs.d,arthurl\/emacs.d,exclamaforte\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,qinshulei\/emacs.d"} {"commit":"5c9371d949311d542741cfebf26a67e9664244be","old_file":"elisp\/mode-customizations.el","new_file":"elisp\/mode-customizations.el","old_contents":";; Conventional max line length in Racket is 102 columns\n(add-hook 'scheme-mode-hook (lambda () (column-marker-1 102)))\n(add-hook 'scheme-mode-hook (lambda () (setq-default fill-column 102)))\n\n;; Show a column marker in markdown mode\n(add-hook 'markdown-mode-hook (lambda () (column-marker-1 80)))\n\n;; Paredit for all S-expression-based programming modes\n(add-hook 'emacs-lisp-mode-hook 'paredit-mode)\n(add-hook 'scheme-mode-hook 'paredit-mode)\n\n;; Fix magit commit message editor, as seen here: http:\/\/stackoverflow.com\/a\/19265280\/21957\n(if (equal 'darwin system-type)\n (set-variable 'magit-emacsclient-executable \"\/usr\/local\/bin\/emacsclient\"))\n\n","new_contents":";; Conventional max line length in Racket is 102 columns\n(add-hook 'scheme-mode-hook (lambda () (column-marker-1 102)))\n(add-hook 'scheme-mode-hook (lambda () (setq fill-column 102)))\n\n;; Show a column marker in markdown mode\n(add-hook 'markdown-mode-hook (lambda () (column-marker-1 80)))\n\n;; Paredit for all S-expression-based programming modes\n(add-hook 'emacs-lisp-mode-hook 'paredit-mode)\n(add-hook 'scheme-mode-hook 'paredit-mode)\n\n;; Fix magit commit message editor, as seen here: http:\/\/stackoverflow.com\/a\/19265280\/21957\n(if (equal 'darwin system-type)\n (set-variable 'magit-emacsclient-executable \"\/usr\/local\/bin\/emacsclient\"))\n\n","subject":"Fix setting of fill-column value","message":"Fix setting of fill-column value\n","lang":"Emacs Lisp","license":"mit","repos":"schuster\/dotfiles"} {"commit":"df3d0aa067a0fccd1ac3de68d87d457621819c6e","old_file":".config\/emacs\/remaps.el","new_file":".config\/emacs\/remaps.el","old_contents":";; multiple selection\n(global-set-key (kbd \"M-n\") 'mc\/mark-next-like-this)\n(global-set-key (kbd \"M-p\") 'mc\/mark-previous-like-this)\n\n;; move lines\n(global-set-key (kbd \"M-S-\") 'drag-stuff-up)\n(global-set-key (kbd \"M-S-\") 'drag-stuff-down)\n\n;; move between windows\n(global-set-key (kbd \"M-\") 'windmove-left)\n(global-set-key (kbd \"M-\") 'windmove-right)\n(global-set-key (kbd \"M-\") 'windmove-up)\n(global-set-key (kbd \"M-\") 'windmove-down)\n\n;; comment line or region\n(global-set-key (kbd \"s-\/\") 'comment-line)\n\n;; project structure\n(global-set-key [f3] 'neotree-toggle)\n\n;; magit\n(global-set-key (kbd \"C-x g\") 'magit-status)\n","new_contents":";; multiple selection\n(global-set-key (kbd \"M-n\") 'mc\/mark-next-like-this)\n(global-set-key (kbd \"M-p\") 'mc\/mark-previous-like-this)\n\n;; move lines\n(global-set-key (kbd \"M-S-\") 'drag-stuff-up)\n(global-set-key (kbd \"M-S-\") 'drag-stuff-down)\n\n;; move between windows\n(global-set-key (kbd \"M-\") 'windmove-left)\n(global-set-key (kbd \"M-\") 'windmove-right)\n(global-set-key (kbd \"M-\") 'windmove-up)\n(global-set-key (kbd \"M-\") 'windmove-down)\n\n;; comment line or region\n(global-set-key (kbd \"C-x C-_\") 'comment-line)\n(global-set-key (kbd \"C-x C-\/\") 'comment-line)\n\n;; project structure\n(global-set-key [f3] 'neotree-toggle)\n\n;; magit\n(global-set-key (kbd \"C-x g\") 'magit-status)\n","subject":"Change comment out code shortcut","message":"Change comment out code shortcut\n","lang":"Emacs Lisp","license":"mit","repos":"spapanik\/configuration,spapanik\/configuration"} {"commit":"4351658eb5823e3d7f45dba4639bd4da9fd83dda","old_file":"emacs\/70misc.init.el","new_file":"emacs\/70misc.init.el","old_contents":";;\n;; misc.init.el - Miscellaneous Emacs settings\n;;\n\n;; Default to unified diffs\n(setq diff-switches \"-u\")\n\n;;; Always end a file with a newline\n;;(setq require-final-newline 'query)\n\n;; Never use double-spaces between sentences.\n(setq sentence-end-double-space nil)\n\n;; Automatic (de)compression of files\n(auto-compression-mode t)\n\n\n;; Start emacsclient server\n(server-start)\n\n;;; Save minibuffer history between sessions.\n;;(setq savehist-additional-variables ; Also save searches\n;; '(search-ring regexp-search-ring))\n;;(savehist-mode t)\n\n;; Set the current working directory to HOME if running on a window system.\n;; Needed in Emacs.app, which always defaults to \/.\n(if (and (window-system) (getenv \"HOME\"))\n (setq default-directory (concat (getenv \"HOME\") \"\/\")))\n","new_contents":";;\n;; misc.init.el - Miscellaneous Emacs settings\n;;\n\n;; Default to unified diffs\n(setq diff-switches \"-u\")\n\n;;; Always end a file with a newline\n;;(setq require-final-newline 'query)\n\n;; Never use double-spaces between sentences.\n(setq sentence-end-double-space nil)\n\n;; Automatic (de)compression of files\n(auto-compression-mode t)\n\n;; Uniquify buffer names using directory names instead of numbers\n;; (new default in Emacs 24)\n(setq uniquify-buffer-name-style 'post-forward-angle-brackets)\n(require 'uniquify nil 'noerror)\n\n;; Start emacsclient server\n(server-start)\n\n;;; Save minibuffer history between sessions.\n(setq savehist-file \"~\/.emacs.d\/history\")\n(setq savehist-additional-variables\n '(search-ring regexp-search-ring)) ; Also save searches\n(savehist-mode t)\n\n;; If browse-kill-ring is available, M-y will activate the kill-ring\n;; browser if the previous command was not a yank.\n(when (require 'browse-kill-ring nil 'noerror)\n (browse-kill-ring-default-keybindings)\n (setq browse-kill-ring-quit-action 'save-and-restore))\n\n;; Set the current working directory to HOME if running on a window system.\n;; Needed in Emacs.app, which always defaults to \/.\n(if (and (window-system) (getenv \"HOME\"))\n (setq default-directory (concat (getenv \"HOME\") \"\/\")))\n","subject":"Enable uniquify in Emacs 23, savehist, and browse-kill-ring","message":"emacs: Enable uniquify in Emacs 23, savehist, and browse-kill-ring\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"nandhp\/dotfiles,nandhp\/dotfiles,nandhp\/dotfiles"} {"commit":"1629e997895a1d8fb328d974dd6d8e1334d01a6a","old_file":"lisp\/custom.el","new_file":"lisp\/custom.el","old_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(ansi-color-names-vector [\"#212526\" \"#ff4b4b\" \"#b4fa70\" \"#fce94f\" \"#729fcf\" \"#ad7fa8\" \"#8cc4ff\" \"#eeeeec\"])\n '(auto-save-default nil)\n '(custom-enabled-themes (quote (wheatgrass)))\n '(inhibit-startup-screen t)\n '(make-backup-files nil)\n '(org-agenda-files (quote (\"~\/Documents\/org\")))\n '(org-todo-keyword-faces (quote ((\"DONE\" . success) (\"IN-PROGRESS\" . diary) (\"WAITING\" . warning) (\"TODO\" . error))))\n '(org-todo-keywords (quote ((sequence \"TODO\" \"IN-PROGRESS\" \"WAITING\" \"DONE\")))))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(ansi-color-names-vector [\"#212526\" \"#ff4b4b\" \"#b4fa70\" \"#fce94f\" \"#729fcf\" \"#ad7fa8\" \"#8cc4ff\" \"#eeeeec\"])\n '(auto-save-default nil)\n '(custom-enabled-themes (quote (wheatgrass)))\n '(font-use-system-font t)\n '(inhibit-startup-screen t)\n '(make-backup-files nil)\n '(org-agenda-files (quote (\"~\/Documents\/org\")))\n '(org-todo-keyword-faces (quote ((\"DONE\" . success) (\"IN-PROGRESS\" . diary) (\"WAITING\" . warning) (\"TODO\" . error))))\n '(org-todo-keywords (quote ((sequence \"TODO\" \"IN-PROGRESS\" \"WAITING\" \"DONE\"))))\n '(scalable-fonts-allowed t))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Enable scalable fonts and system font use","message":"Enable scalable fonts and system font use\n","lang":"Emacs Lisp","license":"mit","repos":"gilesp\/emacs.d"} {"commit":"223bfe7669406852289ea38db08e66689e75dc9a","old_file":"load\/rb.el","new_file":"load\/rb.el","old_contents":"(defun rebuild-ripper-tags ()\n (start-process \"rebuild-ripper-tags\" nil \"rebuild-ripper-tags\"))\n\n(add-hook\n 'ruby-mode-hook\n (lambda ()\n ;; Check spelling.\n (flyspell-prog-mode)\n ;; Don't autofill\n (auto-fill-mode 0)\n ;; Make enter indent.\n (local-set-key (kbd \"C-m\") 'reindent-then-newline-and-indent)\n ;; Make smart-tab always indent\n (defvar smart-tab-always-indent nil)\n (setq-local smart-tab-always-indent t)\n ;; Clean up whitespace on save.\n (add-hook 'before-save-hook 'whitespace-cleanup nil t)\n ;; Rebuild tags on save.\n (add-hook (make-local-variable 'after-save-hook) 'rebuild-ripper-tags nil t)\n ;; Disable rubocop\n (defvar flycheck-disabled-checkers \"flycheck.el\")\n (setq flycheck-disabled-checkers\n (cons 'ruby-rubocop flycheck-disabled-checkers))\n ;; Turn on subword-mode\n (require 'diminish)\n (subword-mode 1)\n (diminish 'subword-mode)\n ;; Make do\/end less prominent.\n (defvar paren-face-regexp)\n (setq-local paren-face-regexp\n (rx symbol-start (or \"do\" \"end\") symbol-end))))\n","new_contents":"(defun rebuild-ripper-tags ()\n (start-process \"rebuild-ripper-tags\" nil \"rebuild-ripper-tags\"))\n\n(add-hook\n 'ruby-mode-hook\n (lambda ()\n ;; Check spelling.\n (flyspell-prog-mode)\n ;; Don't autofill\n (auto-fill-mode 0)\n ;; Make enter indent.\n (local-set-key (kbd \"C-m\") 'reindent-then-newline-and-indent)\n ;; Make smart-tab always indent\n (defvar smart-tab-always-indent nil)\n (setq-local smart-tab-always-indent t)\n ;; Clean up whitespace on save.\n (add-hook 'before-save-hook 'whitespace-cleanup nil t)\n ;; Rebuild tags on save.\n (add-hook (make-local-variable 'after-save-hook) 'rebuild-tags nil t)\n ;; Disable rubocop\n (defvar flycheck-disabled-checkers \"flycheck.el\")\n (setq flycheck-disabled-checkers\n (cons 'ruby-rubocop flycheck-disabled-checkers))\n ;; Turn on subword-mode\n (require 'diminish)\n (subword-mode 1)\n (diminish 'subword-mode)\n ;; Make do\/end less prominent.\n (defvar paren-face-regexp)\n (setq-local paren-face-regexp\n (rx symbol-start (or \"do\" \"end\") symbol-end))))\n","subject":"Switch back to Exuberant CTags for Ruby","message":"Switch back to Exuberant CTags for Ruby\n","lang":"Emacs Lisp","license":"mit","repos":"kaidadragonfly\/.emacs"} {"commit":"2a4a490a6371605b07e7a5b821a0c0661a5b99d4","old_file":"lisp\/init-go.el","new_file":"lisp\/init-go.el","old_contents":"(require-package 'go-mode)\n(require-package 'go-autocomplete)\n\n; dafuq is up with autoloads?\n(load \"go-mode.el\")\n\n(require 'go-autocomplete)\n\n; Installed by do-setup\n(load-file \"\/Users\/lstoll\/gocode\/src\/code.google.com\/p\/go.tools\/cmd\/oracle\/oracle.el\")\n\n(defun my-go-mode-hook ()\n ; Use goimports instead of go-fmt\n (setq gofmt-command \"goimports\")\n ; Call Gofmt before saving \n (add-hook 'before-save-hook 'gofmt-before-save)\n ; Customize compile command to run go build\n (if (not (string-match \"go\" compile-command))\n (set (make-local-variable 'compile-command)\n \"go build -v && go test -v && go vet\"))\n ; Godef jump key binding \n (local-set-key (kbd \"M-.\") 'godef-jump))\n ; Go Oracle\n (go-oracle-mode)\n(add-hook 'go-mode-hook 'my-go-mode-hook)\n\n(provide 'init-go)\n","new_contents":"(require-package 'go-mode)\n(require-package 'go-autocomplete)\n\n; dafuq is up with autoloads?\n(load \"go-mode.el\")\n\n(require 'go-autocomplete)\n\n; Installed by do-setup\n(load-file \"\/Users\/lstoll\/gocode\/src\/code.google.com\/p\/go.tools\/cmd\/oracle\/oracle.el\")\n\n(defun my-go-mode-hook ()\n ; Use goimports instead of go-fmt\n (setq gofmt-command \"goimports\")\n ; Call Gofmt before saving\n (add-hook 'before-save-hook 'gofmt-before-save)\n ; Customize compile command to run go build\n (if (not (string-match \"go\" compile-command))\n (set (make-local-variable 'compile-command)\n \"go build -v && go test -v && go vet\"))\n ; Godef jump key binding\n (local-set-key (kbd \"M-.\") 'godef-jump))\n ; Go Oracle\n (go-oracle-mode)\n\n (setq tab-width 4)\n(add-hook 'go-mode-hook 'my-go-mode-hook)\n\n(provide 'init-go)\n","subject":"Set tab width to something less crazy","message":"Set tab width to something less crazy","lang":"Emacs Lisp","license":"mit","repos":"lstoll\/repo,lstoll\/repo,lstoll\/repo,lstoll\/dotfiles,lstoll\/dotfiles,lstoll\/dotfiles"} {"commit":"30f9715e5796370bbe6ba0d0ee1257eb8a3ddb69","old_file":".emacs.d\/lisp\/package\/repositories.el","new_file":".emacs.d\/lisp\/package\/repositories.el","old_contents":"(require 'package)\n\n;; Add MELPA repository\n(add-to-list 'package-archives\n '(\"melpa\" .\n \"http:\/\/melpa.milkbox.net\/packages\/\"))\n\n;; Add MELPA Stable\n(add-to-list 'package-archives\n '(\"melpa-stable\" .\n \"https:\/\/stable.melpa.org\/packages\/\"))\n\n;; Add GNU ELPA repository\n(add-to-list 'package-archives\n '(\"gnu\" .\n \"http:\/\/elpa.gnu.org\/packages\/\"))\n\n(setf package-archive-priorities\n '((\"melpa-stable\" . 20)\n (\"gnu\" . 10)\n (\"melpa\" . 0)))\n\n;; (require 'packup)\n\n(provide 'repositories)\n","new_contents":"(require 'package)\n\n;; Add MELPA Stable\n(add-to-list 'package-archives\n '(\"melpa-stable\" .\n \"https:\/\/stable.melpa.org\/packages\/\"))\n\n;; Add GNU ELPA repository\n(add-to-list 'package-archives\n '(\"gnu\" .\n \"http:\/\/elpa.gnu.org\/packages\/\"))\n\n;; Add MELPA repository\n(add-to-list 'package-archives\n '(\"melpa\" .\n \"http:\/\/melpa.milkbox.net\/packages\/\"))\n\n(setf package-archive-priorities\n '((\"melpa-stable\" . 20)\n (\"gnu\" . 10)\n (\"melpa\" . 0)))\n\n;; (require 'packup)\n\n(provide 'repositories)\n","subject":"Move MELPA to the bottom of the list of package archive additions","message":"Move MELPA to the bottom of the list of package archive additions\n\nThis matches the priority listing.\n","lang":"Emacs Lisp","license":"mit","repos":"kotct\/dot,kotct\/dot"} {"commit":"711704f61e0e049635e2fde12761d9fa5ba3e893","old_file":"custom\/100-theme.el","new_file":"custom\/100-theme.el","old_contents":";; Load theme and set font\n(set-frame-font \"Droid Sans Mono-10\" nil t)\n(load-theme 'yoshi :no-confirm)\n","new_contents":";; Set font\n;; (set-frame-font \"Droid Sans Mono-10\" nil t)\n\n;; Load Theme\n;; Install base16-theme & jazz-theme through package manager\n\n(load-theme 'jazz t) ;; Best looking theme, just needs black bg to be perfect\n\n;; (load-theme 'base16-isotope t) ;; black bg, high contrast, great bright text\n;; (load-theme 'base16-pop t) ;; black bg, high contrast, nice\n;; (load-theme 'base16-pico t) ;; black bg, interesting, high contrast\n;; (load-theme 'base16-bright t) ;; black bg, high contrast\n;; (load-theme 'base16-ir-black t) ;; black bg, high contrast\n\n;; (load-theme 'base16-seti-ui t) ;; not black bg but dark, good colours\n;; (load-theme 'base16-solar-flare t) ;; not black bg but dark, good colours\n;; (load-theme 'base16-google-dark t) ;; not black bg but dark, good colours\n\n;; (load-theme 'base16-solarized-dark t);; not black bg but good colours\n;; (load-theme 'base16-spacemacs t) ;; not black bg but good colours\n\n;; (load-theme 'base16-phd t) ;; not black bg, colours not very high contrast\n;; (load-theme 'base16-tomorrow-night t) ;; not black bg\n;; (load-theme 'base16-twilight t) ;; not black bg\n\n;; (load-theme 'base16-summerfruit-dark t) ;; not great i think\n;; (load-theme 'base16-railscasts t) ;; not great i think\n;; (load-theme 'base16-macintosh t) ;; not great i think\n\n;;OTHER THEMES\n;;Danneskjold Theme\n;;https:\/\/github.com\/emacs-jp\/replace-colorthemes\n\n","subject":"Add theme options w\/ comments","message":"Add theme options w\/ comments\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"ae33e34095c4eff4f01d0a203180e43c3a7b0d5d","old_file":"Emacs\/emacs-custom.el","new_file":"Emacs\/emacs-custom.el","old_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(global-display-line-numbers-mode t)\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode)))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(global-display-line-numbers-mode t)\n '(ido-create-new-buffer 'always)\n '(ido-enable-flex-matching t)\n '(ido-everywhere t)\n '(ido-mode 'both nil (ido))\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode)))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Add customizations for IDO in Emacs","message":"Add customizations for IDO in Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"Gosin\/Vim4Gosin"} {"commit":"8e9841c038be53e6d9eb946338e4e827a50db259","old_file":"Packages\/settings\/setup-scala-mode.el","new_file":"Packages\/settings\/setup-scala-mode.el","old_contents":"(use-package ensime\n :ensure t\n :pin melpa-stable\n :defer t\n :init\n (add-to-list 'exec-path \"\/opt\/local\/bin\")\n :config\n (setq ensime-startup-snapshot-notification nil)\n (setq ensime-startup-notification nil)\n :bind (:map ensime-mode-map\n (\"C-c C-b h\" . sbt-hydra)))\n\n(use-package flycheck-cask\n :commands flycheck-cask-setup\n :config\n (add-hook 'emacs-lisp-mode-hook (flycheck-cask-setup)))\n\n(provide 'setup-scala-mode)\n","new_contents":"(use-package scala-mode2\n :ensure t\n :defer t\n )\n\n(use-package flycheck-cask\n :commands flycheck-cask-setup\n :config\n (add-hook 'emacs-lisp-mode-hook (flycheck-cask-setup)))\n\n(provide 'setup-scala-mode)\n","subject":"Remove ensime (RIP) and update to scala-mode2","message":"Remove ensime (RIP) and update to scala-mode2\n","lang":"Emacs Lisp","license":"mit","repos":"hsienchiaolee\/aquamacs"} {"commit":"a7a313470e0d5c0800c78b0edca8d93993a2881f","old_file":"init-extension\/init-solarized-theme.el","new_file":"init-extension\/init-solarized-theme.el","old_contents":"(require 'solarized)\n\n(deftheme solarized-dark \"The dark variant of the Solarized colour theme\")\n(create-solarized-theme 'dark 'solarized-dark)\n(provide-theme 'solarized-dark)\n\n(deftheme solarized-light \"The light variant of the Solarized colour theme\")\n(create-solarized-theme 'light 'solarized-light)\n(provide-theme 'solarized-light)\n\n(if (equal system-name \"QUE-WKS-AA427-Linux\")\n (load-theme 'solarized-light t)\n (load-theme 'solarized-dark t))\n","new_contents":"(require 'solarized)\n\n(deftheme solarized-dark \"The dark variant of the Solarized colour theme\")\n(create-solarized-theme 'dark 'solarized-dark)\n(provide-theme 'solarized-dark)\n\n(deftheme solarized-light \"The light variant of the Solarized colour theme\")\n(create-solarized-theme 'light 'solarized-light)\n(provide-theme 'solarized-light)\n\n(if (or (equal system-name \"QUE-WKS-AA427-Linux\")\n (equal system-name \"QUE-WKS-AA593\"))\n (load-theme 'solarized-light t)\n (load-theme 'solarized-dark t))\n","subject":"Add theme support for AA593","message":"Add theme support for AA593\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"b217dac895ccb5c32efb10f27e5f14415fcb802a","old_file":"elisp\/rest-client.el","new_file":"elisp\/rest-client.el","old_contents":";; This buffer is for notes you don't want to save, and for Lisp evaluation.\n;; If you want to create a file, visit that file with C-x C-f,\n;; then enter the text in that file's own buffer.\n\n\n\n(require 'url-vars)\n(require 'url-dav)\n\n(require 'json)\n\n(with-current-buffer\n (url-retrieve-synchronously \"http:\/\/localhost:3000\/packages?class=Class\")\n (goto-char url-http-end-of-headers)\n (let* ((json-object-type 'plist)\n (rtnval (json-read)))\n (kill-buffer (current-buffer))\n rtnval))\n\n\n\n;; (with-current-buffer (url-retrieve-synchronously \"http:\/\/localhost:3000\/\")\n;; (goto-char url-http-end-of-headers)\n;; (setq json-array-type 'vector\n;; json-object-type 'alist)\n\n;; (let ((json-readtable-old (when readtable\n;; (let ((r json-readtable))\n;; (setq json-readtable readtable)\n;; r)))\n;; (rtnval (json-read)))\n;; (kill-buffer (current-buffer))\n;; (when readtable (setq json-readtable json-readtable-old))\n;; rtnval))\n","new_contents":";; This buffer is for notes you don't want to save, and for Lisp evaluation.\n;; If you want to create a file, visit that file with C-x C-f,\n;; then enter the text in that file's own buffer.\n\n\n\n(require 'url-vars)\n(require 'url-dav)\n\n(require 'json)\n\n(with-current-buffer\n (url-retrieve-synchronously \"http:\/\/localhost:3000\/classes?name=List\")\n (goto-char url-http-end-of-headers)\n (let* ((json-object-type 'plist)\n (rtnval (json-read)))\n (kill-buffer (current-buffer))\n rtnval))\n\n\n\n;; (with-current-buffer (url-retrieve-synchronously \"http:\/\/localhost:3000\/\")\n;; (goto-char url-http-end-of-headers)\n;; (setq json-array-type 'vector\n;; json-object-type 'alist)\n\n;; (let ((json-readtable-old (when readtable\n;; (let ((r json-readtable))\n;; (setq json-readtable readtable)\n;; r)))\n;; (rtnval (json-read)))\n;; (kill-buffer (current-buffer))\n;; (when readtable (setq json-readtable json-readtable-old))\n;; rtnval))\n","subject":"Fix emacs client to call API","message":"Fix emacs client to call API\n","lang":"Emacs Lisp","license":"epl-1.0","repos":"nchapon\/carambar"} {"commit":"9e86ac30a2198094bdbb1c3980425a224a14d379","old_file":"settings\/setup-theme.el","new_file":"settings\/setup-theme.el","old_contents":"(use-package spacemacs-theme\n :defer t\n :ensure t\n :init\n (setq default-frame-alist (quote ((fullscreen . maximized))))\n (load-theme 'spacemacs-dark t)\n )\n\n(use-package spaceline\n :defer t\n :init\n (setq powerline-default-separator 'slant)\n (setq ns-use-srgb-colorspace nil)\n (setq powerline-height 15)\n )\n\n(use-package spaceline-config\n :demand t\n :ensure spaceline\n :config\n (spaceline-define-segment line-column\n \"The current line and column numbers.\"\n \"l:%l c:%2c\")\n (spaceline-helm-mode 1)\n (spaceline-spacemacs-theme)\n )\n\n(provide 'setup-theme)\n","new_contents":"(use-package spacemacs-theme\n :defer t\n :ensure t\n :init\n (setq default-frame-alist (quote ((fullscreen . maximized))))\n (load-theme 'spacemacs-dark t)\n )\n\n(use-package spaceline\n :defer t\n :init\n (setq powerline-default-separator 'slant)\n (setq ns-use-srgb-colorspace nil)\n (setq powerline-height 18)\n )\n\n(use-package spaceline-config\n :demand t\n :ensure spaceline\n :config\n (spaceline-define-segment line-column\n \"The current line and column numbers.\"\n \"l:%l c:%2c\")\n (spaceline-helm-mode 1)\n (spaceline-spacemacs-theme)\n )\n\n(provide 'setup-theme)\n","subject":"Increase powerline height to 18","message":"Increase powerline height to 18\n","lang":"Emacs Lisp","license":"mit","repos":"hsienchiaolee\/aquamacs"} {"commit":"cfcf5f25f11237750e9ffa2cb42534d168b48b41","old_file":"custom\/01-pdf-tools.el","new_file":"custom\/01-pdf-tools.el","old_contents":";; pdf-tools for viewing PDFs\n\n(use-package pdf-tools\n :init\n (pdf-tools-install) \n ;; Setup a hook when we kill a pdf take a bookmark\n (add-hook 'kill-buffer-hook 'kill-buffer-hook-setup)\n :defer 5\n :config\n ;; Set a bookmark on kill\n (defun kill-buffer-hook-setup ()\n ;; Test that we have a filename and file extensions and it's a pdf and the user\n ;; wants to take a bookmark\n (if (and buffer-file-name\n (file-name-extension buffer-file-name)\n (string= (downcase (file-name-extension buffer-file-name)) \"pdf\")\n (y-or-n-p \"Set bookmark with current file name?\"))\n ;; Set a bookmark with the name being the buffers full path name\n (bookmark-set (file-name-nondirectory buffer-file-name) nil))))\n\n","new_contents":";; pdf-tools for viewing PDFs\n\n(use-package pdf-tools\n :init\n (pdf-tools-install) \n ;; Setup a hook when we kill a pdf take a bookmark\n (add-hook 'kill-buffer-hook 'kill-buffer-hook-setup)\n :config\n ;; Set a bookmark on kill\n (defun kill-buffer-hook-setup ()\n ;; Test that we have a filename and file extensions and it's a pdf and the user\n ;; wants to take a bookmark\n (if (and buffer-file-name\n (file-name-extension buffer-file-name)\n (string= (downcase (file-name-extension buffer-file-name)) \"pdf\")\n (y-or-n-p \"Set bookmark with current file name?\"))\n ;; Set a bookmark with the name being the buffers full path name\n (bookmark-set (file-name-nondirectory buffer-file-name) nil))))\n\n","subject":"Remove defer for pdf tools","message":"Remove defer for pdf tools\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"28699ab0264315ac3466da3094178fe347d1a5e3","old_file":"modules\/private\/lean\/config.el","new_file":"modules\/private\/lean\/config.el","old_contents":";;; private\/lean\/config.el -*- lexical-binding: t; -*-\n\n;; (load! +bindings)\n\n(def-package! company-lean)\n(def-package! lean-mode)\n(def-package! helm-lean)\n","new_contents":";;; private\/lean\/config.el -*- lexical-binding: t; -*-\n\n;; (load! +bindings)\n\n(def-package! company-lean)\n(def-package! lean-mode)\n(def-package! helm-lean)\n\n(defun unlines (lns)\n (mapconcat 'identity lns \"\\n\"))\n\n(defun keep-errors-only (proc string)\n (interactive)\n (let* ((lines (split-string string \"\\n\"))\n\t (new-string (seq-filter (lambda (x) (cl-search \"error\" x)) lines)))\n (if (not (null new-string))\n\t (when (buffer-live-p (process-buffer proc))\n\t (with-current-buffer (process-buffer proc)\n\t (let ((moving (= (point) (process-mark proc))))\n\t (save-excursion\n\t\t ;; Insert the text, advancing the process marker.\n\t\t (goto-char (process-mark proc))\n\t\t (insert (unlines new-string))\n\t\t (set-marker (process-mark proc) (point)))\n\t (if moving (goto-char (process-mark proc)))\n\t (delete-process proc)))))))\n\n(defun lean-leanpkg-run-quiet (cmd &optional restart-lean-server)\n \"Call `leanpkg $cmd`\"\n (let ((dir (file-name-as-directory (lean-leanpkg-find-dir-safe)))\n (orig-buf (current-buffer)))\n (with-current-buffer (get-buffer-create \"*leanpkg*\")\n (setq buffer-read-only nil)\n (erase-buffer)\n (switch-to-buffer-other-window (current-buffer))\n (redisplay)\n (insert (format \"> leanpkg %s\\n\" cmd))\n (setq lean-leanpkg-running t)\n (let* ((default-directory dir)\n (out-buf (current-buffer))\n (proc (make-process :name \"leanpkg\"\n\t\t\t\t :buffer (current-buffer)\n\t\t\t\t :filter 'keep-errors-only\n :command (list (lean-leanpkg-executable) cmd))))\n (set-process-sentinel\n proc (lambda (_p _e)\n (setq lean-leanpkg-running nil)\n\t\t (if restart-lean-server\n\t\t (progn\n\t\t (with-current-buffer out-buf\n\t\t\t (insert \"; restarting lean server\\n\"))\n\t\t (with-current-buffer orig-buf\n\t\t\t (lean-server-restart)))\n\t\t (progn\n\t\t (with-current-buffer out-buf\n\t\t\t (insert \"; (done)\\n\"))))))))))\n\n(defun lean-leanpkg-build-quiet ()\n \"Call leanpkg build (quiet)\"\n (interactive)\n (lean-leanpkg-run-quiet \"build\"))\n\n(defun lean-leanpkg-test-quiet ()\n \"Call leanpkg build (quiet)\"\n (interactive)\n (lean-leanpkg-run-quiet \"test\"))\n","subject":"Add Simon's helper functions for buliding lean files","message":"Add Simon's helper functions for buliding lean files\n\nHandy especially when upgrading Lean and refactoring.\n\nTODO: find a nice key binding for lean-leanpkg-{build,test}-quiet\n functions\n","lang":"Emacs Lisp","license":"mit","repos":"aminb\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d"} {"commit":"efb35dcdce6a0aec37b0d58ad5e04e8c9e67ae79","old_file":"init-window-split.el","new_file":"init-window-split.el","old_contents":"(defun split-window-func-with-other-buffer (split-function)\n (lexical-let ((s-f split-function))\n (lambda ()\n (interactive)\n (funcall s-f)\n (set-window-buffer (next-window) (other-buffer)))))\n\n(global-set-key \"\\C-x2\" (split-window-func-with-other-buffer 'split-window-vertically))\n(global-set-key \"\\C-x3\" (split-window-func-with-other-buffer 'split-window-horizontally))\n\n(defun split-window-horizontally-instead ()\n (interactive)\n (save-excursion\n (delete-other-windows)\n (funcall (split-window-func-with-other-buffer 'split-window-horizontally))))\n\n(global-set-key \"\\C-x|\" 'split-window-horizontally-instead)\n\n\n(provide 'init-window-split)\n","new_contents":"(defun split-window-func-with-other-buffer (split-function)\n (lexical-let ((s-f split-function))\n (lambda ()\n (interactive)\n (funcall s-f)\n (set-window-buffer (next-window) (other-buffer)))))\n\n(global-set-key \"\\C-x2\" (split-window-func-with-other-buffer 'split-window-vertically))\n(global-set-key \"\\C-x3\" (split-window-func-with-other-buffer 'split-window-horizontally))\n\n(defun split-window-horizontally-instead ()\n (interactive)\n (save-excursion\n (delete-other-windows)\n (funcall (split-window-func-with-other-buffer 'split-window-horizontally))))\n\n(defun split-window-vertically-instead ()\n (interactive)\n (save-excursion\n (delete-other-windows)\n (funcall (split-window-func-with-other-buffer 'split-window-vertically))))\n\n(global-set-key \"\\C-x|\" 'split-window-horizontally-instead)\n(global-set-key \"\\C-x_\" 'split-window-vertically-instead)\n\n\n(provide 'init-window-split)\n","subject":"Add split-window-vertically-instead, bound to \"C-x _\"","message":"Add split-window-vertically-instead, bound to \"C-x _\"\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"Jadecity\/PurcellEmacs.d,Enzo-Liu\/emacs.d,zuoshifan\/emacs.d,carlosliu\/emacs.d,ruiyang\/emacs.d,qianwan\/emacs.d,kongfy\/emacs.d,mpwang\/emacs.d,dongdonghu\/.emacs.d,cyjia\/emacs.d,zuoshifan\/emacs.d,arthurl\/emacs.d,lujianmei\/emacs.d,wegatron\/emacs.d,cjqw\/emacs.d,zuoshifan\/emacs.d,sgarciac\/emacs.d,ruiyang\/emacs.d,blueseason\/emacs.d,lromang\/emacs.d,zhuoyikang\/emacs.d,hkcqr\/emacs.d,zuoshifan\/emacs.d,Togal\/emacs.d,zuoshifan\/emacs.d,wenpincui\/emacs.d,krzysz00\/emacs.d,farzadbekran\/emacs.d,scorpionis\/emacs.d,46do14\/emacs.d,boblannon\/emacs.d,LKI\/emacs.d,gsmlg\/emacs.d,farzadbekran\/emacs.d,shafayetkhan\/emacs.d,mmqmzk\/emacs.d,zenith-john\/emacs.d,qinshulei\/emacs.d,farzadbekran\/emacs.d,caoyuanqi\/emacs.d,zuoshifan\/emacs.d,modkzs\/emcs.d,YangXin\/emacs.d,LittleLmp\/emacs.d,purcell\/emacs.d,jthetzel\/emacs.d,DarkThrone\/emacs.d,fengxl\/emacs.d,kindoblue\/emacs.d,Shanicky\/emacs.d,ernest-dzf\/emacs.d,Guoozz\/emacs.d,Werewolflsp\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,baohaojun\/emacs.d,jachinpy\/emacs.d,roxolan\/emacs.d,braveoyster\/emacs.d,bibaijin\/emacs.d,jkaessens\/emacs.d,zhaotai\/.emacs.d,danfengcao\/emacs.d,benkha\/emacs.d,dcorking\/emacs.d,renatoriccio\/emacs.d,pairyo\/emacs.d,ilove0518\/emacs.d,whizzzkid\/emacs.d,alant\/emacs.d,jhpx\/emacs.d,zuoshifan\/emacs.d,emuio\/emacs.d,lust4life\/emacs.d,farzadbekran\/emacs.d,jachinpy\/emacs.d,farzadbekran\/emacs.d,haodaivshen\/emacs.d,me020523\/emacs.d,blueabysm\/emacs.d,dhanunjaya\/emacs.d,hophacker\/emacs.d,YangXin\/emacs.d,svenyurgensson\/emacs.d,exclamaforte\/emacs.d,atreeyang\/emacs.d"} {"commit":"a0f3326b4f3fda89431c76374b94e242a2326ab6","old_file":"gnus\/gnus.d\/sources.el","new_file":"gnus\/gnus.d\/sources.el","old_contents":";;; Mail and News Servers\n\n;; News via NNTP\n(setq\n nntp-authinfo-file pmade-authinfo\n gnus-select-method '(nntp \"news.gmane.org\"))\n\n;; Mail via IMAP and SMTP\n(setq\n pmade-mail-server \"mail.pmade.com\"\n nnimap-authinfo-file pmade-authinfo\n message-send-mail-function 'smtpmail-send-it\n smtpmail-smtp-server pmade-mail-server\n smtpmail-auth-credentials pmade-authinfo\n smtpmail-starttls-credentials `((,pmade-mail-server 25 nil nil))\n smtpmail-local-domain \"pmade.com\")\n\n(setq gnus-secondary-select-methods\n `((nnimap ,pmade-mail-server (nnimap-stream ssl))))\n\n;; Place sent mail on the server\n(setq gnus-message-archive-group \"nnimap+mail.pmade.com:INBOX.Sent\")\n\n;; Use the correct value for the Message-ID header\n(defun message-make-message-id ()\n (concat \"<\" (message-unique-id) \"@pmade.com>\"))\n","new_contents":";;; Mail and News Servers\n\n;; News via NNTP\n(setq nntp-authinfo-file pmade-authinfo\n gnus-select-method '(nntp \"news.gmane.org\"))\n\n;; IMAP (incoming mail)\n(setq pmade-mail-server \"mail.pmade.com\"\n nnimap-authinfo-file pmade-authinfo)\n\n;; SMTP (outgoing mail)\n(setq pmade-smtp-host pmade-mail-server\n pmade-smtp-port 25)\n\n;; When I'm on my laptop, do SMTP through a SSH tunnel (because port\n;; 25 is blocked by my ISP and at most coffee shops I frequent)\n(let ((host (replace-regexp-in-string \"\\n\" \"\" (shell-command-to-string \"hostname\"))))\n (when (string= \"skinny.local\" host)\n (setq pmade-smtp-host \"127.0.0.1\"\n pmade-smtp-port 2525\n starttls-extra-arguments '(\"--insecure\"))))\n\n(setq message-send-mail-function 'smtpmail-send-it\n smtpmail-smtp-server pmade-smtp-host\n smtpmail-smtp-service pmade-smtp-port\n smtpmail-auth-credentials pmade-authinfo\n smtpmail-starttls-credentials `((,pmade-smtp-host ,pmade-smtp-port nil nil))\n smtpmail-local-domain \"pmade.com\"\n starttls-use-gnutls t)\n\n(setq gnus-secondary-select-methods\n `((nnimap ,pmade-mail-server (nnimap-stream ssl))))\n\n;; Place sent mail on the server\n(setq gnus-message-archive-group \"nnimap+mail.pmade.com:INBOX.Sent\")\n\n;; Use the correct value for the Message-ID header\n(defun message-make-message-id ()\n (concat \"<\" (message-unique-id) \"@pmade.com>\"))\n","subject":"Work around comcast blocking port 25","message":"Work around comcast blocking port 25\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"0647b3c07033b3df075f84ea27f0cc186301bc38","old_file":"layers\/+chat\/erc\/funcs.el","new_file":"layers\/+chat\/erc\/funcs.el","old_contents":";;; funcs.el --- Spacemacs ERC Layer functions File\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(defun erc\/\/servers (server-list)\n (dolist (s server-list)\n (apply (if\n (plist-get (cdr s) :ssl)\n (progn\n (remf (cdr s) :ssl)\n 'erc-tls)\n 'erc)\n :server s)))\n\n(defun erc\/default-servers ()\n (interactive)\n (if erc-server-list\n (erc\/\/servers erc-server-list)\n (message \"You must define erc-server-list\")))\n","new_contents":";;; funcs.el --- Spacemacs ERC Layer functions File\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(defun erc\/\/servers (server-list)\n (dolist (s server-list)\n (setq s (copy-list s))\n (apply (if\n (plist-get (cdr s) :ssl)\n (progn\n (remf (cdr s) :ssl)\n 'erc-tls)\n 'erc)\n :server s)))\n\n(defun erc\/default-servers ()\n (interactive)\n (if erc-server-list\n (erc\/\/servers erc-server-list)\n (message \"You must define erc-server-list\")))\n","subject":"Fix connecting to default servers with TLS more than once with ERC","message":"Fix connecting to default servers with TLS more than once with ERC\n\nThe erc\/\/servers function removes the :ssl variable from the list so it\ncan be passed directly to erc-tls, but this means that subsequent\nconnections will not use TLS. Thus, we should operate on a copy of the\nlist instead.\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"fdc68759a52d3d76b352a773ba7f3edf76e40c39","old_file":"lib\/eshell-hooks.el","new_file":"lib\/eshell-hooks.el","old_contents":"(add-hook 'eshell-mode-hook\n (lambda ()\n (defalias 'ff 'find-file)\n ))\n","new_contents":"(defun toby\/eshell-in-buffer-dir ()\n \"Open eshell in the current buffer's directory\"\n (interactive)\n (let ((dir default-directory))\n (let ((b (get-buffer eshell-buffer-name)))\n (unless b (eshell))\n )\n (display-buffer eshell-buffer-name t)\n (switch-to-buffer-other-window eshell-buffer-name)\n (end-of-buffer)\n (unless (equalp dir default-directory)\n (cd dir)\n (eshell-send-input)\n (end-of-buffer))))\n\n(global-set-key (kbd \"C-x C-m\") 'toby\/eshell-in-buffer-dir)\n\n(add-hook 'eshell-mode-hook\n (lambda ()\n (defalias 'ff 'find-file)\n ))\n","subject":"Add a function to open eshell in current dir.","message":"Add a function to open eshell in current dir.\n","lang":"Emacs Lisp","license":"mit","repos":"tobytripp\/emacs.d,tobytripp\/emacs.d,tobytripp\/emacs.d,tobytripp\/emacs.d"} {"commit":"2c74b0d500a5f7a57e19ae1c0b88b878072699b3","old_file":"setup-files\/setup-which-key.el","new_file":"setup-files\/setup-which-key.el","old_contents":";; Time-stamp: <2015-07-15 11:35:12 kmodi>\n\n;; Which Key\n;; https:\/\/github.com\/justbur\/emacs-which-key\n\n(use-package which-key\n :defer 15\n :config\n (progn\n (setq which-key-popup-type 'minibuffer) ; default\n ;; (setq which-key-popup-type 'side-window)\n\n (setq which-key-key-replacement-alist\n '((\"<\\\\(\\\\(C-\\\\|M-\\\\)*.+\\\\)>\" . \"\\\\1\")\n (\"left\" . \"🡄\")\n (\"right\" . \"🡆\")\n (\"up\" . \"🡅\")\n (\"down\" . \"🡇\")))\n (setq which-key-special-keys '(\"SPC\" \"TAB\" \"RET\" \"ESC\" \"DEL\"\n \"🡄\" \"🡆\" \"🡅\" \"🡇\"))\n\n (which-key-mode 1)))\n\n\n(provide 'setup-which-key)\n","new_contents":";; Time-stamp: <2015-07-15 12:09:48 kmodi>\n\n;; Which Key\n;; https:\/\/github.com\/justbur\/emacs-which-key\n\n(use-package which-key\n :defer 15\n :config\n (progn\n (setq which-key-popup-type 'minibuffer) ; default\n ;; (setq which-key-popup-type 'side-window)\n\n (setq which-key-key-replacement-alist\n '((\"<\\\\(\\\\(C-\\\\|M-\\\\)*.+\\\\)>\" . \"\\\\1\")\n (\"left\" . \"◀\")\n (\"right\" . \"▶\")\n (\"up\" . \"▲\")\n (\"down\" . \"▼\")))\n (setq which-key-special-keys '(\"SPC\" \"TAB\" \"RET\" \"ESC\" \"DEL\"))\n\n (which-key-mode 1)))\n\n\n(provide 'setup-which-key)\n","subject":"Make the arrows in which-key less garish","message":"Make the arrows in which-key less garish\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"e195e03ee6303e57d76d14c7619123404b3bcf35","old_file":"setup-clojure-mode.el","new_file":"setup-clojure-mode.el","old_contents":"(require 'clojure-mode)\n\n(define-key clojure-mode-map (kbd \"C-c RET jo\") 'clj-jump-to-other-file)\n(define-key clojure-mode-map (kbd \"C-c RET oo\") 'clj-jump-to-other-file-other-window)\n\n(provide 'setup-clojure-mode)\n","new_contents":"(require 'clojure-mode)\n\n(define-key clojure-mode-map (kbd \"C-c C-j\") 'clj-jump-to-other-file)\n(define-key clojure-mode-map (kbd \"C-c M-j\") 'clj-jump-to-other-file-other-window)\n\n(provide 'setup-clojure-mode)\n","subject":"Change clj keybindings for jumping between tests and source.","message":"Change clj keybindings for jumping between tests and source.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"3d9338adfafd760b1960da21fc97f214b59fea1e","old_file":"setup-files\/setup-gtags.el","new_file":"setup-files\/setup-gtags.el","old_contents":";; Time-stamp: <2014-08-19 12:15:30 kmodi>\n\n;; gtags, GNU global\n\n(req-package ggtags\n :require (verilog-mode key-chord)\n :init\n (progn\n (dolist (hook '(verilog-mode-hook\n matlab-mode-hook))\n (add-hook hook 'ggtags-mode))\n (key-chord-define-global \"??\" 'ggtags-show-definition)))\n\n\n(provide 'setup-gtags)\n","new_contents":";; Time-stamp: <2014-11-19 10:19:17 kmodi>\n\n;; gtags, GNU global\n\n(req-package ggtags\n :require (verilog-mode key-chord)\n :init\n (progn\n (setq ggtags-navigation-mode-lighter nil)\n (dolist (hook '(verilog-mode-hook\n matlab-mode-hook\n c-mode-hook))\n (add-hook hook 'ggtags-mode))\n (key-chord-define-global \"??\" 'ggtags-show-definition)))\n\n\n(provide 'setup-gtags)\n","subject":"Enable ggtags-mode in C files too","message":"Enable ggtags-mode in C files too\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"8258623072763da8173b2a605c9a2d62c0f7f49a","old_file":"Emacs\/init.el","new_file":"Emacs\/init.el","old_contents":";; add ELPA and MELPA package repos\n(setq package-archives\n '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t(\"melpa\" . \"http:\/\/melpa.org\/packages\/\")))\n\n;; user solarized dark color theme\n(add-to-list 'custom-theme-load-path \"~\/.emacs.d\/solarized_theme\")\n(set-terminal-parameter nil 'background-mode 'dark)\n(set-frame-parameter nil 'background-mode 'dark)\n(load-theme 'solarized t)\n\n;; define three useful commands(from org guide)\n(global-set-key (kbd \"C-c l\") 'org-store-link)\n(global-set-key (kbd \"C-c a\") 'org-agenda)\n(global-set-key (kbd \"C-c c\") 'org-capture)\n\n;; display line numbers\n(custom-set-variables '(global-display-line-numbers-mode t))\n","new_contents":";; add ELPA and MELPA package repos\n(setq package-archives\n '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t(\"melpa\" . \"http:\/\/melpa.org\/packages\/\")))\n\n;; user solarized dark color theme\n(add-to-list 'custom-theme-load-path \"~\/.emacs.d\/solarized_theme\")\n(set-terminal-parameter nil 'background-mode 'dark)\n(set-frame-parameter nil 'background-mode 'dark)\n(load-theme 'solarized t)\n\n;; define three useful commands(from org guide)\n(global-set-key (kbd \"C-c l\") 'org-store-link)\n(global-set-key (kbd \"C-c a\") 'org-agenda)\n(global-set-key (kbd \"C-c c\") 'org-capture)\n\n;; display line numbers\n(custom-set-variables '(global-display-line-numbers-mode t))\n\n;; Sort apropos result by relevance\n(setq apropos-sort-by-scores t)\n","subject":"Sort apropos result by relavence in Emacs","message":"Sort apropos result by relavence in Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"Gosin\/Vim4Gosin"} {"commit":"845fc78b5508f1d9239edb4bec12c6155b17d3ad","old_file":"lisp\/init-osx-keys.el","new_file":"lisp\/init-osx-keys.el","old_contents":"(when *is-a-mac*\n (setq mac-command-modifier 'meta)\n (setq mac-option-modifier 'none)\n (setq default-input-method \"MacOSX\")\n ;; Make mouse wheel \/ trackpad scrolling less jerky\n (setq mouse-wheel-scroll-amount '(1\n ((shift) . 5)\n ((control))))\n (dolist (multiple '(\"\" \"double-\" \"triple-\"))\n (dolist (direction '(\"right\" \"left\"))\n (global-set-key (kbd (concat \"<\" multiple \"wheel-\" direction \">\")) 'ignore)))\n (global-set-key (kbd \"M-`\") 'ns-next-frame)\n (global-set-key (kbd \"M-h\") 'ns-do-hide-emacs)\n (after-load 'nxml-mode\n (define-key nxml-mode-map (kbd \"M-h\") nil))\n (global-set-key (kbd \"M-ˍ\") 'ns-do-hide-others) ;; what describe-key reports for cmd-option-h\n )\n\n\n(provide 'init-osx-keys)\n","new_contents":"(when *is-a-mac*\n (setq mac-command-modifier 'meta)\n (setq mac-option-modifier 'none)\n (setq default-input-method \"MacOSX\")\n ;; Make mouse wheel \/ trackpad scrolling less jerky\n (setq mouse-wheel-scroll-amount '(1\n ((shift) . 5)\n ((control))))\n (dolist (multiple '(\"\" \"double-\" \"triple-\"))\n (dolist (direction '(\"right\" \"left\"))\n (global-set-key (kbd (concat \"<\" multiple \"wheel-\" direction \">\")) 'ignore)))\n (global-set-key (kbd \"M-`\") 'ns-next-frame)\n (global-set-key (kbd \"M-h\") 'ns-do-hide-emacs)\n (global-set-key (kbd \"M-˙\") 'ns-do-hide-others)\n (after-load 'nxml-mode\n (define-key nxml-mode-map (kbd \"M-h\") nil))\n (global-set-key (kbd \"M-ˍ\") 'ns-do-hide-others) ;; what describe-key reports for cmd-option-h\n )\n\n\n(provide 'init-osx-keys)\n","subject":"Make standard OS X \"Hide Others\" keystroke work","message":"Make standard OS X \"Hide Others\" keystroke work\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d"} {"commit":"9fb4875c18306b9a36a1418bd25ffa6eea2b01b2","old_file":"gnus\/gnus.d\/sources.el","new_file":"gnus\/gnus.d\/sources.el","old_contents":";;; Mail and News Servers\n\n;; News via NNTP\n(setq\n nntp-authinfo-file pmade-authinfo\n gnus-select-method '(nntp \"nntp.aioe.org\"))\n\n;; Mail via IMAP and SMTP\n(setq\n pmade-mail-server \"mail.pmade.com\"\n gnus-secondary-select-methods `((nnimap ,pmade-mail-server (nnimap-stream ssl)))\n nnimap-authinfo-file pmade-authinfo\n message-send-mail-function 'smtpmail-send-it\n smtpmail-smtp-server pmade-mail-server\n smtpmail-auth-credentials pmade-authinfo\n smtpmail-starttls-credentials `((,pmade-mail-server 25 nil nil))\n smtpmail-local-domain \"pmade.com\")\n\n;; Place sent mail on the server\n(setq gnus-message-archive-group \"nnimap+mail.pmade.com:INBOX.Sent\")\n\n;; Use the correct value for the Message-ID header\n(defun message-make-message-id ()\n (concat \"<\" (message-unique-id) \"@pmade.com>\"))\n","new_contents":";;; Mail and News Servers\n\n;; News via NNTP\n(setq\n nntp-authinfo-file pmade-authinfo\n gnus-select-method '(nntp \"nntp.aioe.org\"))\n\n;; Mail via IMAP and SMTP\n(setq\n pmade-mail-server \"mail.pmade.com\"\n nnimap-authinfo-file pmade-authinfo\n message-send-mail-function 'smtpmail-send-it\n smtpmail-smtp-server pmade-mail-server\n smtpmail-auth-credentials pmade-authinfo\n smtpmail-starttls-credentials `((,pmade-mail-server 25 nil nil))\n smtpmail-local-domain \"pmade.com\")\n\n(setq gnus-secondary-select-methods\n `((nntp \"news.gmane.org\")\n (nnimap ,pmade-mail-server (nnimap-stream ssl))))\n\n;; Place sent mail on the server\n(setq gnus-message-archive-group \"nnimap+mail.pmade.com:INBOX.Sent\")\n\n;; Use the correct value for the Message-ID header\n(defun message-make-message-id ()\n (concat \"<\" (message-unique-id) \"@pmade.com>\"))\n","subject":"Add gmane as a source","message":"Add gmane as a source\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"2b4e37c637d87eb6562b227000d84898fe450453","old_file":"test\/yaml-tomato-test.el","new_file":"test\/yaml-tomato-test.el","old_contents":"(ert-deftest count-white-spaces\/test ()\n (should (eq (count-white-spaces \"a\") 0))\n (should (eq (count-white-spaces \" a\") 1))\n (should (eq (count-white-spaces \" a \") 1))\n (should (eq (count-white-spaces \" a\") 2)))\n\n(ert-deftest get-yaml-key\/test ()\n (should (s-equals? (get-yaml-key \" abc:\") \"abc\"))\n (should (s-equals? (get-yaml-key \"hello_world:\") \"hello_world\"))\n (should (s-equals? (get-yaml-key \" hello1: abc\") \"hello1\")))\n","new_contents":"(ert-deftest yaml-tomato--get-yaml-key\/test ()\n (should (s-equals? (yaml-tomato--get-yaml-key \" abc:\") \"abc\"))\n (should (s-equals? (yaml-tomato--get-yaml-key \"hello_world:\") \"hello_world\"))\n (should (s-equals? (yaml-tomato--get-yaml-key \" hello1: abc\") \"hello1\")))\n","subject":"Use preffered community standard way of naming","message":"Use preffered community standard way of naming\n","lang":"Emacs Lisp","license":"mit","repos":"RadekMolenda\/yaml-tomato"} {"commit":"aecd60cfab68e43faf03ad4db107ef7faee85d15","old_file":"modules\/lang\/gdscript\/config.el","new_file":"modules\/lang\/gdscript\/config.el","old_contents":";;; lang\/gdscript\/config.el -*- lexical-binding: t; -*-\n\n(after! projectile\n (add-to-list 'projectile-project-root-files \"project.godot\"))\n\n\n;;\n;;; Packages\n\n(use-package! gdscript-mode\n :defer t\n :config\n (set-lookup-handlers! 'gdscript-mode\n :documentation #'gdscript-docs-browse-symbol-at-point)\n\n (when (featurep! +lsp)\n (add-hook 'gdscript-mode-local-vars-hook #'lsp!))\n\n (map! :localleader\n :map gdscript-mode-map\n\n (:prefix (\"r\" . \"run\")\n \"e\" #'gdscript-godot-open-project-in-editor\n \"p\" #'gdscript-godot-run-project\n \"d\" #'gdscript-godot-run-project-debug\n \"s\" #'gdscript-godot-run-current-scene)\n\n (:prefix (\"h\" . \"help\")\n \"b\" #'gdscript-docs-browse-api\n \"f\" #'gdscript-docs-browse-symbol-at-point)\n\n (:prefix (\"f\" . \"format\")\n \"b\" #'gdscript-format-buffer\n \"r\" #'gdscript-format-region)))\n","new_contents":";;; lang\/gdscript\/config.el -*- lexical-binding: t; -*-\n\n(after! projectile\n (add-to-list 'projectile-project-root-files \"project.godot\"))\n\n\n;;\n;;; Packages\n\n(use-package! gdscript-mode\n :defer t\n :config\n (set-lookup-handlers! 'gdscript-mode\n :documentation #'gdscript-docs-browse-symbol-at-point)\n\n (when (featurep! +lsp)\n (add-hook 'gdscript-mode-local-vars-hook #'lsp!))\n\n (map! :localleader\n :map gdscript-mode-map\n\n (:prefix (\"r\" . \"run\")\n :desc \"Open project in Godot\" \"e\" #'gdscript-godot-open-project-in-editor\n :desc \"Run project\" \"p\" #'gdscript-godot-run-project\n :desc \"Run debug\" \"d\" #'gdscript-godot-run-project-debug\n :desc \"Run current scene\" \"s\" #'gdscript-godot-run-current-scene)\n\n (:prefix (\"d\" . \"debug\")\n :desc \"Add breakpoint\" \"a\" #'gdscript-debug-add-breakpoint\n :desc \"Display breakpoint buffer\" \"b\" #'gdscript-debug-display-breakpoint-buffer\n :desc \"Remove breakpoint\" \"d\" #'gdscript-debug-remove-breakpoint\n :desc \"Continue execution\" \"c\" #'gdscript-debug-continue\n :desc \"Next\" \"n\" #'gdscript-debug-next\n :desc \"Step\" \"s\" #'gdscript-debug-step)\n\n (:prefix (\"h\" . \"help\")\n :desc \"Browse online API\" \"b\" #'gdscript-docs-browse-api\n :desc \"Browse API at point\" \"f\" #'gdscript-docs-browse-symbol-at-point)\n\n (:prefix (\"f\" . \"format\")\n :desc \"Format buffer\" \"b\" #'gdscript-format-buffer\n :desc \"Format region\" \"r\" #'gdscript-format-region)))\n","subject":"Add shortcuts and descriptions for GDScript module","message":"Add shortcuts and descriptions for GDScript module\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs"} {"commit":"a2246d82c17821f4bdde316acf0523ca79b62e52","old_file":"radian-emacs\/radian-yank.el","new_file":"radian-emacs\/radian-yank.el","old_contents":";;; radian-yank.el --- Killing and yanking\n\n;; If you start typing when you have something selected, then the\n;; selection will be deleted. If you press DEL while you have\n;; something selected, it will be deleted rather than\n;; killed. (Otherwise, in both cases the selection is deselected and\n;; the normal function of the key is performed.)\n(delete-selection-mode 1)\n\n;; Make delete-selection-mode work properly with Paredit (so that, for\n;; example, pressing DEL while there is a selection will actually\n;; cause the region to be deleted, as expected). See the commentary in\n;; delsel.el for details about what is going on here.\n(with-eval-after-load 'paredit\n (put 'paredit-forward-delete 'delete-selection 'supersede)\n (put 'paredit-backward-delete 'delete-selection 'supersede)\n (put 'paredit-newline 'delete-selection t))\n\n;; Eliminate duplicates in the kill ring. That is, if you kill the\n;; same thing twice, you won't have to use M-y twice to get past it to\n;; older entries in the kill ring.\n(setq kill-do-not-save-duplicates t)\n\n(provide 'radian-yank)\n\n;;; radian-yank.el ends here\n","new_contents":";;; radian-yank.el --- Killing and yanking\n\n;; If you start typing when you have something selected, then the\n;; selection will be deleted. If you press DEL while you have\n;; something selected, it will be deleted rather than\n;; killed. (Otherwise, in both cases the selection is deselected and\n;; the normal function of the key is performed.)\n(delete-selection-mode 1)\n\n;; Make delete-selection-mode work properly with Paredit (so that, for\n;; example, pressing DEL while there is a selection will actually\n;; cause the region to be deleted, as expected). See the commentary in\n;; delsel.el for details about what is going on here.\n(with-eval-after-load 'paredit\n (put 'paredit-forward-delete 'delete-selection 'supersede)\n (put 'paredit-backward-delete 'delete-selection 'supersede)\n (put 'paredit-newline 'delete-selection t))\n\n;; Make delete-selection-mode work properly with AUCTeX.\n(with-eval-after-load 'latex\n (put 'LaTeX-insert-left-brace 'delete-selection t))\n\n;; Eliminate duplicates in the kill ring. That is, if you kill the\n;; same thing twice, you won't have to use M-y twice to get past it to\n;; older entries in the kill ring.\n(setq kill-do-not-save-duplicates t)\n\n(provide 'radian-yank)\n\n;;; radian-yank.el ends here\n","subject":"Make delete-selection-mode work with AUCTeX","message":"Make delete-selection-mode work with AUCTeX\n","lang":"Emacs Lisp","license":"mit","repos":"raxod502\/radian,raxod502\/radian"} {"commit":"41efd16a62a2f91478749455c8c4a174e39ada60","old_file":"core\/core-workgroups.el","new_file":"core\/core-workgroups.el","old_contents":";;; core-workgroups.el\n;; see lib\/workgroup-defuns.el\n\n(use-package workgroups2\n :init\n (setq wg-session-file (! (expand-file-name \"wg-default\" narf-temp-dir))\n wg-workgroup-directory (! (expand-file-name \"workgroups\" narf-temp-dir))\n wg-first-wg-name \"main\"\n wg-session-load-on-start t\n wg-mode-line-display-on nil\n wg-mess-with-buffer-list t\n ;; What to do on Emacs exit \/ workgroups-mode exit?\n wg-emacs-exit-save-behavior 'save ; Options: 'save 'ask nil\n wg-workgroups-mode-exit-save-behavior 'save)\n :config\n (defvar narf\/helm-source-wg\n '((name . \"Workgroups\")\n (candidates . wg-workgroup-names)\n (action . narf\/wg-helm-switch-to-workgroup)))\n\n (after! projectile\n ;; Turns projectile switch-project interface (or helm's interface to it)\n ;; create a new workgroup for the new project.\n (setq projectile-switch-project-action 'narf\/wg-projectile-switch-project))\n\n ;; Initialize!\n (add-hook! after-init\n (workgroups-mode 1)\n (diminish 'workgroups-mode)))\n\n(provide 'core-workgroups)\n;;; core-workgroups.el ends here\n","new_contents":";;; core-workgroups.el\n;; see lib\/workgroup-defuns.el\n\n(use-package workgroups2\n :when window-system\n :init\n (setq wg-session-file (! (expand-file-name \"wg-default\" narf-temp-dir))\n wg-workgroup-directory (! (expand-file-name \"workgroups\" narf-temp-dir))\n wg-first-wg-name \"main\"\n wg-session-load-on-start t\n wg-mode-line-display-on nil\n wg-mess-with-buffer-list t\n ;; What to do on Emacs exit \/ workgroups-mode exit?\n wg-emacs-exit-save-behavior 'save ; Options: 'save 'ask nil\n wg-workgroups-mode-exit-save-behavior 'save)\n :config\n (defvar narf\/helm-source-wg\n '((name . \"Workgroups\")\n (candidates . wg-workgroup-names)\n (action . narf\/wg-helm-switch-to-workgroup)))\n\n (after! projectile\n ;; Turns projectile switch-project interface (or helm's interface to it)\n ;; create a new workgroup for the new project.\n (setq projectile-switch-project-action 'narf\/wg-projectile-switch-project))\n\n ;; Initialize!\n (add-hook! after-init\n (workgroups-mode 1)\n (diminish 'workgroups-mode)))\n\n(provide 'core-workgroups)\n;;; core-workgroups.el ends here\n","subject":"Disable workgroups2 in terminal emacs","message":"Disable workgroups2 in terminal emacs\n","lang":"Emacs Lisp","license":"mit","repos":"keoko\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,keoko\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,keoko\/.emacs.d,hlissner\/doom-emacs,keoko\/.emacs.d,hlissner\/doom-emacs,keoko\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,keoko\/.emacs.d,hlissner\/doom-emacs,keoko\/.emacs.d,hlissner\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,keoko\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d"} {"commit":"815d8f11dfd790e0b1e2b8cdfaba063810b57737","old_file":"exercises\/hello-world\/hello-world-test.el","new_file":"exercises\/hello-world\/hello-world-test.el","old_contents":";;; hello-world-test.el --- Tests for Hello World (exercism)\n\n;;; Commentary:\n;; Common test data version: 1.1.0 be3ae66\n\n;;; Code:\n\n(load-file \"hello-world.el\")\n\n(ert-deftest hello-world-test ()\n (should (equal (hello) \"Hello, World!\")))\n\n(provide 'hello-world-test)\n\n;;; hello-world-test.el ends here\n","new_contents":";;; hello-world-test.el --- Tests for Hello World (exercism)\n\n;;; Commentary:\n;; Common test data version: 1.1.0 be3ae66\n\n;;; Code:\n\n(load-file \"hello-world.el\")\n\n(ert-deftest hello-world-test ()\n (should (string= (hello) \"Hello, World!\")))\n\n(provide 'hello-world-test)\n\n;;; hello-world-test.el ends here\n","subject":"Use proper string equality test for 'Hello, World'","message":"Use proper string equality test for 'Hello, World'\n","lang":"Emacs Lisp","license":"mit","repos":"exercism\/xelisp"} {"commit":"b0b57f59d02d490e3a7d4f75efe55b5fe4ee428d","old_file":"site-lisp\/clgc-prodigy.el","new_file":"site-lisp\/clgc-prodigy.el","old_contents":"(require 'prodigy)\n\n(prodigy-define-tag :name 'rails\n :ready-message \"Listening on 0\\\\.0\\\\.0\\\\.0:[0-9]+, CTRL\\\\+C to stop\")\n\n(prodigy-define-tag\n :name 'zeus\n :on-output\n (prodigy-callback (service)\n (let ((poll-zeus \"ps aux | grep -c 'zeus slave:'\"))\n (when (>= (string-to-number (shell-command-to-string poll-zeus)) 6)\n (prodigy-set-status service 'ready)))))\n\n(prodigy-define-tag :name 'resque-pool\n :ready-message \"Starting worker\")\n\n;; ansi-color-apply and filter were causing out-of-range errors for zeus\n(setq prodigy-output-filters (remove 'ansi-color-apply prodigy-output-filters))\n\n(provide 'clgc-prodigy)\n","new_contents":"(require 'prodigy)\n\n(prodigy-define-tag :name 'rails\n :ready-message \"Listening on 0\\\\.0\\\\.0\\\\.0:[0-9]+, CTRL\\\\+C to stop\")\n\n(prodigy-define-tag\n :name 'zeus\n :on-output\n (prodigy-callback (service)\n (let ((poll-zeus \"ps aux | grep -c 'zeus slave:'\"))\n (when (>= (string-to-number (shell-command-to-string poll-zeus)) 6)\n (prodigy-set-status service 'ready)))))\n\n(prodigy-define-tag :name 'resque-pool\n :ready-message \"Starting worker\")\n\n(prodigy-define-tag :name 'resque-scheduler\n :ready-message \"Schedules Loaded\")\n\n;; ansi-color-apply and filter were causing out-of-range errors for zeus\n(setq prodigy-output-filters (remove 'ansi-color-apply prodigy-output-filters))\n\n(provide 'clgc-prodigy)\n","subject":"Add ready message for resque scheduler loaded","message":"Add ready message for resque scheduler loaded\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"dgtized\/dotfiles,dgtized\/dotfiles,dgtized\/dotfiles"} {"commit":"33ed1ef007f77b23cba72c1758b8123b131f4925","old_file":"emacs.d\/package-list.el","new_file":"emacs.d\/package-list.el","old_contents":"(require 'my-functions)\n\n;browse-kill-ring\n(let ((my-package-list '(color-theme\n color-theme-approximate\n color-theme-buffer-local\n color-theme-solarized\n demangle-mode\n elpy\n fic-mode\n flycheck\n flycheck-cask\n flycheck-haskell\n git-timemachine\n google-this\n graphviz-dot-mode\n hide-lines\n indent-guide\n jinja2-mode\n js2-mode\n kill-ring-ido\n lorem-ipsum\n markdown-mode\n noflet\n python-mode\n rebox2\n whole-line-or-region\n yasnippet)))\n (mapc #'my\/require-package my-package-list)\n )\n","new_contents":"(require 'my-functions)\n\n;browse-kill-ring\n(let ((my-package-list '(color-theme\n color-theme-approximate\n color-theme-buffer-local\n color-theme-solarized\n demangle-mode\n elpy\n fic-mode\n flycheck\n git-timemachine\n google-this\n graphviz-dot-mode\n hide-lines\n indent-guide\n jinja2-mode\n js2-mode\n kill-ring-ido\n lorem-ipsum\n markdown-mode\n noflet\n python-mode\n rebox2\n whole-line-or-region\n yasnippet)))\n (mapc #'my\/require-package my-package-list)\n )\n","subject":"Remove flycheck haskell and unused flycheck-cask","message":"Remove flycheck haskell and unused flycheck-cask\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"shaleh\/dot-files"} {"commit":"486dcbbe70cf5d77da40b191658d11a53ce37620","old_file":"lisp\/init-purescript.el","new_file":"lisp\/init-purescript.el","old_contents":"(when (maybe-require-package 'purescript-mode)\n (when (maybe-require-package 'psc-ide)\n (add-hook 'purescript-mode-hook\n (lambda ()\n (psc-ide-mode)\n (company-mode)\n (flycheck-mode)\n (turn-on-purescript-indentation))))\n (when (maybe-require-package 'add-node-modules-path)\n (after-load 'purescript-mode\n (add-hook 'purescript-mode-hook 'add-node-modules-path))))\n\n(provide 'init-purescript)\n","new_contents":"(when (maybe-require-package 'purescript-mode)\n (when (maybe-require-package 'psc-ide)\n (add-hook 'purescript-mode-hook\n (lambda ()\n (psc-ide-mode)\n (company-mode)\n (flycheck-mode)\n (turn-on-purescript-indentation))))\n\n (when (maybe-require-package 'psci)\n (add-hook 'purescript-mode-hook 'inferior-psci-mode))\n\n (when (maybe-require-package 'add-node-modules-path)\n (after-load 'purescript-mode\n (add-hook 'purescript-mode-hook 'add-node-modules-path))\n (after-load 'psci\n (advice-add 'psci :around (lambda (oldfun &rest args)\n (let ((psci\/purs-path (or (executable-find \"purs\")\n psci\/purs-path)))\n (apply oldfun args)))))))\n\n(provide 'init-purescript)\n","subject":"Add psci support for purescript","message":"Add psci support for purescript\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"purcell\/emacs.d,sgarciac\/emacs.d,arthurl\/emacs.d,blueseason\/emacs.d,gsmlg\/emacs.d,svenyurgensson\/emacs.d,blueabysm\/emacs.d,mmqmzk\/emacs.d,wegatron\/emacs.d,cjqw\/emacs.d,lust4life\/emacs.d,braveoyster\/emacs.d,kongfy\/emacs.d,emuio\/emacs.d,qianwan\/emacs.d,dcorking\/emacs.d,baohaojun\/emacs.d,krzysz00\/emacs.d,me020523\/emacs.d,kindoblue\/emacs.d,benkha\/emacs.d"} {"commit":"81d17814a17d32ad7afa0d0a596133f9ebf64c07","old_file":"linked_files\/.emacs.d\/init.el","new_file":"linked_files\/.emacs.d\/init.el","old_contents":"(keyboard-translate ?\\C-h ?\\C-?)\n(setq backup-directory-alist\n `((\".*\" . ,temporary-file-directory)))\n(setq auto-save-file-name-transforms\n `((\".*\" ,temporary-file-directory t)))\n","new_contents":";; C-H delete\n(keyboard-translate ?\\C-h ?\\C-?)\n\n;; use system tempdir for auto save files\n(setq backup-directory-alist\n `((\".*\" . ,temporary-file-directory)))\n(setq auto-save-file-name-transforms\n `((\".*\" ,temporary-file-directory t)))\n","subject":"Add comment for emacs config","message":"Add comment for emacs config\n","lang":"Emacs Lisp","license":"mit","repos":"blockgiven\/dotfiles,blockgiven\/dotfiles"} {"commit":"49fd555ed9e25e437916166783c7d5a1778c1372","old_file":"lisp\/init-projectile.el","new_file":"lisp\/init-projectile.el","old_contents":"(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-mode)\n\n (after-load 'projectile\n (define-key projectile-mode-map (kbd \"C-c C-p\") 'projectile-command-map)\n\n ;; Shorter modeline\n (setq-default projectile-mode-line-lighter \" Proj\"))\n\n (maybe-require-package 'ibuffer-projectile))\n\n\n(provide 'init-projectile)\n","new_contents":"(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-mode)\n\n ;; Shorter modeline\n (setq-default projectile-mode-line-lighter \" Proj\")\n\n (after-load 'projectile\n (define-key projectile-mode-map (kbd \"C-c C-p\") 'projectile-command-map))\n\n (maybe-require-package 'ibuffer-projectile))\n\n\n(provide 'init-projectile)\n","subject":"Set shorter projectile modeline correctly","message":"Set shorter projectile modeline correctly\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"benkha\/emacs.d,cjqw\/emacs.d,blueabysm\/emacs.d,qianwan\/emacs.d,emuio\/emacs.d,krzysz00\/emacs.d,purcell\/emacs.d,braveoyster\/emacs.d,me020523\/emacs.d,baohaojun\/emacs.d,kindoblue\/emacs.d,gsmlg\/emacs.d,svenyurgensson\/emacs.d,blueseason\/emacs.d,kongfy\/emacs.d,dcorking\/emacs.d,arthurl\/emacs.d,wegatron\/emacs.d,mmqmzk\/emacs.d,lust4life\/emacs.d,sgarciac\/emacs.d"} {"commit":"c1937397f3cc123ab117635b1e0a4859a748e056","old_file":"modules\/ui\/minimap\/config.el","new_file":"modules\/ui\/minimap\/config.el","old_contents":";;; ui\/minimap\/config.el -*- lexical-binding: t; -*-\n\n(use-package! minimap\n :hook doom-load-theme-hook\n :config\n (setq minimap-window-location 'right\n minimap-update-delay 0\n minimap-width-fraction 0.09\n minimap-minimum-width 15)\n (custom-set-faces!\n `(minimap-current-line-face\n :background ,(doom-color 'selection))\n `(minimap-active-region-background\n :background ,(doom-color 'vertical-bar))))\n","new_contents":";;; ui\/minimap\/config.el -*- lexical-binding: t; -*-\n\n(use-package! minimap\n :hook doom-load-theme-hook\n :config\n (setq minimap-window-location 'right\n minimap-update-delay 0\n minimap-width-fraction 0.09\n minimap-minimum-width 15))\n","subject":"Remove custom faces from module","message":"Remove custom faces from module\n\nRemoved the custom faces from the module in favor of setting them in\ndoom-themes itself\nhttps:\/\/github.com\/hlissner\/emacs-doom-themes\/pull\/467\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"78f2b9e9fa30f0bf3d5562fe27eef066371e04a9","old_file":"lisp\/init-ledger.el","new_file":"lisp\/init-ledger.el","old_contents":"(require-package 'ledger-mode)\n\n(add-to-list 'auto-mode-alist '(\"\\\\.ledger$\" . ledger-mode))\n\n(when (> emacs-major-version 23)\n (require-package 'flycheck-ledger))\n(after-load 'flycheck\n (require 'flycheck-ledger))\n(after-load 'ledger-mode\n (define-key ledger-mode-map (kbd \"RET\") 'newline)\n (define-key ledger-mode-map (kbd \"C-o\") 'open-line))\n\n(setq ledger-highlight-xact-under-point nil\n ledger-use-iso-dates nil)\n\n(exec-path-from-shell-copy-env \"LEDGER_FILE\")\n\n(add-hook 'ledger-mode-hook 'goto-address-prog-mode)\n\n(provide 'init-ledger)\n","new_contents":"(require-package 'ledger-mode)\n\n(add-to-list 'auto-mode-alist '(\"\\\\.ledger$\" . ledger-mode))\n\n(when (> emacs-major-version 23)\n (require-package 'flycheck-ledger))\n(after-load 'flycheck\n (require 'flycheck-ledger))\n(after-load 'ledger-mode\n (define-key ledger-mode-map (kbd \"RET\") 'newline)\n (define-key ledger-mode-map (kbd \"C-o\") 'open-line))\n\n(setq ledger-highlight-xact-under-point nil\n ledger-use-iso-dates nil)\n\n(when (memq window-system '(mac ns))\n (exec-path-from-shell-copy-env \"LEDGER_FILE\"))\n\n(add-hook 'ledger-mode-hook 'goto-address-prog-mode)\n\n(provide 'init-ledger)\n","subject":"Check OS before using exec-path-from-shell for $LEDGER_FILE","message":"Check OS before using exec-path-from-shell for $LEDGER_FILE\n\nSee #174\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"Jadecity\/PurcellEmacs.d,ruiyang\/emacs.d,svenyurgensson\/emacs.d,pairyo\/emacs.d,lust4life\/emacs.d,farzadbekran\/emacs.d,baohaojun\/emacs.d,me020523\/emacs.d,wegatron\/emacs.d,caoyuanqi\/emacs.d,whizzzkid\/emacs.d,LKI\/emacs.d,scorpionis\/emacs.d,hophacker\/emacs.d,wenpincui\/emacs.d,bibaijin\/emacs.d,ilove0518\/emacs.d,LittleLmp\/emacs.d,Guoozz\/emacs.d,farzadbekran\/emacs.d,carlosliu\/emacs.d,renatoriccio\/emacs.d,fengxl\/emacs.d,haodaivshen\/emacs.d,cjqw\/emacs.d,qinshulei\/emacs.d,ruiyang\/emacs.d,zhaotai\/.emacs.d,ernest-dzf\/emacs.d,arthurl\/emacs.d,dongdonghu\/.emacs.d,Enzo-Liu\/emacs.d,jachinpy\/emacs.d,zenith-john\/emacs.d,farzadbekran\/emacs.d,lromang\/emacs.d,sgarciac\/emacs.d,46do14\/emacs.d,Werewolflsp\/emacs.d,jthetzel\/emacs.d,jkaessens\/emacs.d,farzadbekran\/emacs.d,cyjia\/emacs.d,benkha\/emacs.d,qianwan\/emacs.d,DarkThrone\/emacs.d,Shanicky\/emacs.d,modkzs\/emcs.d,atreeyang\/emacs.d,jachinpy\/emacs.d,jhpx\/emacs.d,roxolan\/emacs.d,emuio\/emacs.d,hkcqr\/emacs.d,zhuoyikang\/emacs.d,gsmlg\/emacs.d,kongfy\/emacs.d,dhanunjaya\/emacs.d,dcorking\/emacs.d,farzadbekran\/emacs.d,lujianmei\/emacs.d,mpwang\/emacs.d,braveoyster\/emacs.d,Togal\/emacs.d,blueseason\/emacs.d,shafayetkhan\/emacs.d,krzysz00\/emacs.d,exclamaforte\/emacs.d,danfengcao\/emacs.d,purcell\/emacs.d,mmqmzk\/emacs.d,kindoblue\/emacs.d,boblannon\/emacs.d,blueabysm\/emacs.d,alant\/emacs.d"} {"commit":"d121ccacf324ffc0b9e2d26fb7d90f99d6ceec3c","old_file":"lisp\/init-benchmarking.el","new_file":"lisp\/init-benchmarking.el","old_contents":"(defun sanityinc\/time-subtract-millis (b a)\n (* 1000.0 (float-time (time-subtract b a))))\n\n\n(defvar sanityinc\/require-times nil\n \"A list of (FEATURE . LOAD-DURATION).\nLOAD-DURATION is the time taken in milliseconds to load FEATURE.\")\n\n(defadvice require\n (around build-require-times (feature &optional filename noerror) activate)\n \"Note in `sanityinc\/require-times' the time taken to require each feature.\"\n (let* ((already-loaded (memq feature features))\n (require-start-time (and (not already-loaded) (current-time))))\n (prog1\n ad-do-it\n (when (and (not already-loaded) (memq feature features))\n (add-to-list 'sanityinc\/require-times\n (cons feature\n (sanityinc\/time-subtract-millis (current-time)\n require-start-time))\n t)))))\n\n\n\n(provide 'init-benchmarking)\n","new_contents":"(defun sanityinc\/time-subtract-millis (b a)\n (* 1000.0 (float-time (time-subtract b a))))\n\n\n(defvar sanityinc\/require-times nil\n \"A list of (FEATURE . LOAD-DURATION).\nLOAD-DURATION is the time taken in milliseconds to load FEATURE.\")\n\n(defadvice require (around sanityinc\/build-require-times (feature &optional filename noerror) activate)\n \"Note in `sanityinc\/require-times' the time taken to require each feature.\"\n (let* ((already-loaded (memq feature features))\n (require-start-time (and (not already-loaded) (current-time))))\n (prog1\n ad-do-it\n (when (and (not already-loaded) (memq feature features))\n (let ((time (sanityinc\/time-subtract-millis (current-time) require-start-time)))\n (add-to-list 'sanityinc\/require-times\n (cons feature time)\n t))))))\n\n\n\n(provide 'init-benchmarking)\n","subject":"Tidy up the require-times benchmarking advice","message":"Tidy up the require-times benchmarking advice\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"mmqmzk\/emacs.d,benkha\/emacs.d,baohaojun\/emacs.d,emuio\/emacs.d,jkaessens\/emacs.d,cyjia\/emacs.d,Werewolflsp\/emacs.d,svenyurgensson\/emacs.d,cjqw\/emacs.d,arthurl\/emacs.d,ernest-dzf\/emacs.d,LKI\/emacs.d,kindoblue\/emacs.d,blueabysm\/emacs.d,Shanicky\/emacs.d,qinshulei\/emacs.d,dcorking\/emacs.d,qianwan\/emacs.d,blueseason\/emacs.d,wegatron\/emacs.d,Enzo-Liu\/emacs.d,zhuoyikang\/emacs.d,jhpx\/emacs.d,braveoyster\/emacs.d,purcell\/emacs.d,kongfy\/emacs.d,roxolan\/emacs.d,lujianmei\/emacs.d,46do14\/emacs.d,sgarciac\/emacs.d,zhaotai\/.emacs.d,gsmlg\/emacs.d,lust4life\/emacs.d,zenith-john\/emacs.d,fengxl\/emacs.d,krzysz00\/emacs.d,me020523\/emacs.d"} {"commit":"4fb4065e9ec03b19aed06e2da44317d722875060","old_file":"modules\/my-markdown.el","new_file":"modules\/my-markdown.el","old_contents":";;; -*- lexical-binding: t -*-\n;;; my-markdown.el --- Markdown settings.\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n;; Associate file extensions with this mode\n;; from: http:\/\/jblevins.org\/projects\/markdown-mode\/\n(use-package markdown-mode\n :config\n (add-to-list 'auto-mode-alist '(\"\\\\.text\\\\'\" . markdown-mode))\n (add-to-list 'auto-mode-alist '(\"\\\\.markdown\\\\'\" . markdown-mode))\n (add-to-list 'auto-mode-alist '(\"\\\\.md\\\\'\" . markdown-mode))\n ;; Path to the markdown binary\n ;; check if needed\n (custom-set-variables '(markdown-command \"\/usr\/local\/bin\/markdown\")))\n\n(provide 'my-markdown)\n\n;;; my-markdown.el ends here\n","new_contents":";;; -*- lexical-binding: t -*-\n;;; my-markdown.el --- Markdown settings.\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n;; Associate file extensions with this mode\n;; from: http:\/\/jblevins.org\/projects\/markdown-mode\/\n(use-package markdown-mode\n :commands (markdown-mode gfm-mode)\n :mode ((\"README\\\\.md\\\\'\" . gfm-mode)\n (\"\\\\.md\\\\'\" . markdown-mode)\n (\"\\\\.markdown\\\\'\" . markdown-mode))\n :init (setq markdown-command \"markdown\"))\n\n(provide 'my-markdown)\n\n;;; my-markdown.el ends here\n","subject":"Tidy up the markdown config as per official docs.","message":"Tidy up the markdown config as per official docs.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"timanin\/emacs.d"} {"commit":"b6e80b7409eab008be87cb46e8f3c8c7d5f9ba76","old_file":"layers\/+lang\/nim\/config.el","new_file":"layers\/+lang\/nim\/config.el","old_contents":";;; packages.el --- Nim Configuration Layer for Spacemacs\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Max Gonzih\n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n;; Variables\n\n(spacemacs|defvar-company-backends nim-mode)\n(spacemacs|defvar-company-backends nimscript-mode)\n\n(spacemacs|define-jump-handlers python-mode)\n","new_contents":";;; packages.el --- Nim Configuration Layer for Spacemacs\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Max Gonzih\n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n;; Variables\n\n(spacemacs|defvar-company-backends nim-mode)\n(spacemacs|defvar-company-backends nimscript-mode)\n\n(spacemacs|define-jump-handlers nim-mode)\n","subject":"Fix whoopsie from previous commit","message":"Fix whoopsie from previous commit\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"c41ef0c802e653f53ed2472b4139a917e76dff46","old_file":".mc-lists.el","new_file":".mc-lists.el","old_contents":";; This file is automatically generated by the multiple-cursors extension.\n;; It keeps track of your preferences for running commands with multiple cursors.\n\n(setq mc\/cmds-to-run-for-all\n '(\n beginning-of-line-dwim\n forward-sexp\n sp--self-insert-command\n yas-expand\n zap-up-to-char\n zap-up-to-non-whitespace\n ))\n\n(setq mc\/cmds-to-run-once\n '(\n ag-project-at-point\n smex\n sp-rewrap-sexp\n sp-splice-sexp\n ))\n","new_contents":";; This file is automatically generated by the multiple-cursors extension.\n;; It keeps track of your preferences for running commands with multiple cursors.\n\n(setq mc\/cmds-to-run-for-all\n '(\n backward-sexp\n beginning-of-line-dwim\n forward-sexp\n sp--self-insert-command\n yas-expand\n zap-up-to-char\n zap-up-to-non-whitespace\n ))\n\n(setq mc\/cmds-to-run-once\n '(\n ag-project-at-point\n smex\n sp-rewrap-sexp\n sp-splice-sexp\n ))\n","subject":"Mark backward-sexp as safe for multiple cursors.","message":"Mark backward-sexp as safe for multiple cursors.\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"a110b6ab5f9f1eecb5923e2abaea72ffe0092435","old_file":"modules\/lang\/nix\/config.el","new_file":"modules\/lang\/nix\/config.el","old_contents":";;; lang\/nix\/config.el -*- lexical-binding: t; -*-\n\n(after! tramp\n (add-to-list 'tramp-remote-path \"\/run\/current-system\/sw\/bin\"))\n\n\n;;\n;;; Plugins\n\n(use-package! nix-mode\n :interpreter (\"\\\\(?:cached-\\\\)?nix-shell\" . +nix-shell-init-mode)\n :mode \"\\\\.nix\\\\'\"\n :config\n (set-repl-handler! 'nix-mode #'+nix\/open-repl)\n (set-company-backend! 'nix-mode 'company-nixos-options)\n (set-lookup-handlers! 'nix-mode\n :documentation '(+nix\/lookup-option :async t))\n (set-popup-rule! \"^\\\\*nixos-options-doc\\\\*$\" :ttl 0 :quit t)\n\n (map! :localleader\n :map nix-mode-map\n \"f\" #'nix-update-fetch\n \"p\" #'nix-format-buffer\n \"r\" #'nix-repl-show\n \"s\" #'nix-shell\n \"b\" #'nix-build\n \"u\" #'nix-unpack\n \"o\" #'+nix\/lookup-option))\n\n(use-package! nix-drv-mode\n :mode \"\\\\.drv\\\\'\")\n\n(use-package! nix-update\n :commands nix-update-fetch)\n\n(use-package! nix-repl\n :commands nix-repl-show)\n","new_contents":";;; lang\/nix\/config.el -*- lexical-binding: t; -*-\n\n(after! tramp\n (add-to-list 'tramp-remote-path \"\/run\/current-system\/sw\/bin\"))\n\n\n;;\n;;; Plugins\n\n(use-package! nix-mode\n :interpreter (\"\\\\(?:cached-\\\\)?nix-shell\" . +nix-shell-init-mode)\n :mode \"\\\\.nix\\\\'\"\n :config\n (set-repl-handler! 'nix-mode #'+nix\/open-repl)\n (set-company-backend! 'nix-mode 'company-nixos-options)\n (set-lookup-handlers! 'nix-mode\n :documentation '(+nix\/lookup-option :async t))\n (set-popup-rule! \"^\\\\*nixos-options-doc\\\\*$\" :ttl 0 :quit t)\n\n ;; Fix #3927: disable idle completion because `company-nixos-options' is\n ;; dreadfully slow. It can still be invoked manually..\n (setq-hook! 'nix-mode-hook company-idle-delay nil)\n\n (map! :localleader\n :map nix-mode-map\n \"f\" #'nix-update-fetch\n \"p\" #'nix-format-buffer\n \"r\" #'nix-repl-show\n \"s\" #'nix-shell\n \"b\" #'nix-build\n \"u\" #'nix-unpack\n \"o\" #'+nix\/lookup-option))\n\n(use-package! nix-drv-mode\n :mode \"\\\\.drv\\\\'\")\n\n(use-package! nix-update\n :commands nix-update-fetch)\n\n(use-package! nix-repl\n :commands nix-repl-show)\n","subject":"Disable idle completion in nix-mode","message":"Disable idle completion in nix-mode\n\ncompany-nixos-options is dreadfully slow, so we make code completion\nmanual in nix-mode.\n\nCloses #3927\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"f530a2c26dc732a70e52016cce1e9961296d23e0","old_file":"modules\/app\/twitter\/autoload.el","new_file":"modules\/app\/twitter\/autoload.el","old_contents":";;; app\/twitter\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(defun =twitter ()\n (interactive)\n (+workspace-switch \"Twitter\" t)\n (delete-other-windows)\n (condition-case ex\n (progn\n (call-interactively #'twit)\n (unless (get-buffer (car twittering-initial-timeline-spec-string))\n (error \"Failed to open twitter\"))\n (switch-to-buffer (car twittering-initial-timeline-spec-string))\n (dolist (name (cdr twittering-initial-timeline-spec-string))\n (split-window-horizontally)\n (switch-to-buffer name))\n (balance-windows))\n ('error\n (+twitter\/quit-all))))\n\n;;;###autoload\n(defun +twitter\/quit ()\n (interactive)\n (when (eq major-mode 'twittering-mode)\n (twittering-kill-buffer)\n (+workspace\/close-window-or-workspace)))\n\n;;;###autoload\n(defun +twitter\/quit-all ()\n (interactive)\n (+workspace\/delete \"Twitter\")\n (dolist (buf (doom-buffers-in-mode 'twittering-mode))\n (with-current-buffer buf\n (twittering-kill-buffer))))\n\n;;;###autoload\n(defun +twitter\/rerender-all ()\n (interactive)\n (dolist (buf (doom-buffers-in-mode 'twittering-mode))\n (with-current-buffer buf\n (twittering-rerender-timeline-all buf))))\n","new_contents":";;; app\/twitter\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(defun =twitter ()\n (interactive)\n (+workspace-switch \"*Twitter*\" t)\n (delete-other-windows)\n (condition-case ex\n (progn\n (call-interactively #'twit)\n (unless (get-buffer (car twittering-initial-timeline-spec-string))\n (error \"Failed to open twitter\"))\n (switch-to-buffer (car twittering-initial-timeline-spec-string))\n (dolist (name (cdr twittering-initial-timeline-spec-string))\n (split-window-horizontally)\n (switch-to-buffer name))\n (balance-windows))\n ('error\n (+twitter\/quit-all))))\n\n;;;###autoload\n(defun +twitter\/quit ()\n (interactive)\n (when (eq major-mode 'twittering-mode)\n (twittering-kill-buffer)\n (+workspace\/close-window-or-workspace)))\n\n;;;###autoload\n(defun +twitter\/quit-all ()\n (interactive)\n (+workspace\/delete \"Twitter\")\n (dolist (buf (doom-buffers-in-mode 'twittering-mode))\n (with-current-buffer buf\n (twittering-kill-buffer))))\n\n;;;###autoload\n(defun +twitter\/rerender-all ()\n (interactive)\n (dolist (buf (doom-buffers-in-mode 'twittering-mode))\n (with-current-buffer buf\n (twittering-rerender-timeline-all buf))))\n","subject":"Fix app\/twitter workspace name: *Twitter*","message":"Fix app\/twitter workspace name: *Twitter*\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,aminb\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,aminb\/.emacs.d,aminb\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d"} {"commit":"95ac48e557503ccc49405acbcda4af76960e2e13","old_file":"setup-files\/setup-latex.el","new_file":"setup-files\/setup-latex.el","old_contents":";; Time-stamp: <2014-11-07 12:45:03 kmodi>\n\n;; LaTeX\n\n(prepend-path (concat user-emacs-directory \"\/auctex\"))\n\n(load \"auctex.el\" nil t t)\n(load \"preview-latex.el\" nil t t)\n\n(setq LaTeX-command \"latex -shell-escape\")\n\n;; Source: http:\/\/www.sigmafield.org\/2009\/10\/03\/using-doc-view-with-auto-revert-to-view-latex-pdf-output-in-emacs\n(add-hook 'doc-view-mode-hook 'auto-revert-mode)\n;; Source: http:\/\/www.gnu.org\/software\/auctex\/manual\/auctex\/Multifile.html\n(setq TeX-PDF-mode t\n TeX-auto-save t\n TeX-parse-self t\n TeX-save-query nil)\n\n(setq-default TeX-master nil) ; Query for master file.\n\n\n(provide 'setup-latex)\n","new_contents":";; Time-stamp: <2014-11-07 13:52:39 kmodi>\n;;\n;; LaTeX\n;;\n;; NOTE: auctex has to be installed from outside emacs for the below `load's\n;; to work.\n;;\n;; 1. Download the latest auctex from http:\/\/www.gnu.org\/software\/auctex\/download-for-unix.html\n;; 2. tar xvzf auctex-VERSION.tar.gz\n;; 3. .\/configure --prefix=\/home\/kmodi\/usr_local --with-lispdir=\/home\/kmodi\/.emacs.d\/auctex\/ --with-texmf-dir=\/home\/kmodi\/texlive\/texmf-local\/\n;; - prefix <- Location of your \/usr\/local\n;; - with-lispdir <- I prefer to keep auctex elisp stuff in my ~\/.emacs.d\n;; - with-texmf-dir <- Location of texlive texmf directory\n;; 4. make\n;; 5. make install\n\n(prepend-path (concat user-emacs-directory \"\/auctex\"))\n\n(load \"auctex.el\" nil t t)\n(load \"preview-latex.el\" nil t t)\n\n(setq LaTeX-command \"latex -shell-escape\")\n\n;; Source: http:\/\/www.sigmafield.org\/2009\/10\/03\/using-doc-view-with-auto-revert-to-view-latex-pdf-output-in-emacs\n(add-hook 'doc-view-mode-hook 'auto-revert-mode)\n\n;; Source: http:\/\/www.gnu.org\/software\/auctex\/manual\/auctex\/Multifile.html\n(setq TeX-PDF-mode t\n TeX-auto-save t\n TeX-parse-self t\n TeX-save-query nil)\n\n(setq-default TeX-master nil) ; Query for master file.\n\n\n(provide 'setup-latex)\n","subject":"Add information on how to install auctex","message":"Add information on how to install auctex\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"8839bf6cad282a1813aaa0dd04f050949dd891bc","old_file":"biosite\/boron-dir-locals.el","new_file":"biosite\/boron-dir-locals.el","old_contents":"(\n (nil . ((projectile-project-compilation-dir . \".\/build\")\n (projectile-project-compilation-cmd . \"ninja\")\n\n ;; Include common in file listings\n (projectile-hg-command . \"hg locate -f -0 -I . && hg locate -R common -f -0 -I common\/\")\n )\n )\n )\n","new_contents":"(\n (nil . ((projectile-project-compilation-dir . \".\/build\")\n (projectile-project-compilation-cmd . \"ninja\")\n\n ;; Include common in file listings\n (projectile-hg-command . \"hg files -0 -S\")\n )\n )\n )\n","subject":"Use hg files not hg locate","message":"Use hg files not hg locate\n","lang":"Emacs Lisp","license":"cc0-1.0","repos":"davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles"} {"commit":"a4bdeeae95ca7cdf7452f3dcf4c4e7fb1f8d9a3a","old_file":"init-haml.el","new_file":"init-haml.el","old_contents":"(add-auto-mode 'haml-mode \"\\.haml$\")\n(add-auto-mode 'sass-mode \"\\.sass$\")\n(autoload 'haml-mode \"haml-mode\" \"Mode for editing haml files\" t)\n(autoload 'sass-mode \"sass-mode\" \"Mode for editing sass files\" t)\n\n(require 'flymake-haml)\n(add-hook 'haml-mode-hook 'flymake-haml-load)\n(add-hook 'sass-mode-hook 'flymake-sass-load)\n\n\n(provide 'init-haml)","new_contents":"(add-auto-mode 'haml-mode \"\\.haml$\")\n(add-auto-mode 'sass-mode \"\\.sass$\" \"\\.scss$\")\n(autoload 'haml-mode \"haml-mode\" \"Mode for editing haml files\" t)\n(autoload 'sass-mode \"sass-mode\" \"Mode for editing sass files\" t)\n\n(require 'flymake-haml)\n(add-hook 'haml-mode-hook 'flymake-haml-load)\n(add-hook 'sass-mode-hook 'flymake-sass-load)\n\n\n(provide 'init-haml)","subject":"Use sass-mode in .scss files too","message":"Use sass-mode in .scss files too\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"jhpx\/emacs.d,lujianmei\/emacs.d,fengxl\/emacs.d,ernest-dzf\/emacs.d,LittleLmp\/emacs.d,boblannon\/emacs.d,DarkThrone\/emacs.d,zuoshifan\/emacs.d,wegatron\/emacs.d,zuoshifan\/emacs.d,mmqmzk\/emacs.d,exclamaforte\/emacs.d,lust4life\/emacs.d,ruiyang\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,wenpincui\/emacs.d,alant\/emacs.d,me020523\/emacs.d,Shanicky\/emacs.d,ilove0518\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,hophacker\/emacs.d,zenith-john\/emacs.d,caoyuanqi\/emacs.d,Werewolflsp\/emacs.d,kindoblue\/emacs.d,hkcqr\/emacs.d,LKI\/emacs.d,danfengcao\/emacs.d,svenyurgensson\/emacs.d,Togal\/emacs.d,Enzo-Liu\/emacs.d,zuoshifan\/emacs.d,blueabysm\/emacs.d,YangXin\/emacs.d,modkzs\/emcs.d,baohaojun\/emacs.d,46do14\/emacs.d,farzadbekran\/emacs.d,zhaotai\/.emacs.d,qianwan\/emacs.d,krzysz00\/emacs.d,whizzzkid\/emacs.d,zuoshifan\/emacs.d,jkaessens\/emacs.d,renatoriccio\/emacs.d,jthetzel\/emacs.d,Guoozz\/emacs.d,dhanunjaya\/emacs.d,Jadecity\/PurcellEmacs.d,kongfy\/emacs.d,emuio\/emacs.d,lromang\/emacs.d,atreeyang\/emacs.d,jachinpy\/emacs.d,qinshulei\/emacs.d,cyjia\/emacs.d,roxolan\/emacs.d,YangXin\/emacs.d,farzadbekran\/emacs.d,pairyo\/emacs.d,ruiyang\/emacs.d,farzadbekran\/emacs.d,benkha\/emacs.d,mpwang\/emacs.d,zuoshifan\/emacs.d,dcorking\/emacs.d,braveoyster\/emacs.d,blueseason\/emacs.d,sgarciac\/emacs.d,cjqw\/emacs.d,zuoshifan\/emacs.d,carlosliu\/emacs.d,purcell\/emacs.d,dongdonghu\/.emacs.d,farzadbekran\/emacs.d,shafayetkhan\/emacs.d,gsmlg\/emacs.d,zhuoyikang\/emacs.d,haodaivshen\/emacs.d,arthurl\/emacs.d,bibaijin\/emacs.d,scorpionis\/emacs.d,farzadbekran\/emacs.d"} {"commit":"ab80b51751d89caa2f8bcd76df41394342cfc0a2","old_file":"setup-wrap-region.el","new_file":"setup-wrap-region.el","old_contents":"(require 'wrap-region)\n\n;; Active in all modes\n(wrap-region-global-mode t)\n\n;; Only wrap region if trigger key is given a negative prefix argument\n(setq wrap-region-only-with-negative-prefix t)\n\n;; Custom wrappers\n\n(wrap-region-add-wrapper \"{ value: \" \" }\" \"v\" 'js2-mode)\n(wrap-region-add-wrapper \"$(\" \")\" \"$\" 'js2-mode)\n\n(wrap-region-add-wrapper \"\" \"o\" 'html-mode)\n(wrap-region-add-wrapper \"

    \" \"<\/p>\" \"p\" 'html-mode)\n(wrap-region-add-wrapper \"

  • \" \"<\/li>\" \"l\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/strong>\" \"s\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/a>\" \"a\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/span>\" \"r\" 'html-mode)\n(wrap-region-add-wrapper \"

    \" \"<\/h1>\" \"h\" 'html-mode)\n(wrap-region-add-wrapper \"${\" \"}\" \"$\" 'html-mode)\n\n(provide 'setup-wrap-region)\n","new_contents":"(require 'wrap-region)\n\n;; Active in all modes\n(wrap-region-global-mode t)\n\n;; Only wrap region if trigger key is given a negative prefix argument\n(setq wrap-region-only-with-negative-prefix t)\n\n;; Don't screw up key bindings in magit-mode\n(add-to-list 'wrap-region-except-modes 'magit-mode)\n\n;; Custom wrappers\n\n(wrap-region-add-wrapper \"{ value: \" \" }\" \"v\" 'js2-mode)\n(wrap-region-add-wrapper \"$(\" \")\" \"$\" 'js2-mode)\n\n(wrap-region-add-wrapper \"\" \"o\" 'html-mode)\n(wrap-region-add-wrapper \"

    \" \"<\/p>\" \"p\" 'html-mode)\n(wrap-region-add-wrapper \"

  • \" \"<\/li>\" \"l\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/strong>\" \"s\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/a>\" \"a\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/span>\" \"r\" 'html-mode)\n(wrap-region-add-wrapper \"

    \" \"<\/h1>\" \"h\" 'html-mode)\n(wrap-region-add-wrapper \"${\" \"}\" \"$\" 'html-mode)\n\n(provide 'setup-wrap-region)\n","subject":"Fix problem in magit with staging\/reverting chunks in region.","message":"Fix problem in magit with staging\/reverting chunks in region.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"281185719e7f554067ffa6cc34304f1e4ea4b35d","old_file":"contrib\/lang\/scala\/packages.el","new_file":"contrib\/lang\/scala\/packages.el","old_contents":"(defvar scala-packages\n '(\n ensime\n sbt-mode\n scala-mode2\n )\n \"List of all packages to install and\/or initialize. Built-in packages\nwhich require an initialization must be listed explicitly in the list.\")\n\n(defun spacemacs\/init-ensime ()\n (use-package ensime\n :defer t\n :config\n (progn\n (evil-define-key 'normal scala-mode-map \"J\" 'spacemacs\/scala-join-line)\n\n (evil-define-key 'normal ensime-popup-buffer-map\n (kbd \"q\") 'ensime-popup-buffer-quit-function)\n\n (evil-define-key 'normal ensime-refactor-info-map\n (kbd \"q\") 'spacemacs\/ensime-refactor-cancel\n (kbd \"c\") 'spacemacs\/ensime-refactor-accept\n (kbd \"RET\") 'spacemacs\/ensime-refactor-accept)\n\n (evil-define-key 'normal ensime-compile-result-map\n (kbd \"g\") 'ensime-show-all-errors-and-warnings\n (kbd \"TAB\") 'forward-button\n (kbd \"\") 'backward-button\n (kbd \"M-n\") 'forward-button\n (kbd \"M-p\") 'backward-button))))\n","new_contents":"(defvar scala-packages\n '(\n ensime\n sbt-mode\n scala-mode2\n )\n \"List of all packages to install and\/or initialize. Built-in packages\nwhich require an initialization must be listed explicitly in the list.\")\n\n(defun spacemacs\/init-ensime ()\n (use-package ensime\n :commands (ensime-mode)\n :init\n (add-hook 'scala-mode-hook 'ensime-mode)\n :config\n (progn\n (evil-define-key 'normal scala-mode-map \"J\" 'spacemacs\/scala-join-line)\n\n (evil-define-key 'normal ensime-popup-buffer-map\n (kbd \"q\") 'ensime-popup-buffer-quit-function)\n\n (evil-define-key 'normal ensime-refactor-info-map\n (kbd \"q\") 'spacemacs\/ensime-refactor-cancel\n (kbd \"c\") 'spacemacs\/ensime-refactor-accept\n (kbd \"RET\") 'spacemacs\/ensime-refactor-accept)\n\n (evil-define-key 'normal ensime-compile-result-map\n (kbd \"g\") 'ensime-show-all-errors-and-warnings\n (kbd \"TAB\") 'forward-button\n (kbd \"\") 'backward-button\n (kbd \"M-n\") 'forward-button\n (kbd \"M-p\") 'backward-button))))\n","subject":"Enable ensime in all scala buffers","message":"Enable ensime in all scala buffers\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"381b86360f936c59c177f65faf494a08217c334f","old_file":"init-org.el","new_file":"init-org.el","old_contents":"(setq load-path (cons \"~\/.emacs.d\/site-lisp\/org-mode\/lisp\" load-path))\n(setq load-path (cons \"~\/.emacs.d\/site-lisp\/org-mode\/contrib\/lisp\" load-path))\n(define-key global-map \"\\C-cl\" 'org-store-link)\n(define-key global-map \"\\C-ca\" 'org-agenda)\n(setq org-log-done t)\n(add-to-list 'auto-mode-alist '(\"\\\\.org$\" . org-mode))\n\n;; Save the running clock and all clock history when exiting Emacs, load it on startup\n(setq org-clock-persistence-insinuate t)\n(setq org-clock-persist t)\n(setq org-clock-in-resume t)\n\n;; Change task state to STARTED when clocking in\n(setq org-clock-in-switch-to-state \"STARTED\")\n;; Save clock data and notes in the LOGBOOK drawer\n(setq org-clock-into-drawer t)\n;; Removes clocked tasks with 0:00 duration\n(setq org-clock-out-remove-zero-time-clocks t)\n\n(eval-after-load \"org\"\n '(require 'org-checklist))\n\n\n(provide 'init-org)\n","new_contents":"(setq load-path (cons \"~\/.emacs.d\/site-lisp\/org-mode\/lisp\" load-path))\n(setq load-path (cons \"~\/.emacs.d\/site-lisp\/org-mode\/contrib\/lisp\" load-path))\n(define-key global-map \"\\C-cl\" 'org-store-link)\n(define-key global-map \"\\C-ca\" 'org-agenda)\n(setq org-log-done t)\n(add-to-list 'auto-mode-alist '(\"\\\\.org$\" . org-mode))\n\n(setq org-todo-keywords (quote ((sequence \"TODO(t)\" \"STARTED(s)\" \"|\" \"DONE(d!\/!)\"))))\n\n;; Save the running clock and all clock history when exiting Emacs, load it on startup\n(setq org-clock-persistence-insinuate t)\n(setq org-clock-persist t)\n(setq org-clock-in-resume t)\n\n;; Change task state to STARTED when clocking in\n(setq org-clock-in-switch-to-state \"STARTED\")\n;; Save clock data and notes in the LOGBOOK drawer\n(setq org-clock-into-drawer t)\n;; Removes clocked tasks with 0:00 duration\n(setq org-clock-out-remove-zero-time-clocks t)\n\n(eval-after-load \"org\"\n '(require 'org-checklist))\n\n\n(provide 'init-org)\n","subject":"Add \"STARTED\" to my default org TODO keywords","message":"Add \"STARTED\" to my default org TODO keywords\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zuoshifan\/emacs.d,hophacker\/emacs.d,Werewolflsp\/emacs.d,me020523\/emacs.d,krzysz00\/emacs.d,shafayetkhan\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,lujianmei\/emacs.d,cyjia\/emacs.d,arthurl\/emacs.d,LKI\/emacs.d,gsmlg\/emacs.d,braveoyster\/emacs.d,zuoshifan\/emacs.d,hkcqr\/emacs.d,Togal\/emacs.d,emuio\/emacs.d,haodaivshen\/emacs.d,roxolan\/emacs.d,Jadecity\/PurcellEmacs.d,baohaojun\/emacs.d,benkha\/emacs.d,jachinpy\/emacs.d,exclamaforte\/emacs.d,ernest-dzf\/emacs.d,YangXin\/emacs.d,pairyo\/emacs.d,mmqmzk\/emacs.d,scorpionis\/emacs.d,jhpx\/emacs.d,wegatron\/emacs.d,zuoshifan\/emacs.d,ruiyang\/emacs.d,Guoozz\/emacs.d,boblannon\/emacs.d,whizzzkid\/emacs.d,46do14\/emacs.d,farzadbekran\/emacs.d,dhanunjaya\/emacs.d,Enzo-Liu\/emacs.d,lust4life\/emacs.d,dongdonghu\/.emacs.d,ruiyang\/emacs.d,ilove0518\/emacs.d,carlosliu\/emacs.d,LittleLmp\/emacs.d,kindoblue\/emacs.d,atreeyang\/emacs.d,zuoshifan\/emacs.d,Shanicky\/emacs.d,farzadbekran\/emacs.d,alant\/emacs.d,zuoshifan\/emacs.d,zhuoyikang\/emacs.d,purcell\/emacs.d,dcorking\/emacs.d,sgarciac\/emacs.d,qianwan\/emacs.d,farzadbekran\/emacs.d,jthetzel\/emacs.d,svenyurgensson\/emacs.d,danfengcao\/emacs.d,wenpincui\/emacs.d,caoyuanqi\/emacs.d,lromang\/emacs.d,bibaijin\/emacs.d,blueseason\/emacs.d,renatoriccio\/emacs.d,kongfy\/emacs.d,DarkThrone\/emacs.d,zhaotai\/.emacs.d,mpwang\/emacs.d,YangXin\/emacs.d,blueabysm\/emacs.d,jachinpy\/emacs.d,zenith-john\/emacs.d,modkzs\/emcs.d,jkaessens\/emacs.d,zuoshifan\/emacs.d,cjqw\/emacs.d,zuoshifan\/emacs.d,qinshulei\/emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,fengxl\/emacs.d"} {"commit":"2e9aac4d4a090bf05895484397913b7ca79ef841","old_file":"custom\/44-flyspell.el","new_file":"custom\/44-flyspell.el","old_contents":"(require 'flyspell)\n(setq flyspell-issue-message-flg nil)\n\n(add-hook 'enh-ruby-mode-hook\n (lambda () (flyspell-prog-mode)))\n\n(add-hook 'web-mode-hook\n (lambda () (flyspell-prog-mode)))\n\n(add-hook 'org-mode-hook\n\t (lambda () (flyspell-prog-mode)))\n\n(add-hook 'haml-mode-hook\n\t (lambda () ('flymake-haml-load)))\n\n;; flyspell mode breaks auto-complete mode without this.\n(ac-flyspell-workaround)\n","new_contents":"(require 'flyspell)\n(setq flyspell-issue-message-flg nil)\n(setq ispell-dictionary \"british\")\n\n(add-hook 'enh-ruby-mode-hook\n (lambda () (flyspell-prog-mode)))\n\n(add-hook 'web-mode-hook\n (lambda () (flyspell-prog-mode)))\n\n(add-hook 'coffee-mode-hook\n\t (lambda () (flyspell-prog-mode)))\n\n(add-hook 'org-mode-hook\n\t (lambda () (flyspell-prog-mode)))\n\n\n(add-hook 'haml-mode-hook\n\t (lambda () ('flymake-haml-load)))\n\n\n;; flyspell mode breaks auto-complete mode without this.\n(ac-flyspell-workaround)\n","subject":"Set my spell checker to british","message":"Set my spell checker to british\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"151d64dd5d2604ef5c9bed6c21df1fbc9315d261","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +prescient +fuzzy)\n (company +childframe)\n\n :ui\n doom\n doom-dashboard\n modeline\n ophints\n hl-todo\n nav-flash\n treemacs\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n format\n\n :emacs\n (dired +icons)\n vc\n\n :tools\n lookup\n eval\n make\n (magit +forge)\n (lsp +peek)\n editorconfig\n pdf\n ein\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +lsp)\n (org\n +attach\n +babel\n +export)\n (cc +lsp)\n idris\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp)\n (javascript +lsp)\n rest\n data\n (rust +lsp)\n csharp\n coq\n\n :checkers\n grammar\n spell\n (syntax +childframe)\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n )\n\n\n;; Needs to be set early so it can't go into config\n(setq evil-respect-visual-line-mode t)\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +prescient +fuzzy)\n (company +childframe)\n\n :ui\n doom\n doom-dashboard\n modeline\n ophints\n hl-todo\n nav-flash\n treemacs\n (popup +all +defaults)\n (ligatures +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n format\n\n :emacs\n (dired +icons)\n vc\n\n :tools\n lookup\n eval\n make\n (magit +forge)\n (lsp +peek)\n editorconfig\n pdf\n ein\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +lsp)\n (org\n +attach\n +babel\n +export)\n (cc +lsp)\n idris\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp)\n (javascript +lsp)\n rest\n data\n (rust +lsp)\n csharp\n coq\n\n :checkers\n grammar\n spell\n (syntax +childframe)\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n )\n\n\n;; Needs to be set early so it can't go into config\n(setq evil-respect-visual-line-mode t)\n","subject":"Change pretty-code module to ligatures","message":"[emacs] Change pretty-code module to ligatures\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"87b00ccf3b6e8960352b2ebc88570ae5a61da879","old_file":"layers\/mfa-pass\/packages.el","new_file":"layers\/mfa-pass\/packages.el","old_contents":"(defconst mfa-pass-packages '(helm-pass))\n\n(defun mfa-pass\/init-helm-pass ()\n (use-package helm-pass\n :defer t\n :init\n (spacemacs\/set-leader-keys \"op\" #'helm-pass)))\n","new_contents":"(defconst mfa-pass-packages '(helm-pass))\n\n(defun mfa-pass\/init-helm-pass ()\n (use-package helm-pass\n :defer t\n :init\n (spacemacs\/set-leader-keys \"ou\" #'helm-pass)))\n","subject":"Change keybinding of helm-pass to not conflict with projectile term","message":"Change keybinding of helm-pass to not conflict with projectile term\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"4fc148c96011bb44a8c8a3d5e2bf7fd4a4fd0cb4","old_file":".emacs.d\/prelude-modules.el","new_file":".emacs.d\/prelude-modules.el","old_contents":";;; Uncomment the modules you'd like to use and restart Prelude afterwards\n\n;; Emacs IRC client\n(require 'prelude-erc)\n(require 'prelude-ido) ;; Super charges Emacs completion for C-x C-f and more\n(require 'prelude-helm) ;; Interface for narrowing and search\n(require 'prelude-helm-everywhere) ;; Enable Helm everywhere\n(require 'prelude-company)\n;; (require 'prelude-key-chord) ;; Binds useful features to key combinations\n;; (require 'prelude-mediawiki)\n;; (require 'prelude-evil)\n\n;;; Programming languages support\n(require 'prelude-c)\n(require 'prelude-emacs-lisp)\n(require 'prelude-lisp)\n(require 'prelude-org) ;; Org-mode helps you keep TODO lists, notes and more\n(require 'prelude-perl)\n(require 'prelude-python)\n(require 'prelude-scheme)\n(require 'prelude-shell)\n(require 'prelude-xml)\n;; (require 'prelude-clojure)\n;; (require 'prelude-coffee)\n;; (require 'prelude-common-lisp)\n;; (require 'prelude-css)\n;; (require 'prelude-erlang)\n;; (require 'prelude-elixir)\n;; (require 'prelude-go)\n;; (require 'prelude-haskell)\n;; (require 'prelude-js)\n;; (require 'prelude-latex)\n;; (require 'prelude-ocaml)\n;; (require 'prelude-ruby)\n;; (require 'prelude-scala)\n;; (require 'prelude-scss)\n;; (require 'prelude-web) ;; Emacs mode for web templates\n;; (require 'prelude-yaml)\n","new_contents":";;; Uncomment the modules you'd like to use and restart Prelude afterwards\n\n;; Emacs IRC client\n(require 'prelude-erc)\n(require 'prelude-ido) ;; Super charges Emacs completion for C-x C-f and more\n(require 'prelude-helm) ;; Interface for narrowing and search\n(require 'prelude-helm-everywhere) ;; Enable Helm everywhere\n(require 'prelude-company)\n;; (require 'prelude-key-chord) ;; Binds useful features to key combinations\n;; (require 'prelude-mediawiki)\n;; (require 'prelude-evil)\n\n;;; Programming languages support\n(require 'prelude-c)\n(require 'prelude-emacs-lisp)\n(require 'prelude-lisp)\n(require 'prelude-org) ;; Org-mode helps you keep TODO lists, notes and more\n(require 'prelude-perl)\n(require 'prelude-python)\n(require 'prelude-scheme)\n(require 'prelude-shell)\n(require 'prelude-xml)\n;; (require 'prelude-clojure)\n;; (require 'prelude-coffee)\n;; (require 'prelude-common-lisp)\n;; (require 'prelude-css)\n;; (require 'prelude-erlang)\n;; (require 'prelude-elixir)\n(require 'prelude-go)\n(require 'prelude-haskell)\n;; (require 'prelude-js)\n;; (require 'prelude-latex)\n(require 'prelude-ocaml)\n;; (require 'prelude-ruby)\n;; (require 'prelude-scala)\n;; (require 'prelude-scss)\n;; (require 'prelude-web) ;; Emacs mode for web templates\n;; (require 'prelude-yaml)\n","subject":"Add some more modules to Emacs","message":"Add some more modules to Emacs\n\nSigned-off-by: Rafael Campos Nunes <42f0a9af43f2538fd3153aecc7c3ff958e89d724@engineer.com>\n","lang":"Emacs Lisp","license":"mit","repos":"rafaelcn\/Linux-setup,rafaelcn\/dotfiles"} {"commit":"6d5f34756031d2aedd9abd8985b8ab20810966f7","old_file":"emacs\/emacs.d.symlink\/osx.el","new_file":"emacs\/emacs.d.symlink\/osx.el","old_contents":";;; osx.el --- Handles configuration specifc to OS X\n\n;;; Commentary:\n\n;; All configuration only relevant when running Emacs on OS X.\n\n;;; Code:\n\n;; Use command as meta key, leave option alone\n(setq mac-command-modifier 'meta)\n(setq mac-option-modifier nil)\n\n;; Menu bar is not annoying in OSX\n(menu-bar-mode 1)\n\n;; Make the browser the OS X default\n(setq browse-url-browser-function 'browse-url-default-macosx-browser)\n\n;; In dired, move deletions to trash\n(setq delete-by-moving-to-trash t)\n\n;; Set font\n(set-frame-font \"-apple-Source_Code_Pro-medium-normal-normal-*-*-*-*-*-m-0-iso10646-1\")\n\n(defun finder ()\n \"Opens file directory in Finder.\"\n (interactive)\n (let ((file (buffer-file-name)))\n (if file\n (shell-command\n (format \"%s %s\" (executable-find \"open\") (file-name-directory file)))\n (error \"Buffer is not attached to any file\"))))\n\n;; Use GNU ls - install with:\n;; brew install xz\n;; brew install coreutils\n(setq insert-directory-program \"gls\")\n\n(provide 'osx)\n;;; osx.el ends here\n","new_contents":";;; osx.el --- Handles configuration specifc to OS X\n\n;;; Commentary:\n\n;; All configuration only relevant when running Emacs on OS X.\n\n;;; Code:\n\n;; Use command as meta key, leave option alone\n(setq mac-command-modifier 'meta)\n(setq mac-option-modifier nil)\n\n;; Menu bar is not annoying in OSX\n(menu-bar-mode 1)\n\n;; Make the browser the OS X default\n(setq browse-url-browser-function 'browse-url-default-macosx-browser)\n\n;; In dired, move deletions to trash\n(setq delete-by-moving-to-trash t)\n\n;; Set font\n(set-frame-font \"-apple-Source_Code_Pro_for_Powerline-medium-normal-normal-*-12-*-*-*-m-0-iso10646-1\")\n\n(defun finder ()\n \"Opens file directory in Finder.\"\n (interactive)\n (let ((file (buffer-file-name)))\n (if file\n (shell-command\n (format \"%s %s\" (executable-find \"open\") (file-name-directory file)))\n (error \"Buffer is not attached to any file\"))))\n\n;; Use GNU ls - install with:\n;; brew install xz\n;; brew install coreutils\n(setq insert-directory-program \"gls\")\n\n(provide 'osx)\n;;; osx.el ends here\n","subject":"Fix Emacs font on OS X","message":"Fix Emacs font on OS X\n","lang":"Emacs Lisp","license":"mit","repos":"jcf\/ansible-dotfiles,jcf\/ansible-dotfiles,jcf\/ansible-dotfiles,jcf\/ansible-dotfiles,jcf\/ansible-dotfiles"} {"commit":"e7e10a02ef74b529e1c9044073692628d64d410b","old_file":"modes\/projectile-conf.el","new_file":"modes\/projectile-conf.el","old_contents":";;; projectile-conf.el -- Settings for projectile.\n(eval-when-compile\n (require 'projectile))\n\n(custom-set-variables\n '(projectile-switch-project-action 'projectile-dired)\n '(projectile-mode-line\n '(:eval (format \" [%s]\" (projectile-project-name)))))\n\n(add-to-list 'projectile-globally-ignored-modes \"mu4e-.*-mode\")\n(add-to-list 'projectile-globally-ignored-modes \"org-agenda-mode\")\n\n(add-to-list 'projectile-project-root-files \"GNUmakefile\")\n(add-to-list 'projectile-project-root-files \"Rakefile\")\n(add-to-list 'projectile-project-root-files \"package.json\")\n(add-to-list 'projectile-project-root-files-bottom-up \".dir-locals.el\")\n\n(projectile-register-project-type\n 'edify '(\"default.nix\" \"courses\" \"content\")\n \"nix-shell --run 'edify build courses\/*'\")\n\n(projectile-register-project-type\n 'haskell '(\"default.nix\" \"Setup.hs\") \"nix-hs\")\n","new_contents":";;; projectile-conf.el -- Settings for projectile.\n(eval-when-compile\n (require 'projectile))\n\n(custom-set-variables\n '(projectile-switch-project-action 'projectile-dired)\n '(projectile-mode-line\n '(:eval (format \" [%s]\" (projectile-project-name)))))\n\n(add-to-list 'projectile-globally-ignored-modes \"mu4e-.*-mode\")\n(add-to-list 'projectile-globally-ignored-modes \"org-agenda-mode\")\n\n(add-to-list 'projectile-project-root-files \"GNUmakefile\")\n(add-to-list 'projectile-project-root-files \"Rakefile\")\n(add-to-list 'projectile-project-root-files \"package.json\")\n(add-to-list 'projectile-project-root-files-bottom-up \".dir-locals.el\")\n\n(projectile-register-project-type\n 'edify '(\"default.nix\" \"courses\" \"content\")\n :compile \"nix-shell --run 'edify build courses\/*'\")\n\n(projectile-register-project-type\n 'haskell '(\"default.nix\" \"Setup.hs\")\n :compile \"nix-hs\")\n","subject":"Update to latest version of projectile","message":"Update to latest version of projectile\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"c4535faadae97c2119e4d1766d6f28d39f28c470","old_file":"setup-clojure-mode.el","new_file":"setup-clojure-mode.el","old_contents":"(require 'clojure-mode)\n\n(define-key clojure-mode-map (kbd \"C-c C-j\") 'clj-jump-to-other-file)\n(define-key clojure-mode-map (kbd \"C-c M-j\") 'clj-jump-to-other-file-other-window)\n\n(provide 'setup-clojure-mode)\n","new_contents":"(require 'clojure-mode)\n\n(define-key clojure-mode-map (kbd \"C-c C-j\") 'clj-jump-to-other-file)\n(define-key clojure-mode-map (kbd \"C-c M-j\") 'clj-jump-to-other-file-other-window)\n\n(defadvice clojure-test-run-tests (before save-first activate)\n (save-buffer))\n\n(autoload 'clojure-test-mode \"clojure-test-mode\")\n\n(provide 'setup-clojure-mode)\n","subject":"Save buffer before running tests in clojure-test-mode","message":"Save buffer before running tests in clojure-test-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"c6fa3b4cbce7fefba8fa7e198144e6118bff7f93","old_file":"setup-files\/setup-number.el","new_file":"setup-files\/setup-number.el","old_contents":";; Time-stamp: <2014-08-13 11:24:24 kmodi>\n\n;; Number\n;; https:\/\/github.com\/chrisdone\/chrisdone-emacs\/blob\/master\/packages\/number\/number.el\n\n(req-package number)\n\n\n(provide 'setup-number)\n","new_contents":";; Time-stamp: <2015-01-21 14:19:14 kmodi>\n\n;; Number\n;; https:\/\/github.com\/chrisdone\/number\n\n(req-package number)\n\n\n(provide 'setup-number)\n","subject":"Fix the package source link in comment","message":"Fix the package source link in comment\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"2d67303d473550d65df65af6cc4b35656a3712b8","old_file":"custom.el","new_file":"custom.el","old_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(custom-enabled-themes (quote (brin)))\n '(custom-safe-themes\n (quote\n (\"7bde52fdac7ac54d00f3d4c559f2f7aa899311655e7eb20ec5491f3b5c533fe8\" \"9f3a4edb56d094366afed2a9ba3311bbced0f32ca44a47a765d8ef4ce5b8e4ea\" default)))\n '(session-use-package t nil (session)))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(diff-refine-added ((t (:inherit diff-refine-change :background \"SpringGreen4\"))))\n '(diff-refine-removed ((t (:inherit diff-refine-change :background \"firebrick4\"))))\n '(mode-line ((t (:background \"#292B2D\" :foreground \"#3A85BD\"))))\n '(mode-line-buffer-id ((t (:foreground \"SpringGreen3\")))))\n","new_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(custom-enabled-themes (quote (brin base16-default-dark)))\n '(custom-safe-themes\n (quote\n (\"7bde52fdac7ac54d00f3d4c559f2f7aa899311655e7eb20ec5491f3b5c533fe8\" \"9f3a4edb56d094366afed2a9ba3311bbced0f32ca44a47a765d8ef4ce5b8e4ea\" default))))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(diff-refine-added ((t (:inherit diff-refine-change :background \"SpringGreen4\"))))\n '(diff-refine-removed ((t (:inherit diff-refine-change :background \"firebrick4\"))))\n '(mode-line ((t (:background \"#292B2D\" :foreground \"#3A85BD\"))))\n '(mode-line-buffer-id ((t (:foreground \"SpringGreen3\")))))\n","subject":"Change order of loading themes","message":"Change order of loading themes\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"shafayetkhan\/emacs.d"} {"commit":"268489d690e6191c7e6f76f6d0683fbab47b929f","old_file":"key-chords.el","new_file":"key-chords.el","old_contents":"(require 'key-chord)\n(key-chord-mode 1)\n\n;; Move to char similar to \"f\" in vim, f+j forward, f+h backward\n(key-chord-define-global \"fj\" 'iy-go-to-char)\n(key-chord-define-global \"fh\" 'iy-go-to-char-backward)\n\n;; Indent entire buffer and fix whitespace\n(key-chord-define-global \"i0\" 'indent-buffer)\n(key-chord-define-global \"i9\" 'whitespace-cleanup)\n\n\n(provide 'key-chords)","new_contents":"(require 'key-chord)\n(key-chord-mode 1)\n\n;; Move to char similar to \"f\" in vim, f+j forward, f+h backward\n(key-chord-define-global \"fj\" 'iy-go-to-char)\n(key-chord-define-global \"fh\" 'iy-go-to-char-backward)\n\n\n(provide 'key-chords)","subject":"Remove unneccessary chords - already have C-c n (cleanup-buffer)","message":"Remove unneccessary chords\n - already have C-c n (cleanup-buffer)\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"60298939568499586ebf7660ab1ebba79c82041a","old_file":"config\/newemacs\/settings\/evil-nerd-commenter-settings.el","new_file":"config\/newemacs\/settings\/evil-nerd-commenter-settings.el","old_contents":"(use-package evil-nerd-commenter\n :config\n (evil-leader\/set-key\n \";\" 'evilnc-comment-or-uncomment-lines\n \"ci\" 'evilnc-comment-or-uncomment-lines\n \"cl\" 'evilnc-quick-comment-or-uncomment-to-the-line\n \"cc\" 'evilnc-copy-and-comment-lines\n \"cp\" 'evilnc-comment-or-uncomment-paragraphs\n \"cr\" 'comment-or-uncomment-region))\n\n(provide 'evil-nerd-commenter-settings)\n","new_contents":"(use-package evil-nerd-commenter\n :config\n (evil-leader\/set-key\n \";\" 'evilnc-comment-or-uncomment-lines\n \"ci\" 'evilnc-comment-or-uncomment-lines\n \"cl\" 'evilnc-quick-comment-or-uncomment-to-the-line\n \"cc\" 'evilnc-copy-and-comment-lines\n \"cp\" 'evilnc-comment-or-uncomment-paragraphs\n \"cr\" 'comment-or-uncomment-region))\n\n(add-hook 'c-mode-common-hook\n (lambda ()\n ;; Preferred comment style\n (setq comment-start \"\/\/ \"\n comment-end \"\")))\n\n(provide 'evil-nerd-commenter-settings)\n","subject":"Change default c-mode comment style to single line comments","message":"Change default c-mode comment style to single line comments\n","lang":"Emacs Lisp","license":"mit","repos":"rogerzanoni\/dotfiles"} {"commit":"04bb36e0ae1430262b048d400102b0fed43377ac","old_file":"hw\/ip\/uart\/dv\/cov\/uart_cov_excl.el","new_file":"hw\/ip\/uart\/dv\/cov\/uart_cov_excl.el","old_contents":"\/\/ Copyright lowRISC contributors.\n\/\/ Licensed under the Apache License, Version 2.0, see LICENSE for details.\n\/\/ SPDX-License-Identifier: Apache-2.0\n\n\/\/ Coverage exclusion file for uart\nCHECKSUM: \"1115183444 4229339\"\nINSTANCE: tb.dut.uart_core\n\/\/ this is unreachable condition\nCondition 16 \"7100374\" \"(break_err && (break_st == BRK_CHK)) 1 -1\" (2 \"10\")\nCHECKSUM: \"1115183444 3548154843\"\nINSTANCE: tb.dut.uart_core\n\/\/ these are scanmode ralated branches\nBranch 1 \"2534752149\" \"scanmode_i\" (0) \"scanmode_i 1\"\nBranch 5 \"2534752149\" \"scanmode_i\" (0) \"scanmode_i 1\"\nBranch 1 \"2534752149\" \"scanmode_i\" (1) \"scanmode_i 0\"\nBranch 5 \"2534752149\" \"scanmode_i\" (1) \"scanmode_i 0\"\n\/\/ default branch, it's unreachable\nBranch 9 \"221332935\" \"(!rst_ni)\" (5) \"(!rst_ni) 0,default,-,-\"\n","new_contents":"\/\/ Copyright lowRISC contributors.\n\/\/ Licensed under the Apache License, Version 2.0, see LICENSE for details.\n\/\/ SPDX-License-Identifier: Apache-2.0\n\n\/\/ Coverage exclusion file for uart\nANNOTATION: \"[UNR] default branch\"\nCHECKSUM: \"2856317324 3065048585\"\nINSTANCE: tb.dut.uart_core\nBranch 7 \"2483258407\" \"(!rst_ni)\" (5) \"(!rst_ni) 0,default,-,-\"\n","subject":"Update coverage exclusion file as design change","message":"[uart\/dv] Update coverage exclusion file as design change\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"lowRISC\/opentitan,lowRISC\/opentitan,lowRISC\/opentitan,lowRISC\/opentitan,lowRISC\/opentitan,lowRISC\/opentitan"} {"commit":"cbcd52fb24fe4bcd83f29732bb2bd872122911ea","old_file":"emacs\/lisp\/packages.el","new_file":"emacs\/lisp\/packages.el","old_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '(magit flymake-ruby ruby-end inf-ruby htmlize yaml-mode bm gist haskell-mode)\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive t))\n\n;; Prepare package management\n(package-initialize)\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p))))\n","new_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '(magit flymake-ruby ruby-end inf-ruby htmlize yaml-mode\n bm gist haskell-mode switch-window)\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive t))\n\n;; Prepare package management\n(package-initialize)\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p))))\n","subject":"Add a package for switching windows easily","message":"Add a package for switching windows easily\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"6a2db8478364554c343dc4d96ef73e5d6e40919b","old_file":".emacs.d\/personal\/personal.el","new_file":".emacs.d\/personal\/personal.el","old_contents":";; show line numbers\n(global-linum-mode t)\n\n;; enable arrow keys\n(setq prelude-guru nil)\n\n;; disable standard theme\n(disable-theme 'zenburn)\n\n;; disable spellchecking\n(setq prelude-flyspell nil)\n\n;; hide scrollbar\n(scroll-bar-mode -1)\n\n;; Highlight current line\n(global-hl-line-mode 0)\n\n;; Install Intero\n(require 'intero)\n(add-hook 'haskell-mode-hook 'intero-mode)\n\n;; PureScript\n(require 'psc-ide)\n\n(add-hook 'purescript-mode-hook\n (lambda ()\n (psc-ide-mode)\n (company-mode)\n (flycheck-mode)\n (turn-on-purescript-indentation)))\n\n;; nix\n(require 'nix-mode)\n","new_contents":";; show line numbers\n(global-linum-mode t)\n\n;; enable arrow keys\n(setq prelude-guru nil)\n\n;; disable standard theme\n(disable-theme 'zenburn)\n\n;; disable spellchecking\n(setq prelude-flyspell nil)\n\n;; hide scrollbar\n(scroll-bar-mode -1)\n\n;; Highlight current line\n(global-hl-line-mode 0)\n\n;; Install Intero\n(package-install 'intero)\n(add-hook 'haskell-mode-hook 'intero-mode)\n\n;; PureScript\n(package-install 'psc-ide)\n\n(add-hook 'purescript-mode-hook\n (lambda ()\n (psc-ide-mode)\n (company-mode)\n (flycheck-mode)\n (turn-on-purescript-indentation)))\n\n;; nix\n(package-install 'nix-mode)\n","subject":"Fix installation of needed packages","message":"Fix installation of needed packages\n","lang":"Emacs Lisp","license":"mit","repos":"sectore\/dotfiles,sectore\/dotfiles"} {"commit":"30cfbc19b43b7db2851ebee93428a5637b575030","old_file":"setup-dired.el","new_file":"setup-dired.el","old_contents":";; Make dired less verbose\n(require 'dired-details)\n(setq-default dired-details-hidden-string \" \")\n(dired-details-install)\n\n\n(provide 'setup-dired)","new_contents":";; Make dired less verbose\n(require 'dired-details)\n(setq-default dired-details-hidden-string \"\")\n(dired-details-install)\n\n\n(provide 'setup-dired)","subject":"Remove more whitespace from dired listings.","message":"Remove more whitespace from dired listings.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"3f414d2a7f57d96c319aca978d4b586378590282","old_file":"setup-files\/setup-hardcore.el","new_file":"setup-files\/setup-hardcore.el","old_contents":";; Time-stamp: <2013-12-02 17:07:21 kmodi>\n\n;; Hardcore mode\n\n(setq too-hardcore-backspace t)\n(setq too-hardcore-return t)\n\n(require 'hardcore-mode)\n\n(global-hardcore-mode)\n\n(provide 'setup-hardcore)\n","new_contents":";; Time-stamp: <2014-07-13 23:57:23 kmodi>\n\n;; Hardcore mode\n\n(setq too-hardcore-backspace t)\n(setq too-hardcore-return t)\n\n(require 'hardcore-mode)\n\n(global-hardcore-mode)\n\n\n(setq setup-hardcore-loaded t)\n(provide 'setup-hardcore)\n","subject":"Set a var when loading this setup file","message":"Set a var when loading this setup file\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"ea620ad4e88f57a28f61c214fbb5c13fe5afd204","old_file":"custom\/theme.el","new_file":"custom\/theme.el","old_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n\n;; in default Emacs, themes can be kind of stacked.\n;; Dissable this behavior.\n(defadvice load-theme\n (before theme-dont-propagate activate)\n (mapcar #'disable-theme custom-enabled-themes))\n","new_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n\n;; in default Emacs, themes can be kind of stacked.\n;; Dissable this behavior.\n(defadvice load-theme\n (before theme-dont-propagate activate)\n (mapc #'disable-theme custom-enabled-themes))\n","subject":"Change deprecated \"mapcar\" to \"mapc\"","message":"Change deprecated \"mapcar\" to \"mapc\"\n","lang":"Emacs Lisp","license":"unlicense","repos":"schanur\/emacs.d"} {"commit":"dda396e5c2433a7122b8dbbc73f40c9d40115f45","old_file":"emacs.d\/base.el","new_file":"emacs.d\/base.el","old_contents":"(setq ad-redefinition-action 'accept)\n(setq-default truncate-lines t)\n\n(setq-default indent-tabs-mode nil)\n(setq-default tab-width 2)\n(setq-default tab-stop-list (number-sequence 2 120 2))\n\n(defalias 'yes-or-no-p 'y-or-n-p)\n\n(add-hook 'before-save-hook 'delete-trailing-whitespace)\n\n(setq prettify-symbols-unprettify-at-point t)\n(prettify-symbols-mode)\n\n;; Enable yanking and pasting to and from both clipboards\n(setq x-select-enable-clipboard t)\n(setq x-select-enable-primary t)\n(setq mouse-drag-copy-region t)\n","new_contents":"(setq ad-redefinition-action 'accept)\n(setq-default truncate-lines t)\n\n(setq-default indent-tabs-mode nil)\n(setq-default tab-width 2)\n(setq-default tab-stop-list (number-sequence 2 120 2))\n\n(defalias 'yes-or-no-p 'y-or-n-p)\n\n(add-hook 'before-save-hook 'delete-trailing-whitespace)\n\n(setq prettify-symbols-unprettify-at-point t)\n(prettify-symbols-mode)\n\n;; Enable yanking and pasting to and from both clipboards\n(setq select-enable-clipboard t)\n(setq select-enable-primary t)\n(setq mouse-drag-copy-region t)\n","subject":"Set clipboard copying with newer vars","message":"emacs: Set clipboard copying with newer vars\n","lang":"Emacs Lisp","license":"mit","repos":"bbenne10\/dotfiles,bbenne10\/dotfiles"} {"commit":"1bc2cd67a184f6953b57b65c5df10756f64b4258","old_file":".emacs.d\/w-packages\/markdown-mode.el","new_file":".emacs.d\/w-packages\/markdown-mode.el","old_contents":";; -*- coding: utf-8 -*-\r\n(use-package markdown-mode\r\n :mode (\"\\\\.text\\\\'\" \"\\\\.markdown\\\\'\" \"\\\\.md\\\\'\"))","new_contents":";; -*- coding: utf-8 -*-\r\n(use-package markdown-mode\r\n :commands (markdown-mode gfm-mode)\r\n :mode ((\"README\\\\.md\\\\'\" . gfm-mode)\r\n (\"\\\\.md\\\\'\" . markdown-mode)\r\n (\"\\\\.markdown\\\\'\" . markdown-mode))\r\n :init (setq markdown-command \"multimarkdown\"))\r\n","subject":"Update config for mark down mode","message":"Update config for mark down mode\n","lang":"Emacs Lisp","license":"mit","repos":"winterTTr\/emacs-winterTTr"} {"commit":"4ab1f8d147ef7f1517afb0974a7f9996e9780209","old_file":"init-flymake.el","new_file":"init-flymake.el","old_contents":"(require-package 'flymake-cursor)\n\n(setq flymake-gui-warnings-enabled nil)\n\n;; Stop flymake from breaking when ruby-mode is invoked by mmm-mode,\n;; at which point buffer-file-name is nil\n(eval-after-load 'flymake\n '(progn\n (global-set-key (kbd \"C-`\") 'flymake-goto-next-error)\n\n (defun flymake-can-syntax-check-file (file-name)\n \"Determine whether we can syntax check FILE-NAME.\nReturn nil if we cannot, non-nil if we can.\"\n (if (and file-name (flymake-get-init-function file-name)) t nil))))\n\n(provide 'init-flymake)\n","new_contents":"(require-package 'flymake-cursor)\n\n(setq flymake-gui-warnings-enabled nil)\n\n;; Stop flymake from breaking when ruby-mode is invoked by mmm-mode,\n;; at which point buffer-file-name is nil\n(eval-after-load 'flymake\n '(progn\n (defun flymake-can-syntax-check-file (file-name)\n \"Determine whether we can syntax check FILE-NAME.\nReturn nil if we cannot, non-nil if we can.\"\n (if (and file-name (flymake-get-init-function file-name)) t nil))))\n\n(provide 'init-flymake)\n","subject":"Remove binding of C-` for flymake-goto-next-error","message":"Remove binding of C-` for flymake-goto-next-error\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"DarkThrone\/emacs.d,wenpincui\/emacs.d,roxolan\/emacs.d,qinshulei\/emacs.d,Shanicky\/emacs.d,dhanunjaya\/emacs.d,farzadbekran\/emacs.d,jachinpy\/emacs.d,farzadbekran\/emacs.d,benkha\/emacs.d,caoyuanqi\/emacs.d,zenith-john\/emacs.d,farzadbekran\/emacs.d,emuio\/emacs.d,braveoyster\/emacs.d,jkaessens\/emacs.d,haodaivshen\/emacs.d,farzadbekran\/emacs.d,whizzzkid\/emacs.d,ruiyang\/emacs.d,blueabysm\/emacs.d,sgarciac\/emacs.d,Werewolflsp\/emacs.d,Guoozz\/emacs.d,shafayetkhan\/emacs.d,purcell\/emacs.d,alant\/emacs.d,exclamaforte\/emacs.d,zhaotai\/.emacs.d,jhpx\/emacs.d,lromang\/emacs.d,cyjia\/emacs.d,bibaijin\/emacs.d,scorpionis\/emacs.d,me020523\/emacs.d,jthetzel\/emacs.d,zhuoyikang\/emacs.d,boblannon\/emacs.d,ruiyang\/emacs.d,krzysz00\/emacs.d,farzadbekran\/emacs.d,renatoriccio\/emacs.d,LittleLmp\/emacs.d,mpwang\/emacs.d,46do14\/emacs.d,Enzo-Liu\/emacs.d,Togal\/emacs.d,jachinpy\/emacs.d,hophacker\/emacs.d,fengxl\/emacs.d,ernest-dzf\/emacs.d,hkcqr\/emacs.d,lust4life\/emacs.d,baohaojun\/emacs.d,LKI\/emacs.d,dongdonghu\/.emacs.d,kongfy\/emacs.d,ilove0518\/emacs.d,blueseason\/emacs.d,qianwan\/emacs.d,lujianmei\/emacs.d,mmqmzk\/emacs.d,danfengcao\/emacs.d,dcorking\/emacs.d,arthurl\/emacs.d,carlosliu\/emacs.d,Jadecity\/PurcellEmacs.d,svenyurgensson\/emacs.d,kindoblue\/emacs.d,atreeyang\/emacs.d,gsmlg\/emacs.d,wegatron\/emacs.d,pairyo\/emacs.d,modkzs\/emcs.d,cjqw\/emacs.d"} {"commit":"ff3248d0222ff6e4adce42adcc4d4b13e4164d98","old_file":"modules\/lang\/scala\/config.el","new_file":"modules\/lang\/scala\/config.el","old_contents":";;; lang\/scala\/config.el -*- lexical-binding: t; -*-\n\n(after! projectile\n (add-to-list 'projectile-project-root-files \"build.sbt\"))\n\n\n;;\n;;; Packages\n\n(after! scala-mode\n (setq scala-indent:align-parameters t\n ;; indent block comments to first asterix, not second\n scala-indent:use-javadoc-style t)\n\n (setq-hook! 'scala-mode-hook\n comment-line-break-function #'+scala-comment-indent-new-line-fn)\n\n (when (featurep! +lsp)\n (add-hook 'scala-mode-local-vars-hook #'lsp!))\n\n (set-ligatures! 'scala-mode\n ;; Functional\n :def \"def\"\n :composition \"compose\"\n ;; HKT\n :lambda \"Lambda\"\n ;; Types\n :null \"none\"\n :null \"None\"\n :true \"true\"\n :false \"false\"\n :int \"Int\"\n :str \"String\"\n :float \"Float\"\n :bool \"Boolean\"\n :list \"List\"\n ;; Flow\n :for \"for\"\n :not \"!\"\n :and \"&&\"\n :or \"||\"\n :yield \"yield\"\n ;; Other\n :union \"union\"\n :intersect \"intersect\"\n :diff \"diff\"))\n\n\n(use-package! sbt-mode\n :after scala-mode\n :config (set-repl-handler! 'scala-mode #'+scala\/open-repl :persist t))\n","new_contents":";;; lang\/scala\/config.el -*- lexical-binding: t; -*-\n\n(after! projectile\n (add-to-list 'projectile-project-root-files \"build.sbt\"))\n\n\n;;\n;;; Packages\n\n(after! scala-mode\n (setq scala-indent:align-parameters t\n ;; indent block comments to first asterix, not second\n scala-indent:use-javadoc-style t)\n\n (setq-hook! 'scala-mode-hook\n comment-line-break-function #'+scala-comment-indent-new-line-fn)\n\n (when (featurep! +lsp)\n (setq-hook! 'scala-mode-hook lsp-enable-indentation nil)\n (add-hook 'scala-mode-local-vars-hook #'lsp!))\n\n (set-ligatures! 'scala-mode\n ;; Functional\n :def \"def\"\n :composition \"compose\"\n ;; HKT\n :lambda \"Lambda\"\n ;; Types\n :null \"none\"\n :null \"None\"\n :true \"true\"\n :false \"false\"\n :int \"Int\"\n :str \"String\"\n :float \"Float\"\n :bool \"Boolean\"\n :list \"List\"\n ;; Flow\n :for \"for\"\n :not \"!\"\n :and \"&&\"\n :or \"||\"\n :yield \"yield\"\n ;; Other\n :union \"union\"\n :intersect \"intersect\"\n :diff \"diff\"))\n\n\n(use-package! sbt-mode\n :after scala-mode\n :config (set-repl-handler! 'scala-mode #'+scala\/open-repl :persist t))\n","subject":"Disable lsp indentation in scala mode","message":"Disable lsp indentation in scala mode\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"8e1d1b951eb405ce5d289b48aed6121d025763ca","old_file":"lisp\/init-exec-path.el","new_file":"lisp\/init-exec-path.el","old_contents":"(require-package 'exec-path-from-shell)\n\n(after-load 'exec-path-from-shell\n (dolist (var '(\"SSH_AUTH_SOCK\" \"SSH_AGENT_PID\" \"GPG_AGENT_INFO\" \"LANG\" \"LC_CTYPE\"))\n (add-to-list 'exec-path-from-shell-variables var)))\n\n\n(when (memq window-system '(mac ns x))\n (setq-default exec-path-from-shell-arguments nil)\n (exec-path-from-shell-initialize))\n\n(provide 'init-exec-path)\n","new_contents":"(require-package 'exec-path-from-shell)\n\n(after-load 'exec-path-from-shell\n (dolist (var '(\"SSH_AUTH_SOCK\" \"SSH_AGENT_PID\" \"GPG_AGENT_INFO\" \"LANG\" \"LC_CTYPE\"))\n (add-to-list 'exec-path-from-shell-variables var)))\n\n\n(when (memq window-system '(mac ns x))\n (exec-path-from-shell-initialize))\n\n(provide 'init-exec-path)\n","subject":"Revert \"Run exec-path-from-shell in strict mode, requiring optimal shell config\"","message":"Revert \"Run exec-path-from-shell in strict mode, requiring optimal shell config\"\n\nThis reverts commit c01ca45ff5a3c4d6312e7d85e5c1fea2f42f95c2.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"emuio\/emacs.d"} {"commit":"41b2466be798d5487d59ed5b61248adc39cc73f0","old_file":"setup-skewer.el","new_file":"setup-skewer.el","old_contents":"\n;; Bookmarklet to load skewer:\n;;\n;; javascript:(function(){var d=document ;var s=d.createElement('script');s.src='http:\/\/localhost:8023\/skewer';d.body.appendChild(s);})()\n;;\n\n(require 'skewer-mode)\n(require 'skewer-repl)\n\n(defun skewer-start ()\n (interactive)\n (let ((httpd-port 8023))\n (httpd-start)\n (message \"Ready to skewer the browser. Now jack in with the bookmarklet.\")))\n\n(defun skewer-demo ()\n (interactive)\n (let ((httpd-port 8024))\n (run-skewer)\n (skewer-repl)))\n\n(require 'mouse-slider-mode)\n\n(add-to-list 'mouse-slider-mode-eval-funcs\n '(js2-mode . skewer-eval-defun))\n\n(provide 'setup-skewer)\n","new_contents":"\n;; Bookmarklet to load skewer:\n;;\n;; javascript:(function(){var d=document ;var s=d.createElement('script');s.src='http:\/\/localhost:8023\/skewer';d.body.appendChild(s);})()\n;;\n\n(require 'skewer-mode)\n(require 'skewer-repl)\n(require 'skewer-html)\n(require 'skewer-css)\n\n(defun skewer-start ()\n (interactive)\n (let ((httpd-port 8023))\n (httpd-start)\n (message \"Ready to skewer the browser. Now jack in with the bookmarklet.\")))\n\n(defun skewer-demo ()\n (interactive)\n (let ((httpd-port 8024))\n (run-skewer)\n (skewer-repl)))\n\n(require 'mouse-slider-mode)\n\n(add-to-list 'mouse-slider-mode-eval-funcs\n '(js2-mode . skewer-eval-defun))\n\n(provide 'setup-skewer)\n","subject":"Add html and css support for skewer","message":"Add html and css support for skewer\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"90d0369b2cc581745054acbbaa8e6c7e4a129150","old_file":"layers\/my-compile\/keybindings.el","new_file":"layers\/my-compile\/keybindings.el","old_contents":";; -*- lexical-binding: t -*-\n\n(spacemacs\/safe-set-leader-keys\n \"je\" #'spacemacs\/goto-error-transient-state\/body\n \"jm\" #'display-compilation-buffer)\n","new_contents":";; -*- lexical-binding: t -*-\n\n(spacemacs\/safe-set-leader-keys\n \"cb\" #'display-compilation-buffer\n \"je\" #'spacemacs\/goto-error-transient-state\/body)\n","subject":"Change display-compilation-buffer key binding to 'SPC c b'","message":"Change display-compilation-buffer key binding to 'SPC c b'\n\nThe ideal binding 'SPC j c' is already taken. As second-best option, let's move\nthe binding closer to 'SPC c d' which closes the compilation window.\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"6524fb00f484af31a831a474064b96dcdc8ed513","old_file":"configs\/emacs.d\/pkgs\/pkg-ui.el","new_file":"configs\/emacs.d\/pkgs\/pkg-ui.el","old_contents":"(use-package gruvbox-theme\n :ensure t\n :defer t\n :init\n (load-theme 'gruvbox t)\n )\n\n(provide 'pkg-ui)\n","new_contents":"(use-package gruvbox-theme\n :ensure t\n :defer t\n :init\n (setq gruvbox-contrast 'medium)\n (load-theme 'gruvbox t)\n )\n\n(provide 'pkg-ui)\n","subject":"Set Gruvbox contrast to medium","message":"Set Gruvbox contrast to medium\n","lang":"Emacs Lisp","license":"mit","repos":"noraesae\/dotfiles,noraesae\/dotfiles,noraesae\/dotfiles"} {"commit":"66a29cc4e8b0524f36a2855a99a2806c17325504","old_file":"init-clojure.el","new_file":"init-clojure.el","old_contents":"(add-hook 'clojure-mode-hook 'pretty-lambdas)\n(add-hook 'clojure-mode-hook (lambda () (enable-paredit clojure-mode-map)))\n\n\n(setq clojure-src-root (expand-file-name \"~\/Projects\/External\"))\n\n(setq swank-clojure-jar-path (concat clojure-src-root \"\/clojure\/clojure.jar\")\n swank-clojure-extra-classpaths (list (concat clojure-src-root \"\/clojure-contrib\/clojure-contrib.jar\")))\n\n(require 'swank-clojure-autoload)\n(eval-after-load 'clojure-mode '(clojure-slime-config))\n\n\n(defun slime-clojure ()\n \"Fire up slime running the swank-clojure backend\"\n (interactive)\n (slime 'clojure))\n\n(provide 'init-clojure)\n","new_contents":"(add-hook 'clojure-mode-hook 'pretty-lambdas)\n(add-hook 'clojure-mode-hook (lambda () (enable-paredit clojure-mode-map)))\n\n\n(setq clojure-src-root (expand-file-name \"~\/Projects\/External\"))\n\n(setq swank-clojure-jar-path (concat clojure-src-root \"\/clojure\/clojure.jar\")\n swank-clojure-extra-classpaths (list (concat clojure-src-root \"\/clojure-contrib\/clojure-contrib.jar\")))\n\n(require 'swank-clojure-autoload)\n\n\n(defun slime-clojure ()\n \"Fire up slime running the swank-clojure backend\"\n (interactive)\n (slime 'clojure))\n\n(provide 'init-clojure)\n","subject":"Remove broken initialization call for swank clojure","message":"Remove broken initialization call for swank clojure\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"farzadbekran\/emacs.d,krzysz00\/emacs.d,jhpx\/emacs.d,danfengcao\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,jthetzel\/emacs.d,jachinpy\/emacs.d,arthurl\/emacs.d,renatoriccio\/emacs.d,shafayetkhan\/emacs.d,qinshulei\/emacs.d,gsmlg\/emacs.d,Werewolflsp\/emacs.d,caoyuanqi\/emacs.d,zuoshifan\/emacs.d,cyjia\/emacs.d,qianwan\/emacs.d,fengxl\/emacs.d,pairyo\/emacs.d,hophacker\/emacs.d,whizzzkid\/emacs.d,dhanunjaya\/emacs.d,exclamaforte\/emacs.d,Togal\/emacs.d,blueseason\/emacs.d,lromang\/emacs.d,LKI\/emacs.d,braveoyster\/emacs.d,ruiyang\/emacs.d,LittleLmp\/emacs.d,cjqw\/emacs.d,benkha\/emacs.d,jkaessens\/emacs.d,boblannon\/emacs.d,ilove0518\/emacs.d,46do14\/emacs.d,YangXin\/emacs.d,DarkThrone\/emacs.d,zenith-john\/emacs.d,sgarciac\/emacs.d,ruiyang\/emacs.d,roxolan\/emacs.d,ernest-dzf\/emacs.d,svenyurgensson\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,wegatron\/emacs.d,Guoozz\/emacs.d,mmqmzk\/emacs.d,purcell\/emacs.d,wenpincui\/emacs.d,emuio\/emacs.d,bibaijin\/emacs.d,haodaivshen\/emacs.d,alant\/emacs.d,kongfy\/emacs.d,lust4life\/emacs.d,zuoshifan\/emacs.d,zhuoyikang\/emacs.d,blueabysm\/emacs.d,farzadbekran\/emacs.d,mpwang\/emacs.d,YangXin\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,kindoblue\/emacs.d,farzadbekran\/emacs.d,dcorking\/emacs.d,scorpionis\/emacs.d,Enzo-Liu\/emacs.d,lujianmei\/emacs.d,hkcqr\/emacs.d,Jadecity\/PurcellEmacs.d,baohaojun\/emacs.d,dongdonghu\/.emacs.d,atreeyang\/emacs.d,carlosliu\/emacs.d,Shanicky\/emacs.d,modkzs\/emcs.d,zhaotai\/.emacs.d,jachinpy\/emacs.d,me020523\/emacs.d"} {"commit":"67ef1165d47ddeafbccb5d3c3579986c8f60d1be","old_file":".emacs.d\/lisp\/pjs\/pjs-reset.el","new_file":".emacs.d\/lisp\/pjs\/pjs-reset.el","old_contents":";;; pjs-reset.el --- Reset after changing configuration -*- lexical-binding: t; -*-\n;;\n;;; Commentary:\n;;\n;;; Code:\n(require 'pjs-system)\n(require 'pjs-exwm)\n\n(defun pjs-reset ()\n \"Recompile and reload all Emacs Lisp. If EXWM is configured, also reset that.\"\n (interactive)\n (byte-recompile-file (concat user-emacs-directory \"init.el\") nil 0)\n (when (file-exists-p pjs-system-file)\n (byte-recompile-file pjs-system-file nil 0))\n (byte-recompile-directory (concat user-emacs-directory \"elpa\") 0)\n (byte-recompile-directory (concat user-emacs-directory \"lisp\") 0)\n (load (concat user-emacs-directory \"init.el\"))\n (pjs-load-system-file)\n (when pjs-exwm-configured-p\n (pjs-configure-exwm)\n (exwm-reset)))\n\n(provide 'pjs-reset)\n;;; pjs-reset.el ends here\n","new_contents":";;; pjs-reset.el --- Reset after changing configuration -*- lexical-binding: t; -*-\n;;\n;;; Commentary:\n;;\n;;; Code:\n(require 'pjs-system)\n(require 'pjs-exwm)\n\n(defun pjs-reset ()\n \"Recompile and reload all Emacs Lisp. If EXWM is configured, also reset that.\"\n (interactive)\n (byte-recompile-file (concat user-emacs-directory \"init.el\") nil 0)\n (when (file-exists-p pjs-system-file)\n (byte-recompile-file pjs-system-file nil 0))\n (byte-recompile-directory (concat user-emacs-directory \"elpa\") 0)\n (byte-recompile-directory (concat user-emacs-directory \"lisp\") 0)\n (load (concat user-emacs-directory \"init\"))\n (pjs-load-system-file)\n (when pjs-exwm-configured-p\n (pjs-configure-exwm)\n (exwm-reset)))\n\n(provide 'pjs-reset)\n;;; pjs-reset.el ends here\n","subject":"Load compiled init file, not source","message":"Load compiled init file, not source\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"pjstadig\/dotfiles,pjstadig\/dotfiles"} {"commit":"1177067cef5fb4040b7fda2836d5e9449cc64fb9","old_file":"init-elpa.el","new_file":"init-elpa.el","old_contents":"(eval-after-load \"package\"\n '(progn\n (when (> emacs-major-version 23)\n (add-to-list 'package-archives '(\"tromey\" . \"http:\/\/tromey.com\/elpa\/\")))\n (add-to-list 'package-archives '(\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\"))\n))\n\n(defun require-package (package &optional min-version)\n \"Ask elpa to install given PACKAGE.\"\n (or (package-installed-p package min-version)\n (package-install package)))\n\n(require 'package)\n(package-initialize)\n(unless package-archive-contents\n (package-refresh-contents))\n\n(require-package 'fringe-helper)\n(require-package 'color-theme)\n(require-package 'json)\n(require-package 'erc)\n(require-package 'slime)\n(require-package 'slime-fuzzy)\n(require-package 'slime-repl)\n(require-package 'project-local-variables)\n(require-package 'highlight-symbol)\n(require-package 'lua-mode)\n(require-package 'gnuplot)\n(require-package 'haskell-mode)\n(require-package 'ruby-mode)\n\n(provide 'init-elpa)\n","new_contents":"(eval-after-load \"package\"\n '(progn\n (when (> emacs-major-version 23)\n (add-to-list 'package-archives '(\"tromey\" . \"http:\/\/tromey.com\/elpa\/\")))\n (add-to-list 'package-archives '(\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\"))\n))\n\n(defun require-package (package &optional min-version)\n \"Ask elpa to install given PACKAGE.\"\n (or (package-installed-p package min-version)\n (package-install package)))\n\n(require 'package)\n(package-initialize)\n(unless package-archive-contents\n (package-refresh-contents))\n\n(require-package 'all)\n(require-package 'color-theme)\n(require-package 'erc)\n(require-package 'fringe-helper)\n(require-package 'gnuplot)\n(require-package 'haskell-mode)\n(require-package 'highlight-symbol)\n(require-package 'json)\n(require-package 'lua-mode)\n(require-package 'project-local-variables)\n(require-package 'ruby-mode)\n(require-package 'slime)\n(require-package 'slime-fuzzy)\n(require-package 'slime-repl)\n\n(provide 'init-elpa)\n","subject":"Adjust list of required elpa packages","message":"Adjust list of required elpa packages\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zhaotai\/.emacs.d,alant\/emacs.d,purcell\/emacs.d,baohaojun\/emacs.d,farzadbekran\/emacs.d,Guoozz\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,atreeyang\/emacs.d,ilove0518\/emacs.d,benkha\/emacs.d,emuio\/emacs.d,zhuoyikang\/emacs.d,Werewolflsp\/emacs.d,Togal\/emacs.d,shafayetkhan\/emacs.d,farzadbekran\/emacs.d,mpwang\/emacs.d,DarkThrone\/emacs.d,mmqmzk\/emacs.d,roxolan\/emacs.d,ernest-dzf\/emacs.d,kindoblue\/emacs.d,zuoshifan\/emacs.d,YangXin\/emacs.d,hkcqr\/emacs.d,qianwan\/emacs.d,lromang\/emacs.d,farzadbekran\/emacs.d,LittleLmp\/emacs.d,krzysz00\/emacs.d,wenpincui\/emacs.d,dcorking\/emacs.d,wegatron\/emacs.d,zuoshifan\/emacs.d,exclamaforte\/emacs.d,Shanicky\/emacs.d,farzadbekran\/emacs.d,dongdonghu\/.emacs.d,ruiyang\/emacs.d,46do14\/emacs.d,renatoriccio\/emacs.d,dhanunjaya\/emacs.d,whizzzkid\/emacs.d,kongfy\/emacs.d,jthetzel\/emacs.d,cyjia\/emacs.d,sgarciac\/emacs.d,haodaivshen\/emacs.d,ruiyang\/emacs.d,jachinpy\/emacs.d,lujianmei\/emacs.d,hophacker\/emacs.d,pairyo\/emacs.d,modkzs\/emcs.d,blueseason\/emacs.d,jkaessens\/emacs.d,LKI\/emacs.d,fengxl\/emacs.d,gsmlg\/emacs.d,arthurl\/emacs.d,svenyurgensson\/emacs.d,zenith-john\/emacs.d,zuoshifan\/emacs.d,caoyuanqi\/emacs.d,danfengcao\/emacs.d,qinshulei\/emacs.d,Enzo-Liu\/emacs.d,scorpionis\/emacs.d,cjqw\/emacs.d,boblannon\/emacs.d,farzadbekran\/emacs.d,Jadecity\/PurcellEmacs.d,carlosliu\/emacs.d,zuoshifan\/emacs.d,YangXin\/emacs.d,blueabysm\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,me020523\/emacs.d,lust4life\/emacs.d,bibaijin\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,jhpx\/emacs.d,braveoyster\/emacs.d"} {"commit":"a2bfef3c4955f2a489d159b8c2b9cf4ecfc2789e","old_file":"custom\/33-ivy.el","new_file":"custom\/33-ivy.el","old_contents":"(use-package ivy\n :init\n (ivy-mode 1)\n (setq ivy-use-virtual-buffers t)\n :defer 5)\n\n(use-package counsel\n :defer 5\n :bind (\n (\"M-x\" . counsel-M-x)\n (\"C-x C-f\" . counsel-find-file)\n (\"s-f\" . counsel-git)\n (\"s-g\" . counsel-git-grep)\n (\"s-&\" . counsel-shell-command)\n (\"C-s-l\" . counsel-locate)\n )\n :config\n\n ;; Display a history when running commands\n (defun counsel-shell-command ()\n \"Forward to `shell-command'.\"\n (interactive)\n (ivy-read \"➣ \"\n shell-command-history\n :action (lambda (command)\n (interactive (list (read-shell-command \"$ \")))\n (start-process-shell-command command nil command))\n :caller 'counsel-shell-command))\n )\n\n(use-package swiper\n :defer 5\n :bind ((\"C-s\" . swiper)))\n\n","new_contents":"(use-package ivy\n :init\n (ido-mode 0)\n (ivy-mode 1)\n (setq ivy-use-virtual-buffers t)\n :defer 5)\n\n(use-package counsel\n :defer 5\n :bind (\n (\"M-x\" . counsel-M-x)\n (\"C-x C-f\" . counsel-find-file)\n (\"s-f\" . counsel-git)\n (\"s-g\" . counsel-git-grep)\n (\"s-&\" . counsel-shell-command)\n (\"C-s-l\" . counsel-locate)\n )\n :config\n\n ;; Display a history when running commands\n (defun counsel-shell-command ()\n \"Forward to `shell-command'.\"\n (interactive)\n (ivy-read \"➣ \"\n shell-command-history\n :action (lambda (command)\n (interactive (list (read-shell-command \"$ \")))\n (start-process-shell-command command nil command))\n :caller 'counsel-shell-command))\n )\n\n(use-package swiper\n :defer 5\n :bind ((\"C-s\" . swiper)))\n\n","subject":"Disable ido-mode as we now use ivy","message":"Disable ido-mode as we now use ivy\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"864e15f19de4e316de5799dd7fba18c30181493c","old_file":"modules\/lang\/haskell\/config.el","new_file":"modules\/lang\/haskell\/config.el","old_contents":";;; lang\/haskell\/config.el -*- lexical-binding: t; -*-\n\n(cond ((featurep! +intero) (load! \"+intero\"))\n ((featurep! +dante) (load! \"+dante\")))\n\n;;\n;; Common plugins\n;;\n\n(def-package! hindent\n :hook (haskell-mode . hindent-mode))\n\n(after! haskell-mode\n (add-hook 'haskell-mode-hook 'subword-mode)\n (add-hook 'haskell-mode-hook #'interactive-haskell-mode)\n (set-lookup-handlers! 'haskell-mode :definition #'haskell-mode-jump-to-def-or-tag)\n (set-file-template! 'haskell-mode :trigger #'haskell-auto-insert-module-template :project t)\n (set-repl-handler! '(haskell-mode haskell-cabal-mode literate-haskell-mode) #'+haskell-repl-buffer)\n\n (add-to-list 'completion-ignored-extensions \".hi\")\n\n (map! :map haskell-mode-map\n :localleader\n ;; this is set to use cabal for dante users and stack for intero users:\n :n \"b\" #'haskell-process-cabal-build\n :n \"c\" #'haskell-cabal-visit-file\n :n \"p\" #'hindent-reformat-buffer\n :v \"p\" #'hindent-reformat-region))\n\n","new_contents":";;; lang\/haskell\/config.el -*- lexical-binding: t; -*-\n\n(cond ((featurep! +intero) (load! \"+intero\"))\n ((featurep! +dante) (load! \"+dante\")))\n\n;;\n;; Common plugins\n;;\n\n(def-package! hindent\n :hook (haskell-mode . hindent-mode))\n\n(after! haskell-mode\n (add-hook 'haskell-mode-hook 'subword-mode) ;; improves text navigation with camelCase:\n (add-hook 'haskell-mode-hook 'haskell-collapse-mode) ;; support collapsing haskell code blocks.\n (add-hook 'haskell-mode-hook #'interactive-haskell-mode)\n (set-lookup-handlers! 'haskell-mode :definition #'haskell-mode-jump-to-def-or-tag)\n (set-file-template! 'haskell-mode :trigger #'haskell-auto-insert-module-template :project t)\n (set-repl-handler! '(haskell-mode haskell-cabal-mode literate-haskell-mode) #'+haskell-repl-buffer)\n\n (add-to-list 'completion-ignored-extensions \".hi\")\n\n (map! :map haskell-mode-map\n :localleader\n ;; this is set to use cabal for dante users and stack for intero users:\n :n \"b\" #'haskell-process-cabal-build\n :n \"c\" #'haskell-cabal-visit-file\n :n \"p\" #'hindent-reformat-buffer\n :v \"p\" #'hindent-reformat-region\n :n \"h\" #'haskell-hide-toggle\n :n \"H\" #'haskell-hide-toggle-all))\n\n","subject":"Add support for folding haskell code blocks","message":"Add support for folding haskell code blocks\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom"} {"commit":"b48cc563f9c048f9317c2f1830627ffc0631c080","old_file":"modes\/sh-script-conf.el","new_file":"modes\/sh-script-conf.el","old_contents":";;; sh-script-conf.el -- Settings for sh-mode.\n(eval-when-compile (require 'sh-script))\n(setq-default sh-basic-offset 2)\n","new_contents":";;; sh-script-conf.el -- Settings for sh-mode.\n(eval-when-compile (require 'sh-script))\n(setq-default sh-basic-offset 2)\n(setq sh-indentation 2)\n","subject":"Fix indentation for shell scripts in Emacs 24.4","message":"Fix indentation for shell scripts in Emacs 24.4\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"9636a42c2a87783961ddfc8b432ff1f4bad4ac90","old_file":"home\/.emacs.d\/.dir-locals.el","new_file":"home\/.emacs.d\/.dir-locals.el","old_contents":"((emacs-lisp-mode . (eval .\n (progn (setq-default flycheck-emacs-lisp-load-path 'inherit)))))\n","new_contents":"((emacs-lisp-mode . ((flycheck-emacs-lisp-load-path . inherit))))\n","subject":"Fix project local Flycheck setup","message":"Fix project local Flycheck setup\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"b505f1b973b7712084df850a3e40fddc0ea767fb","old_file":"emacs\/init.el","new_file":"emacs\/init.el","old_contents":";; Initialize package sources\n(require 'package)\n\n(setq package-archives '((\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\")\n (\"org\" . \"http:\/\/orgmode.org\/elpa\/\")\n (\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")))\n\n(unless package-archive-contents \n (package-refresh-contents))\n(package-initialize)\n\n;; Initialize use-package\n(unless (package-installed-p 'use-package)\n (package-install 'use-package))\n(require 'use-package)\n\n;; Ensure latest Org with contrib is installed first\n(use-package org :ensure org-plus-contrib)\n\n;; Load customization settings from another file\n(setq custom-file \"~\/.emacs.d\/config\/customize.el\")\n(load custom-file)\n\n;; Load real configuration from config.org\n(when (file-readable-p \"~\/.emacs.d\/config.org\")\n (org-babel-load-file (expand-file-name \"~\/.emacs.d\/config.org\")))\n\n","new_contents":";; Initialize package sources\n(require 'package)\n\n(setq package-archives '((\"melpa\" . \"https:\/\/melpa.org\/packages\/\")\n (\"melpa-stable\" . \"https:\/\/stable.melpa.org\/packages\/\")\n (\"org\" . \"https:\/\/orgmode.org\/elpa\/\")\n (\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")))\n\n(unless package-archive-contents\n (package-refresh-contents))\n(package-initialize)\n\n;; Initialize use-package\n(unless (package-installed-p 'use-package)\n (package-install 'use-package))\n(require 'use-package)\n\n;; Ensure latest Org with contrib is installed first\n(use-package org :ensure org-plus-contrib)\n\n;; Load customization settings from another file\n(setq custom-file \"~\/.emacs.d\/config\/customize.el\")\n(load custom-file)\n\n;; Load real configuration from config.org\n(when (file-readable-p \"~\/.emacs.d\/config.org\")\n (org-babel-load-file (expand-file-name \"~\/.emacs.d\/config.org\")))\n","subject":"Use https for package archives, add MELPA Stable","message":"Use https for package archives, add MELPA Stable\n","lang":"Emacs Lisp","license":"mit","repos":"daviwil\/dotfiles,daviwil\/dotfiles,daviwil\/dotfiles,daviwil\/dotfiles"} {"commit":"c9b97d0bc2d46b8912a0b655b55a3a4adc8b21ec","old_file":"init-flycheck.el","new_file":"init-flycheck.el","old_contents":"(when (eval-when-compile (>= emacs-major-version 24))\n (require-package 'flycheck)\n (add-hook 'after-init-hook 'global-flycheck-mode))\n\n(provide 'init-flycheck)\n","new_contents":"(when (eval-when-compile (>= emacs-major-version 24))\n (require-package 'flycheck)\n (add-hook 'after-init-hook 'global-flycheck-mode))\n\n;; Override default flycheck triggers\n(setq flycheck-check-syntax-automatically '(save idle-change mode-enabled)\n flycheck-idle-change-delay 0.8)\n(provide 'init-flycheck)\n","subject":"Make flycheck execution defaults less aggressive","message":"Make flycheck execution defaults less aggressive\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"wenpincui\/emacs.d,hkcqr\/emacs.d,lujianmei\/emacs.d,lromang\/emacs.d,farzadbekran\/emacs.d,alant\/emacs.d,bibaijin\/emacs.d,blueabysm\/emacs.d,ernest-dzf\/emacs.d,zenith-john\/emacs.d,me020523\/emacs.d,jachinpy\/emacs.d,ilove0518\/emacs.d,pairyo\/emacs.d,Enzo-Liu\/emacs.d,zhuoyikang\/emacs.d,dongdonghu\/.emacs.d,purcell\/emacs.d,LKI\/emacs.d,hophacker\/emacs.d,Jadecity\/PurcellEmacs.d,ruiyang\/emacs.d,emuio\/emacs.d,braveoyster\/emacs.d,jachinpy\/emacs.d,dcorking\/emacs.d,farzadbekran\/emacs.d,jthetzel\/emacs.d,mpwang\/emacs.d,atreeyang\/emacs.d,qinshulei\/emacs.d,kindoblue\/emacs.d,kongfy\/emacs.d,zhaotai\/.emacs.d,krzysz00\/emacs.d,LittleLmp\/emacs.d,dhanunjaya\/emacs.d,farzadbekran\/emacs.d,46do14\/emacs.d,fengxl\/emacs.d,DarkThrone\/emacs.d,jkaessens\/emacs.d,roxolan\/emacs.d,arthurl\/emacs.d,gsmlg\/emacs.d,farzadbekran\/emacs.d,scorpionis\/emacs.d,whizzzkid\/emacs.d,danfengcao\/emacs.d,mmqmzk\/emacs.d,benkha\/emacs.d,haodaivshen\/emacs.d,Werewolflsp\/emacs.d,lust4life\/emacs.d,exclamaforte\/emacs.d,renatoriccio\/emacs.d,modkzs\/emcs.d,svenyurgensson\/emacs.d,carlosliu\/emacs.d,wegatron\/emacs.d,baohaojun\/emacs.d,cyjia\/emacs.d,Togal\/emacs.d,ruiyang\/emacs.d,farzadbekran\/emacs.d,Guoozz\/emacs.d,sgarciac\/emacs.d,shafayetkhan\/emacs.d,cjqw\/emacs.d,qianwan\/emacs.d,caoyuanqi\/emacs.d,Shanicky\/emacs.d,boblannon\/emacs.d,jhpx\/emacs.d,blueseason\/emacs.d"} {"commit":"657fd42d9fe9f4a55f67b19016f6afe492062956","old_file":"lisp\/init-html.el","new_file":"lisp\/init-html.el","old_contents":"(require-package 'tidy)\n(add-hook 'html-mode-hook (lambda () (tidy-build-menu html-mode-map)))\n\n(require-package 'tagedit)\n(after-load 'sgml-mode\n (tagedit-add-paredit-like-keybindings)\n (add-hook 'sgml-mode-hook (lambda () (tagedit-mode 1))))\n\n(add-auto-mode 'html-mode \"\\\\.(jsp|tmpl)\\\\'\")\n\n;; Note: ERB is configured in init-ruby-mode\n\n(provide 'init-html)\n","new_contents":"(require-package 'tidy)\n(add-hook 'html-mode-hook (lambda () (tidy-build-menu html-mode-map)))\n\n(require-package 'tagedit)\n(after-load 'sgml-mode\n (tagedit-add-paredit-like-keybindings)\n (add-hook 'sgml-mode-hook (lambda () (tagedit-mode 1))))\n\n(add-auto-mode 'html-mode \"\\\\.\\\\(jsp\\\\|tmpl\\\\)\\\\'\")\n\n;; Note: ERB is configured in init-ruby-mode\n\n(provide 'init-html)\n","subject":"Fix regexp for jsp auto-mode-alist entry (thanks @liuchunhua)","message":"Fix regexp for jsp auto-mode-alist entry (thanks @liuchunhua)\n\nCloses #298\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"jachinpy\/emacs.d,zhuoyikang\/emacs.d,jhpx\/emacs.d,jkaessens\/emacs.d,atreeyang\/emacs.d,roxolan\/emacs.d,me020523\/emacs.d,qianwan\/emacs.d,cyjia\/emacs.d,ernest-dzf\/emacs.d,blueabysm\/emacs.d,fengxl\/emacs.d,Shanicky\/emacs.d,purcell\/emacs.d,baohaojun\/emacs.d,emuio\/emacs.d,Enzo-Liu\/emacs.d,LittleLmp\/emacs.d,shafayetkhan\/emacs.d,zhaotai\/.emacs.d,kindoblue\/emacs.d,lust4life\/emacs.d,Guoozz\/emacs.d,zenith-john\/emacs.d,jachinpy\/emacs.d,benkha\/emacs.d,cjqw\/emacs.d,blueseason\/emacs.d,arthurl\/emacs.d,braveoyster\/emacs.d,modkzs\/emcs.d,lujianmei\/emacs.d,kongfy\/emacs.d,46do14\/emacs.d,mmqmzk\/emacs.d,gsmlg\/emacs.d,renatoriccio\/emacs.d,svenyurgensson\/emacs.d,Werewolflsp\/emacs.d,dcorking\/emacs.d,wegatron\/emacs.d,sgarciac\/emacs.d,qinshulei\/emacs.d,lromang\/emacs.d,LKI\/emacs.d,danfengcao\/emacs.d,alant\/emacs.d,krzysz00\/emacs.d"} {"commit":"cb81a88f1d57f99bb7079ee00e11402d2b530607","old_file":"emp.el","new_file":"emp.el","old_contents":"(defun pipe (filename buffer-name)\n \"Open FILENAME and append its content to buffer BUFFER-NAME.\n\nIf a buffer with that name does not exist, it's created.\"\n (find-file filename)\n (append-to-buffer (get-buffer-create buffer-name) (point-min) (point-max))\n (kill-buffer)\n (switch-to-buffer buffer-name))\n","new_contents":"(defun pipe (filename buffer-name)\n \"Open FILENAME and insert its content to buffer BUFFER-NAME.\n\nIf the buffer BUFFER-NAME does not exist, it's created.\nIf narrowing is taking place in buffer BUFFER-NAME only the narrowed region is\nreplaced by the piped content.\"\n (find-file filename)\n (let ((stdin (get-buffer-create buffer-name))\n (tmp (current-buffer)))\n (switch-to-buffer stdin)\n (delete-region (point-min) (point-max))\n (switch-to-buffer tmp)\n (append-to-buffer stdin (point-min) (point-max))\n (kill-buffer)))\n","subject":"Support for replacing buffer contents and respect narrowing","message":"Support for replacing buffer contents and respect narrowing","lang":"Emacs Lisp","license":"mit","repos":"Emacs-Madrid\/emacs-terminal"} {"commit":"bd3398b86271d5acc590c7b73f22f477a834a898","old_file":"settings\/setup-magit.el","new_file":"settings\/setup-magit.el","old_contents":";; full screen magit-status\n\n(defun magit-status-fullscreen (prefix)\n (interactive \"P\")\n (magit-status)\n (unless prefix\n (delete-other-windows)))\n\n;; don't prompt me\n\n(set-default 'magit-unstage-all-confirm nil)\n(set-default 'magit-stage-all-confirm nil)\n(set-default 'magit-revert-buffers 'silent)\n\n;; full screen vc-annotate\n\n(defun vc-annotate-quit ()\n \"Restores the previous window configuration and kills the vc-annotate buffer\"\n (interactive)\n (kill-buffer)\n (jump-to-register :vc-annotate-fullscreen))\n\n(eval-after-load \"vc-annotate\"\n '(progn\n (defadvice vc-annotate (around fullscreen activate)\n (window-configuration-to-register :vc-annotate-fullscreen)\n ad-do-it\n (delete-other-windows))\n\n (define-key vc-annotate-mode-map (kbd \"q\") 'vc-annotate-quit)))\n\n(provide 'setup-magit)\n","new_contents":";; full screen magit-status\n\n(defun magit-status-fullscreen (prefix)\n (interactive \"P\")\n (magit-status)\n (unless prefix\n (delete-other-windows)))\n\n;; don't prompt me\n\n(set-default 'magit-unstage-all-confirm nil)\n(set-default 'magit-stage-all-confirm nil)\n(set-default 'magit-push-always-verify nil)\n(set-default 'magit-revert-buffers 'silent)\n\n;; full screen vc-annotate\n\n(defun vc-annotate-quit ()\n \"Restores the previous window configuration and kills the vc-annotate buffer\"\n (interactive)\n (kill-buffer)\n (jump-to-register :vc-annotate-fullscreen))\n\n(eval-after-load \"vc-annotate\"\n '(progn\n (defadvice vc-annotate (around fullscreen activate)\n (window-configuration-to-register :vc-annotate-fullscreen)\n ad-do-it\n (delete-other-windows))\n\n (define-key vc-annotate-mode-map (kbd \"q\") 'vc-annotate-quit)))\n\n(provide 'setup-magit)\n","subject":"Stop magit always verifing when pushing","message":"Stop magit always verifing when pushing\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"ef4cc9c245b9398bff7e6b6e6bcabed6ac77f3b9","old_file":"rc\/undo-redo.el","new_file":"rc\/undo-redo.el","old_contents":";; ==============================================================================\n;; Undo\/redo extensions\n;; ------------------------------------------------------------------------------\n\n;; (use-package \"redo+\"\n;; :load-path \"site-lisp\/redo+\")\n\n\n(use-package \"undo-tree\"\n :config\n (global-undo-tree-mode)\n (global-set-key (kbd \"s-z g\") 'global-undo-tree-mode)\n (global-set-key (kbd \"s-z t\") 'undo-tree-visualize)\n (define-key function-key-map (kbd \"s-z z\") 'undo)\n (define-key function-key-map (kbd \"s-z Z\") 'redo))\n\n\n(autoload 'longlines-mode \"longlines.el\"\n \"Minor mode for editing long lines.\" t)\n","new_contents":";; ==============================================================================\n;; Undo\/redo extensions\n;; ------------------------------------------------------------------------------\n\n;; (use-package \"redo+\"\n;; :load-path \"site-lisp\/redo+\")\n\n\n(use-package \"undo-tree\"\n :config\n (global-undo-tree-mode)\n ;; (global-set-key (kbd \"s-z g\") 'global-undo-tree-mode)\n ;; (global-set-key (kbd \"s-z t\") 'undo-tree-visualize)\n ;; (define-key function-key-map (kbd \"s-z z\") 'undo)\n ;; (define-key function-key-map (kbd \"s-z Z\") 'redo)\n )\n\n\n(autoload 'longlines-mode \"longlines.el\"\n \"Minor mode for editing long lines.\" t)\n","subject":"Disable custom undo-tree-mode key bindings as they do not work on Mac","message":"Disable custom undo-tree-mode key bindings as they do not work on Mac\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"peterhil\/emacs-config"} {"commit":"c922a85131e9a94abf9af0333ccdeee18c6a363d","old_file":".emacs.d\/config\/packages\/tern.el","new_file":".emacs.d\/config\/packages\/tern.el","old_contents":";;; tern.el --- Configuration for tern\n\n\n\n;;; Commentary:\n\n\n\n;;; Code:\n(use-package tern\n :ensure t\n :load-path \"~\/.emacs.d\/lib\/tern\/emacs\/\"\n :init\n (add-hook 'js2-mode-hook (lambda () (tern-mode t)))\n (autoload 'tern-mode \"tern.el\" nil t)\n :config\n (eval-after-load 'tern\n '(progn\n (use-package tern-auto-complete\n :ensure t\n :config\n (tern-ac-setup)))))\n\n\n\n;;; tern.el ends here\n","new_contents":";;; tern.el --- Configuration for tern\n\n\n\n;;; Commentary:\n\n\n\n;;; Code:\n(use-package tern\n :ensure t\n :load-path\n (\"~\/.emacs.d\/lib\/tern\/emacs\/\")\n :init\n (add-hook 'js2-mode-hook (lambda () (tern-mode t)))\n (autoload 'tern-mode \"tern.el\" nil t)\n :config\n (eval-after-load 'tern\n '(progn\n (use-package tern-auto-complete\n :ensure t\n :config\n (tern-ac-setup)))))\n\n\n\n;;; tern.el ends here\n","subject":"Make Tern's load-path a list","message":"Make Tern's load-path a list\n","lang":"Emacs Lisp","license":"mit","repos":"madintist\/emacs-config"} {"commit":"db39b44352b2e593a430ab30c372659ae3c760f4","old_file":"Packages\/settings\/setup-magit.el","new_file":"Packages\/settings\/setup-magit.el","old_contents":"(define-key osx-key-mode-map [(alt m)] nil)\n(use-package magit\n :ensure t\n :demand\n :init\n (setq magit-auto-revert-mode nil)\n :config\n (defhydra hydra-magit (:color teal :hint nil)\n\"\n Magit\n\n Status Changes Rebase Cherry Pick Merge\n--------------------------------------------------------------------------------------\n_s_: status _c_: commit _r_: rebase _p_: cherry pick _m_: merge\n_d_: diff _C_: amend _A-r_: continue _A-p_: continue\n_l_: log _h_: reset \n_f_: reflog _H_: reset hard\n\n\"\n (\"s\" magit-status)\n (\"d\" magit-diff)\n (\"l\" magit-log-current)\n (\"f\" magit-reflog)\n (\"c\" magit-commit)\n (\"C\" magit-commit-amend)\n (\"h\" magit-reset-head)\n (\"H\" magit-reset-hard)\n (\"r\" magit-rebase-interactive)\n (\"A-r\" magit-rebase-continue)\n (\"p\" magit-cherry-pick)\n (\"A-p\" magit-sequencer-continue)\n (\"m\" magit-merge)\n (\"q\" nil \"cancel\" :color blue)\n (\"RET\" magit-visit-thing)\n )\n (global-set-key (kbd \"A-m\") 'hydra-magit\/body)\n )\n\n(provide 'setup-magit)\n","new_contents":"(define-key osx-key-mode-map [(alt m)] nil)\n(use-package magit\n :ensure t\n :demand\n :init\n (setq magit-auto-revert-mode nil)\n :config\n (defhydra hydra-magit (:color teal :hint nil)\n\"\n Magit\n\n Status Changes Rebase Cherry Pick Merge\n--------------------------------------------------------------------------------------\n_s_: status _c_: commit _r_: rebase _p_: cherry pick _m_: merge\n_d_: diff _h_: reset _A-r_: continue _A-p_: continue\n_l_: log _H_: reset hard \n_f_: reflog \n\n\"\n (\"s\" magit-status)\n (\"d\" magit-diff)\n (\"l\" magit-log-current)\n (\"f\" magit-reflog)\n (\"c\" magit-commit)\n (\"h\" magit-reset-head)\n (\"H\" magit-reset-hard)\n (\"r\" magit-rebase)\n (\"A-r\" magit-rebase-continue)\n (\"p\" magit-cherry-pick)\n (\"A-p\" magit-sequencer-continue)\n (\"m\" magit-merge)\n (\"q\" nil \"cancel\" :color blue)\n (\"RET\" magit-visit-thing)\n )\n (global-set-key (kbd \"A-m\") 'hydra-magit\/body)\n )\n\n(provide 'setup-magit)\n","subject":"Update magit commit\/rebase hydra bindings","message":"Update magit commit\/rebase hydra bindings\n","lang":"Emacs Lisp","license":"mit","repos":"hsienchiaolee\/aquamacs"} {"commit":"b0725e4f49bf54651b0dcfae5c4b9aa19bdd7e3d","old_file":"lisp\/init-fonts.el","new_file":"lisp\/init-fonts.el","old_contents":";;; Character sets\n\n(defcustom sanityinc\/force-default-font-for-symbols nil\n \"When non-nil, force Emacs to use your default font for symbols.\"\n :type 'boolean)\n\n(defun sanityinc\/maybe-use-default-font-for-symbols ()\n \"Force Emacs to render symbols using the default font, if so configured.\"\n (when sanityinc\/force-default-font-for-symbols\n (set-fontset-font \"fontset-default\" 'symbol (face-attribute 'default :family))))\n\n(add-hook 'after-init-hook 'sanityinc\/maybe-use-default-font-for-symbols)\n\n;; set a default font\n;; Download font from here: https:\/\/github.com\/powerline\/fonts\n(when (member \"Inconsolata-dz\" (font-family-list))\n (set-face-attribute 'default nil :font \"Inconsolata-dz\"))\n\f\n;;; Changing font sizes\n\n(require-package 'default-text-scale)\n(global-set-key (kbd \"C-M-=\") 'default-text-scale-increase)\n(global-set-key (kbd \"C-M--\") 'default-text-scale-decrease)\n\n\n\n(provide 'init-fonts)\n","new_contents":";;; Character sets\n\n(defcustom sanityinc\/force-default-font-for-symbols nil\n \"When non-nil, force Emacs to use your default font for symbols.\"\n :type 'boolean)\n\n(defun sanityinc\/maybe-use-default-font-for-symbols ()\n \"Force Emacs to render symbols using the default font, if so configured.\"\n (when sanityinc\/force-default-font-for-symbols\n (set-fontset-font \"fontset-default\" 'symbol (face-attribute 'default :family))))\n\n(add-hook 'after-init-hook 'sanityinc\/maybe-use-default-font-for-symbols)\n\n;; set a default font\n;; Download font from here: https:\/\/github.com\/google\/fonts\n(when (member \"Source Code Pro\" (font-family-list))\n (setq my-font \"Source Code Pro-12\")\n (set-face-attribute 'default nil :font my-font))\n\f\n;;; Changing font sizes\n\n(require-package 'default-text-scale)\n(global-set-key (kbd \"C-M-=\") 'default-text-scale-increase)\n(global-set-key (kbd \"C-M--\") 'default-text-scale-decrease)\n\n\n\n(provide 'init-fonts)\n","subject":"Change font to Source Code Pro","message":"Change font to Source Code Pro\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"shafayetkhan\/emacs.d"} {"commit":"70c51521a23d222305af2a59d25c0b42ef0fe1d4","old_file":"lisp\/init-local.el","new_file":"lisp\/init-local.el","old_contents":"(require-package 'j-mode)\n(require-package 'android-mode)\n(require-package 'fuel)\n(require-package 'idris-mode)\n\n(require-package 'auctex)\n(require-package 'reftex)\n(require-package 'auto-complete-auctex)\n(require 'auto-complete-auctex)\n\n(setq slime-path (file-name-directory (locate-library \"slime\")))\n(setq slime-backend (expand-file-name \"swank-loader.lisp\" slime-path))\n(setq slime-lisp-implementations\n '((sbcl (\"sbcl\" \"--core\" \"\/home\/krzys\/prog-local\/sbcl.core-for-slime\")) (clisp (\"\/usr\/bin\/clisp\"))))\n\n(ac-flyspell-workaround)\n(define-key ac-mode-map (kbd \"M-TAB\") 'auto-complete)\n(add-hook 'text-mode-hook 'flyspell-mode)\n\n(provide 'init-local)\n","new_contents":"(require-package 'j-mode)\n(require-package 'android-mode)\n(require-package 'fuel)\n(require-package 'idris-mode)\n\n(require-package 'auctex)\n(require-package 'reftex)\n\n(setq slime-path (file-name-directory (locate-library \"slime\")))\n(setq slime-backend (expand-file-name \"swank-loader.lisp\" slime-path))\n(setq slime-lisp-implementations\n '((sbcl (\"sbcl\" \"--core\" \"\/home\/krzys\/prog-local\/sbcl.core-for-slime\")) (clisp (\"\/usr\/bin\/clisp\"))))\n\n(ac-flyspell-workaround)\n(define-key ac-mode-map (kbd \"M-TAB\") 'auto-complete)\n(add-hook 'text-mode-hook 'flyspell-mode)\n\n(provide 'init-local)\n","subject":"Remove Auctex autocomplete. Didn't work anyway","message":"Remove Auctex autocomplete. Didn't work anyway\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"krzysz00\/emacs.d"} {"commit":"af32b48cdcff2f7a94ea2777f86e265d47429f6f","old_file":"layers\/mfa-treemacs\/packages.el","new_file":"layers\/mfa-treemacs\/packages.el","old_contents":"(defconst mfa-treemacs-packages '(treemacs treemacs-evil))\n\n(defun mfa-treemacs\/init-treemacs ()\n (use-package treemacs\n :defer t\n :init\n (progn\n (setq treemacs-header-function #'treemacs--create-header-projectile)\n (spacemacs\/set-leader-keys\n \"fT\" #'treemacs\n \"ft\" #'treemacs-toggle\n \"pt\" #'treemacs-projectile))\n :config\n (require 'treemacs-evil)))\n\n(defun mfa-treemacs\/init-treemacs-evil ()\n (use-package treemacs-evil\n :defer t))\n","new_contents":"(defconst mfa-treemacs-packages '(treemacs treemacs-evil))\n\n(defun mfa-treemacs\/init-treemacs ()\n (use-package treemacs\n :defer t\n :init\n (spacemacs\/set-leader-keys\n \"fT\" #'treemacs\n \"ft\" #'treemacs-toggle\n \"pt\" #'treemacs-projectile)\n :config\n (require 'treemacs-evil)))\n\n(defun mfa-treemacs\/init-treemacs-evil ()\n (use-package treemacs-evil\n :defer t))\n","subject":"Reset treemacs header back to default","message":"Reset treemacs header back to default\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"10aa81809479f815c7040734e2c06771866f8503","old_file":"init-package\/init-evil-leader.el","new_file":"init-package\/init-evil-leader.el","old_contents":"(setq evil-leader\/in-all-states t\n evil-leader\/leader \"SPC\"\n evil-leader\/non-normal-prefix \"s-\")\n(require 'evil-leader)\n;; Unset shortcuts which shadow evil leader\n(eval-after-load \"compile\"\n (define-key compilation-mode-map (kbd \"SPC\") nil))\n;; make leader available in visual mode\n(define-key evil-visual-state-map (kbd \"SPC\") evil-leader\/map)\n(define-key evil-motion-state-map (kbd \"SPC\") evil-leader\/map)\n(define-key evil-emacs-state-map (kbd \"SPC\") evil-leader\/map)\n","new_contents":"(setq evil-leader\/in-all-states t\n evil-leader\/leader \"SPC\"\n evil-leader\/non-normal-prefix \"s-\")\n(require 'evil-leader)\n;; Unset shortcuts which shadow evil leader\n(eval-after-load \"compile\"\n (define-key compilation-mode-map (kbd \"SPC\") nil))\n;; make leader available in visual mode\n(define-key evil-visual-state-map (kbd \"SPC\") evil-leader--default-map)\n(define-key evil-motion-state-map (kbd \"SPC\") evil-leader--default-map)\n(define-key evil-emacs-state-map (kbd \"SPC\") evil-leader--default-map)\n","subject":"Update code to match recent breaking changes in evil-leader.","message":"Update code to match recent breaking changes in evil-leader.\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"fd1da47d13eb171687709148d0022b3cb60c643d","old_file":".emacs.d\/custom.el","new_file":".emacs.d\/custom.el","old_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(xterm-extra-capabilities (quote modifyOtherKeys)))\n","new_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(package-selected-packages\n (quote\n (go-mode magit yari yaml-mode volatile-highlights smooth-scrolling smex smartparens scss-mode sass-mode rainbow-mode projectile paredit monroe mic-paren markdown-mode inf-ruby haskell-mode gnu-apl-mode git-gutter expand-region evil elscreen color-theme-railscasts cider auto-complete anything)))\n '(xterm-extra-capabilities (quote modifyOtherKeys)))\n","subject":"Add Emacs `Custom` selected packages","message":"Add Emacs `Custom` selected packages\n\nThis subsumes a lot of what `.emacs.d\/lisp\/early-packages.el` was trying\nto do. I'm not sure I like using `Custom` for this, but it captures the\ncurrent state of my main laptop, so pushing it in order to share config.\n","lang":"Emacs Lisp","license":"mit","repos":"benizi\/dotfiles,benizi\/dotfiles,benizi\/dotfiles,benizi\/dotfiles,benizi\/dotfiles,benizi\/dotfiles,benizi\/dotfiles,benizi\/dotfiles"} {"commit":"33e8e3fb2ea2c84afc885cacc7ba12a8716b0097","old_file":"dot.emacs","new_file":"dot.emacs","old_contents":";; -*- coding: utf-8; mode: emacs-lisp -*-\n;; Emacs customization file by Peter Hillerström\n;; ____________________________________________________________________________\n;; Aquamacs custom-file warning:\n;; Warning: After loading this .emacs file, Aquamacs will also load\n;; customizations from `custom-file' (customizations.el). Any settings there\n;; will override those made here.\n;; Consider moving your startup settings to the Preferences.el file, which\n;; is loaded after `custom-file':\n;; ~\/Library\/Preferences\/Aquamacs Emacs\/Preferences\n;; _____________________________________________________________________________\n\n\n;; ==============================================================================\n;; Generic config\n;; ------------------------------------------------------------------------------\n\n(setq usr-prefix\n (cond ((eq system-type 'darwin) \"\/usr\/local\")\n ((eq system-type 'linux) \"\/usr\")\n (t \"\/usr\")))\n\n(setq rc-dir (concat user-emacs-directory \"rc\/\"))\n\n(setq custom-file (concat rc-dir \"custom.el\"))\n(load custom-file 'no-error)\n\n;; Basic Common Lisp in Emacs Lisp\n(eval-when-compile (require 'cl-lib))\n\n(defun configure (path)\n (load-file (concat rc-dir path \".el\")))\n\n\n(configure \"init\")\n(configure \"packages\")\n(add-hook 'after-init-hook\n #'(lambda ()\n (load (concat rc-dir \"modules.el\"))))\n","new_contents":";; -*- coding: utf-8; mode: emacs-lisp -*-\n;; Emacs customization file by Peter Hillerström\n;; ____________________________________________________________________________\n;; Aquamacs custom-file warning:\n;; Warning: After loading this .emacs file, Aquamacs will also load\n;; customizations from `custom-file' (customizations.el). Any settings there\n;; will override those made here.\n;; Consider moving your startup settings to the Preferences.el file, which\n;; is loaded after `custom-file':\n;; ~\/Library\/Preferences\/Aquamacs Emacs\/Preferences\n;; _____________________________________________________________________________\n\n\n;; ==============================================================================\n;; Generic config\n;; ------------------------------------------------------------------------------\n\n(setq usr-prefix\n (cond ((eq system-type 'darwin) \"\/usr\/local\")\n ((eq system-type 'linux) \"\/usr\")\n (t \"\/usr\")))\n\n(setq rc-dir (concat user-emacs-directory \"rc\/\"))\n\n(setq custom-file (concat rc-dir \"custom.el\"))\n(load custom-file 'no-error)\n\n(defun configure (path)\n (load-file (concat rc-dir path \".el\")))\n\n\n(configure \"init\")\n(configure \"packages\")\n(add-hook 'after-init-hook\n #'(lambda ()\n (load (concat rc-dir \"modules.el\"))))\n","subject":"Remove unneeded require of cl-lib inside eval-when-compile","message":"Remove unneeded require of cl-lib inside eval-when-compile\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"peterhil\/emacs-config"} {"commit":"96ba4b0b38f31ed9fdc40e7bcde93aacf9d50c8d","old_file":"modules\/editor\/parinfer\/doctor.el","new_file":"modules\/editor\/parinfer\/doctor.el","old_contents":";;; editor\/parinfer\/doctor.el -*- lexical-binding: t; -*-\n\n(when (featurep! +rust)\n (unless (fboundp 'module-load)\n (warn! \"Your emacs wasn't built with dynamic modules support. `parinfer-rust-mode' won't work\"))\n (when (and (eq system-type 'berkeley-unix)\n (not (file-readable-p\n (concat user-emacs-directory \".local\/etc\/parinfer-rust\/libparinfer_rust.so\"))))\n (warn! (concat \"Could not read \" user-emacs-directory\n \".local\/etc\/parinfer-rust\/libparinfer_rust.so. \"\n \"`parinfer-rust-mode' won't work\"))))\n","new_contents":";;; editor\/parinfer\/doctor.el -*- lexical-binding: t; -*-\n\n(when (featurep! +rust)\n (unless (fboundp 'module-load)\n (warn! \"Your emacs wasn't built with dynamic modules support. `parinfer-rust-mode' won't work\"))\n (when (and (eq system-type 'berkeley-unix)\n (not (file-readable-p (concat user-emacs-directory\n \".local\/etc\/parinfer-rust\/libparinfer_rust.so\"))))\n (warn! (concat \"Could not read \" user-emacs-directory\n \".local\/etc\/parinfer-rust\/libparinfer_rust.so. \"\n \"`parinfer-rust-mode' won't work\"))))\n","subject":"Use easier to read line break.","message":"Use easier to read line break.\n\nSigned-off-by: Johan Thoren <759412786bc533369b22377bf83fb9056c5b25b2@thoren.xyz>\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs"} {"commit":"bc53a62f55d56033f961779da30547b305f9ec1f","old_file":".emacs.d\/config\/packages\/js-doc.el","new_file":".emacs.d\/config\/packages\/js-doc.el","old_contents":";;; js-doc.el --- Configuration for js-doc\n\n\n\n;;; Commentary:\n;; Load js-doc\n;; - Hook into js2-mode\n\n\n\n;;; Code:\n(use-package js-doc\n :ensure t\n :init\n (add-hook 'js2-mode-hook\n #'(lambda ()\n (define-key js2-mode-map \"\\C-ci\" 'js-doc-insert-function-doc)\n (define-key js2-mode-map \"\\C-cf\" 'js-doc-insert-file-doc)\n (define-key js2-mode-map \"@\" 'js-doc-insert-tag))))\n\n\n\n;;; js-doc.el ends here\n","new_contents":";;; js-doc.el --- Configuration for js-doc\n\n\n\n;;; Commentary:\n;; Load js-doc\n;; - Hook into js2-mode\n\n\n\n;;; Code:\n(use-package js-doc\n :ensure t\n :init\n (add-hook 'js2-mode-hook\n #'(lambda ()\n (define-key js2-mode-map \"\\C-ci\" 'js-doc-insert-function-doc)\n (define-key js2-mode-map \"\\C-cf\" 'js-doc-insert-file-doc))))\n\n\n\n;;; js-doc.el ends here\n","subject":"Remove binding for '@' symbol in jsdoc comments","message":"Remove binding for '@' symbol in jsdoc comments\n","lang":"Emacs Lisp","license":"mit","repos":"madintist\/emacs-config"} {"commit":"dda1ff6bbf44506f6276a17fe89dbe7369330226","old_file":"dot_doom.d\/init.el","new_file":"dot_doom.d\/init.el","old_contents":"(doom! :completion\n (company\n +auto +tng)\n (ivy +fuzzy)\n\n :ui\n deft\n doom\n doom-quit\n fill-column\n hl-todo\n modeline\n nav-flash\n ophints\n (popup\n +all\n +defaults)\n vc-gutter\n vi-tilde-fringe\n window-select\n workspaces\n\n :editor\n (evil +everywhere)\n file-templates\n (format +onsave)\n rotate-text\n snippets\n\n :emacs\n (undo +tree)\n dired\n electric\n ibuffer\n vc\n\n :term\n eshell\n\n :checkers\n spell\n grammar\n\n :tools\n debugger\n (docker +lsp)\n editorconfig\n (eval +overlay)\n (lookup\n +docsets)\n (lsp +eglot)\n (magit +forge)\n make\n terraform\n biblio\n\n :lang\n (cc +lsp)\n (yaml +lsp)\n data\n emacs-lisp\n (go +lsp)\n latex\n markdown\n (org\n +roam\n +hugo\n +journal\n +gnuplot\n +pancoc\n +dragndrop\n +journal)\n plantuml\n (python +pyenv)\n rest\n rust\n (sh +lsp)\n\n :email\n (mu4e +gmail)\n\n :app\n (rss +org)\n\n :config\n (default +bindings +smartparens))\n","new_contents":"(doom! :completion\n (company\n +auto +tng)\n (ivy +fuzzy)\n\n :ui\n deft\n doom\n doom-quit\n fill-column\n hl-todo\n modeline\n nav-flash\n ophints\n (popup\n +all\n +defaults)\n vc-gutter\n vi-tilde-fringe\n window-select\n workspaces\n\n :editor\n (evil +everywhere)\n file-templates\n (format +onsave)\n rotate-text\n snippets\n\n :emacs\n (undo +tree)\n dired\n electric\n ibuffer\n vc\n\n :term\n eshell\n\n :checkers\n spell\n grammar\n\n :tools\n debugger\n (docker +lsp)\n editorconfig\n (eval +overlay)\n (lookup\n +docsets)\n (lsp +eglot)\n (magit +forge)\n make\n terraform\n biblio\n\n :lang\n (cc +lsp)\n (yaml +lsp)\n data\n emacs-lisp\n (go +lsp)\n latex\n markdown\n (org\n +roam\n +hugo\n +journal\n +gnuplot\n +pancoc\n +dragndrop\n +journal)\n plantuml\n (python +pyenv)\n rest\n (rust +eglot)\n (sh +lsp)\n\n :email\n (mu4e +gmail)\n\n :app\n (rss +org)\n\n :config\n (default +bindings +smartparens))\n","subject":"Enable eglot for Rust mode","message":"Emacs: Enable eglot for Rust mode\n","lang":"Emacs Lisp","license":"mit","repos":"benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles"} {"commit":"b40c2bb1240d1debce3451c632931b5d5d8b33e5","old_file":"lisp\/.dir-locals.el","new_file":"lisp\/.dir-locals.el","old_contents":"((emacs-lisp-mode . ((no-byte-compile t))))\n","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((emacs-lisp-mode\n (no-byte-compile . t)))\n","subject":"Make Directory Local Variables conform to standard specifications","message":"Make Directory Local Variables conform to standard specifications\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"roxolan\/emacs.d,purcell\/emacs.d,qianwan\/emacs.d,cjqw\/emacs.d,kindoblue\/emacs.d,kongfy\/emacs.d,gsmlg\/emacs.d,dcorking\/emacs.d,wegatron\/emacs.d,sgarciac\/emacs.d,krzysz00\/emacs.d,mmqmzk\/emacs.d,blueseason\/emacs.d,me020523\/emacs.d,baohaojun\/emacs.d,braveoyster\/emacs.d,svenyurgensson\/emacs.d,blueabysm\/emacs.d,lust4life\/emacs.d,emuio\/emacs.d,benkha\/emacs.d,arthurl\/emacs.d"} {"commit":"88ba4b3e64629e79d1e271c9ba2de3333015610e","old_file":"layers\/my-pass\/packages.el","new_file":"layers\/my-pass\/packages.el","old_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-pass-packages '(auth-source-pass password-store))\n\n(defun my-pass\/init-auth-source-pass ()\n (use-package auth-source-pass\n :after (auth-source)\n :config (auth-source-pass-enable)))\n\n(defun my-pass\/post-init-password-store ()\n (advice-add 'password-store--save-field-in-kill-ring :around\n #'my-pass\/\/no-copy-to-clipboard))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-pass-packages '(password-store))\n\n(defun my-pass\/post-init-password-store ()\n (advice-add 'password-store--save-field-in-kill-ring :around\n #'my-pass\/\/no-copy-to-clipboard))\n","subject":"Remove redundant configuration of auth-source-pass","message":"Remove redundant configuration of auth-source-pass\n\nSpacemacs implements this now, we don't need to do it ourselves any more.\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"8d460b6c71762f9a147f7b2f3656e342e319502a","old_file":"lisp\/init-elm.el","new_file":"lisp\/init-elm.el","old_contents":";;; init-elm.el --- Support for the Elm language -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(when (maybe-require-package 'elm-mode)\n (after-load 'elm-mode\n (diminish 'elm-indent-mode)\n (after-load 'company\n (push 'company-elm company-backends))\n (when (executable-find \"elm-format\")\n (setq-default elm-format-on-save t)))\n (maybe-require-package 'elm-test-runner)\n (when (maybe-require-package 'flycheck-elm)\n (after-load 'elm-mode\n (flycheck-elm-setup))))\n\n(provide 'init-elm)\n;;; init-elm.el ends here\n","new_contents":";;; init-elm.el --- Support for the Elm language -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(when (maybe-require-package 'elm-mode)\n (after-load 'elm-mode\n (diminish 'elm-indent-mode)\n (after-load 'company\n (push 'company-elm company-backends))\n (when (executable-find \"elm-format\")\n (setq-default elm-format-on-save t)))\n (maybe-require-package 'elm-test-runner)\n (when (maybe-require-package 'flycheck-elm)\n (after-load 'elm-mode\n (flycheck-elm-setup)))\n (when (maybe-require-package 'add-node-modules-path)\n (add-hook 'elm-mode-hook 'add-node-modules-path)))\n\n(provide 'init-elm)\n;;; init-elm.el ends here\n","subject":"Use add-node-modules-path in Elm, for tooling installed with npm","message":"Use add-node-modules-path in Elm, for tooling installed with npm\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d,braveoyster\/emacs.d,purcell\/emacs.d,arthurl\/emacs.d,qianwan\/emacs.d,lust4life\/emacs.d,emuio\/emacs.d,krzysz00\/emacs.d,baohaojun\/emacs.d,gsmlg\/emacs.d,dcorking\/emacs.d,svenyurgensson\/emacs.d,blueabysm\/emacs.d,sgarciac\/emacs.d"} {"commit":"6589ee2c0e02bdfe8740fbbe5391cbeb113f8976","old_file":"settings\/lk\/ruby.el","new_file":"settings\/lk\/ruby.el","old_contents":";;; lk\/ruby --- ruby related customizations\n;;;; Commentary:\n;;; Code:\n(add-to-list 'auto-mode-alist '(\"\\\\.rb$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.rake$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Vagrantfile\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Gemfile\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Rakefile\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Guardfile\" . ruby-mode))\n\n\n(custom-set-variables\n '(inf-ruby-default-implementation \"foreman\")\n '(inf-ruby-implementations\n (quote\n ((\"ruby\" . \"irb --prompt default --noreadline -r irb\/completion\")\n (\"foreman\" . \"bundle exec foreman run rails c\")\n (\"pry\" . \"pry\")))))\n\n(add-hook 'ruby-mode-hook #'linum-mode)\n(add-hook 'ruby-mode-hook #'inf-ruby-minor-mode)\n\n(setq-default ruby-indent-level 2)\n\n(provide 'lk\/ruby)\n;;; ruby.el ends here\n","new_contents":";;; lk\/ruby --- ruby related customizations\n;;;; Commentary:\n;;; Code:\n(add-to-list 'auto-mode-alist '(\"\\\\.rb$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.rake$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Vagrantfile\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Gemfile\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Rakefile\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Guardfile\" . ruby-mode))\n\n\n(add-hook 'ruby-mode-hook (lambda ()\n (linum-mode)\n (in-ruby-minor-mode)\n (local-set-key (kbd \"C-c r\")\n 'rubocop-autocorrect-current-file)))\n\n(setq-default ruby-indent-level 2)\n\n(provide 'lk\/ruby)\n;;; ruby.el ends here\n","subject":"Add a shortcut for rubocop's autocorrect","message":"Add a shortcut for rubocop's autocorrect\n","lang":"Emacs Lisp","license":"mit","repos":"lukaszkorecki\/cult-leader"} {"commit":"583da7615076f452a24009033b3e3a5825567d70","old_file":"modes\/project-conf.el","new_file":"modes\/project-conf.el","old_contents":";;; project-conf.el -- Settings for `project' -*- lexical-binding: t -*-\n;;\n;;; Commentary:\n;;\n;;; Code:\n\n(require 'project)\n(require 'projectile)\n\n;; Port this function to project.el:\n(declare-function pjones:projectile-compile-project \".\/projectile-conf\")\n\n(defun pjones:project-shell-command nil\n \"Run a shell command in the project's root directory.\"\n (interactive)\n (let ((default-directory (project-root (project-current t))))\n (call-interactively #'shell-command)))\n\n(defun pjones:project-async-shell-command nil\n \"Run an asynchronous shell command in the project's root directory.\"\n (interactive)\n (let ((default-directory (project-root (project-current t))))\n (call-interactively #'async-shell-command)))\n\n(let ((map project-prefix-map))\n (define-key map (kbd \"!\") #'pjones:project-shell-command)\n (define-key map (kbd \"1\") #'pjones:project-shell-command)\n (define-key map (kbd \"&\") #'pjones:project-async-shell-command)\n (define-key map (kbd \"7\") #'pjones:project-async-shell-command)\n (define-key map (kbd \"c\") #'pjones:projectile-compile-project)\n (define-key map (kbd \"f\") #'projectile-find-file)\n (define-key map (kbd \"t\") #'projectile-test-project))\n\n;;; project-conf.el ends here\n","new_contents":";;; project-conf.el -- Settings for `project' -*- lexical-binding: t -*-\n;;\n;;; Commentary:\n;;\n;;; Code:\n\n(require 'project)\n(require 'projectile)\n\n;; Port this function to project.el:\n(declare-function pjones:projectile-compile-project \".\/projectile-conf\")\n\n(let ((map project-prefix-map))\n (define-key map (kbd \"c\") #'pjones:projectile-compile-project)\n (define-key map (kbd \"d\") #'project-dired)\n (define-key map (kbd \"D\") #'project-find-dir)\n (define-key map (kbd \"f\") #'projectile-find-file)\n (define-key map (kbd \"r\") #'projectile-run-project)\n (define-key map (kbd \"s\") #'projectile-run-vterm)\n (define-key map (kbd \"t\") #'projectile-test-project))\n\n;;; project-conf.el ends here\n","subject":"Update bindings, remove workaround code that exists upstream","message":"project: Update bindings, remove workaround code that exists upstream\n\nUpstream project.el now includes the functions I had written, so they\ncan be removed. However, upstream changed the `C-x p d` binding so\nI'm changing it back.\n\nAlso added bindings to start a terminal, and to run the project.\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"f4471034d200da69d2befd9789feac8bd382b157","old_file":"lisp\/init-python.el","new_file":"lisp\/init-python.el","old_contents":";;; init-python.el --- Python editing -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n\n;; See the following note about how I set up python + virtualenv to\n;; work seamlessly with Emacs:\n;; https:\/\/gist.github.com\/purcell\/81f76c50a42eee710dcfc9a14bfc7240\n\n\n(setq auto-mode-alist\n (append '((\"SConstruct\\\\'\" . python-mode)\n (\"SConscript\\\\'\" . python-mode))\n auto-mode-alist))\n\n(setq python-shell-interpreter \"python3\")\n\n(require-package 'pip-requirements)\n\n(when (maybe-require-package 'anaconda-mode)\n (after-load 'python\n ;; Anaconda doesn't work on remote servers without some work, so\n ;; by default we enable it only when working locally.\n (add-hook 'python-mode-hook\n (lambda () (unless (file-remote-p default-directory)\n (anaconda-mode 1))))\n (add-hook 'anaconda-mode-hook 'anaconda-eldoc-mode))\n (after-load 'anaconda-mode\n (define-key anaconda-mode-map (kbd \"M-?\") nil))\n (when (maybe-require-package 'company-anaconda)\n (after-load 'company\n (after-load 'python\n (push 'company-anaconda company-backends)))))\n\n\n(provide 'init-python)\n;;; init-python.el ends here\n","new_contents":";;; init-python.el --- Python editing -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n\n;; See the following note about how I set up python + virtualenv to\n;; work seamlessly with Emacs:\n;; https:\/\/gist.github.com\/purcell\/81f76c50a42eee710dcfc9a14bfc7240\n\n\n(setq auto-mode-alist\n (append '((\"SConstruct\\\\'\" . python-mode)\n (\"SConscript\\\\'\" . python-mode))\n auto-mode-alist))\n\n(setq python-shell-interpreter \"python3\")\n\n(require-package 'pip-requirements)\n\n(when (maybe-require-package 'anaconda-mode)\n (after-load 'python\n ;; Anaconda doesn't work on remote servers without some work, so\n ;; by default we enable it only when working locally.\n (add-hook 'python-mode-hook\n (lambda () (unless (file-remote-p default-directory)\n (anaconda-mode 1))))\n (add-hook 'anaconda-mode-hook 'anaconda-eldoc-mode))\n (after-load 'anaconda-mode\n (define-key anaconda-mode-map (kbd \"M-?\") nil))\n (when (maybe-require-package 'company-anaconda)\n (after-load 'company\n (after-load 'python\n (push 'company-anaconda company-backends)))))\n\n(when (maybe-require-package 'toml-mode)\n (add-to-list 'auto-mode-alist '(\"poetry\\\\.lock\\\\'\" . toml-mode)))\n\n(provide 'init-python)\n;;; init-python.el ends here\n","subject":"Add toml-mode for poetry lockfiles","message":"Add toml-mode for poetry lockfiles\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueabysm\/emacs.d,lust4life\/emacs.d,blueseason\/emacs.d,qianwan\/emacs.d,arthurl\/emacs.d,baohaojun\/emacs.d,emuio\/emacs.d,dcorking\/emacs.d,sgarciac\/emacs.d,purcell\/emacs.d,gsmlg\/emacs.d,braveoyster\/emacs.d,krzysz00\/emacs.d,svenyurgensson\/emacs.d"} {"commit":"0a21a2816576237773438361b01169d98dd1cab8","old_file":"contrib\/osx\/packages.el","new_file":"contrib\/osx\/packages.el","old_contents":"(setq osx-packages\n '(\n pbcopy\n ))\n\n(defun osx\/init-pbcopy ()\n (use-package pbcopy\n :if (not (display-graphic-p))\n :init (turn-on-pbcopy)))\n","new_contents":"(setq osx-packages\n '(\n pbcopy\n ))\n\n(if (executable-find \"gls\")\n ; maybe absolute or relative name of the `ls' program used by `insert-directory'.\n ; brew info coreutils\n (setq insert-directory-program \"gls\"\n dired-listing-switches \"-aBhl --group-directories-first\")\n (setq dired-use-ls-dired nil))\n\n(defun osx\/init-pbcopy ()\n (use-package pbcopy\n :if (not (display-graphic-p))\n :init (turn-on-pbcopy)))\n","subject":"Make dired use coreutils' gls, if installed","message":"Make dired use coreutils' gls, if installed\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"fb40bf5aa3fbdcbdd93cfa9d0bbc6d24d46340e7","old_file":"init-package\/init-popwin.el","new_file":"init-package\/init-popwin.el","old_contents":"(use-package popwin\n :init\n (progn\n (popwin-mode 1)\n (push '(\"*grep*\" :dedicated t :position bottom :stick t :noselect t) popwin:special-display-config)\n (push '(\"^\\*Flycheck.+\\*$\" :regexp t :dedicated t :position bottom :stick t :noselect t) popwin:special-display-config)\n (push '(\"^\\*helm.+\\*$\" :regexp t :position bottom) popwin:special-display-config)\n (push '(\"^\\*helm-.+\\*$\" :regexp t :position bottom) popwin:special-display-config)))\n","new_contents":"(use-package popwin\n :init\n (progn\n (popwin-mode 1)\n (push '(\"*grep*\" :dedicated t :position bottom :stick t :noselect t) popwin:special-display-config)\n (push '(\"*nosetests*\" :dedicated t :position bottom :stick t :noselect t) popwin:special-display-config)\n (push '(\"^\\*Flycheck.+\\*$\" :regexp t :dedicated t :position bottom :stick t :noselect t) popwin:special-display-config)\n (push '(\"^\\*helm.+\\*$\" :regexp t :position bottom ) popwin:special-display-config)\n (push '(\"^\\*helm-.+\\*$\" :regexp t :position bottom ) popwin:special-display-config)))\n","subject":"Add popwin properties for nosetests window","message":"Add popwin properties for nosetests window\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"d7a8ab639c40e71dfbf7f62ac1c303540664f4e4","old_file":"layers\/mfa-lisp\/packages.el","new_file":"layers\/mfa-lisp\/packages.el","old_contents":";; -*- lexical-binding: t -*-\n\n(defconst mfa-lisp-packages '(expand-region))\n\n(defun mfa-lisp\/post-init-expand-region ()\n (with-eval-after-load 'expand-region\n (er\/enable-mode-expansions 'emacs-lisp-mode\n #'mfa-lisp\/\/add-emacs-lisp-mode-expansions)))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defconst mfa-lisp-packages '((emacs-lisp :location built-in)\n expand-region))\n\n(defun mfa-lisp\/post-init-emacs-lisp ()\n (when (configuration-layer\/package-used-p 'aggressive-indent)\n (add-hook 'emacs-lisp-mode-hook #'aggressive-indent-mode)))\n\n(defun mfa-lisp\/post-init-expand-region ()\n (with-eval-after-load 'expand-region\n (er\/enable-mode-expansions 'emacs-lisp-mode\n #'mfa-lisp\/\/add-emacs-lisp-mode-expansions)))\n","subject":"Enable `aggressive-indent-mode` in Emacs lisp buffers","message":"Enable `aggressive-indent-mode` in Emacs lisp buffers\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"9b3d8dc1bd310b1a631f7021a829247661ec4552","old_file":"modules\/emacs\/undo\/packages.el","new_file":"modules\/emacs\/undo\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; emacs\/undo\/packages.el\n\n(if (not (featurep! +tree))\n (package! undo-tree :pin \"5b6df03781\")\n (package! undo-fu :pin \"0c34b6747e\")\n (package! undo-fu-session :pin \"b808ef0cdc\"))\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; emacs\/undo\/packages.el\n\n(if (featurep! +tree)\n (package! undo-tree :pin \"5b6df03781\")\n (package! undo-fu :pin \"0c34b6747e\")\n (package! undo-fu-session :pin \"b808ef0cdc\"))\n","subject":"Fix inverted condition on +tree for undo module","message":"Fix inverted condition on +tree for undo module\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d"} {"commit":"aee1b084e3136063edb91e618bb4b5527c479dea","old_file":"init-package\/init-cc-mode.el","new_file":"init-package\/init-cc-mode.el","old_contents":"(require 'cc-mode)\n(add-hook 'c-mode-hook '(lambda () (c-toggle-auto-state t)))\n(add-hook 'c++-mode-hook '(lambda () (c-toggle-auto-state t)))\n\n;; From http:\/\/xugx2007.blogspot.ca\/2007\/06\/benjamin-rutts-emacs-c-development-tips.html\n(setq compilation-finish-function\n (lambda (buf str)\n\n (if (string-match \"exited abnormally\" str)\n\n ;;there were errors\n (message \"compilation errors, press C-x ` to visit\")\n\n ;;no errors, make the compilation window go away in 0.5 seconds\n (run-at-time 0.5 nil 'delete-windows-on buf)\n (message \"No compilation errors.\"))))\n","new_contents":"(require 'cc-mode)\n(add-hook 'c-mode-hook '(lambda () (c-toggle-auto-state t)))\n(add-hook 'c++-mode-hook '(lambda () (c-toggle-auto-state t)))\n\n;; From http:\/\/xugx2007.blogspot.ca\/2007\/06\/benjamin-rutts-emacs-c-development-tips.html\n(setq compilation-finish-function\n (lambda (buf str)\n\n (if (or (string-match \"exited abnormally\" str)\n (string-match \"FAILED\" (buffer-string)))\n\n ;;there were errors\n (message \"There were errors. SPC-e-n to visit.\")\n\n ;;no errors, make the compilation window go away in 0.5 seconds\n (run-at-time 1.0 nil 'delete-windows-on buf)\n (message \"Ok.\"))))\n","subject":"Tweak auto-closing of compilation window","message":"Tweak auto-closing of compilation window\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"3cdb31e612bec1c52c618d01889f9a4e44b8c30d","old_file":"lisp\/init-recentf.el","new_file":"lisp\/init-recentf.el","old_contents":";;; init-recentf.el --- Settings for tracking recent files -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(add-hook 'after-init-hook 'recentf-mode)\n(setq-default\n recentf-max-saved-items 1000\n recentf-exclude '(\"\/tmp\/\" \"\/ssh:\"))\n\n\n(provide 'init-recentf)\n;;; init-recentf.el ends here\n","new_contents":";;; init-recentf.el --- Settings for tracking recent files -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(add-hook 'after-init-hook 'recentf-mode)\n(setq-default\n recentf-max-saved-items 1000\n recentf-exclude `(\"\/tmp\/\" \"\/ssh:\" ,(concat package-user-dir \"\/.*-autoloads\\\\.el\\\\'\")))\n\n\n(provide 'init-recentf)\n;;; init-recentf.el ends here\n","subject":"Exclude elpa package autoloads in recentf","message":"Exclude elpa package autoloads in recentf\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"sgarciac\/emacs.d,lust4life\/emacs.d,emuio\/emacs.d,purcell\/emacs.d,arthurl\/emacs.d,qianwan\/emacs.d,blueabysm\/emacs.d,gsmlg\/emacs.d,baohaojun\/emacs.d,krzysz00\/emacs.d,svenyurgensson\/emacs.d,dcorking\/emacs.d,blueseason\/emacs.d,braveoyster\/emacs.d"} {"commit":"c1e10d3b441122989b9e689e0cc91c6689899f3a","old_file":"prelude-modules.el","new_file":"prelude-modules.el","old_contents":";;; Uncomment the modules you'd like to use and restart Prelude afterwards\n\n(require 'prelude-ido) ;; Super charges Emacs completion for C-x C-f and more\n;; (require 'prelude-helm) ;; Interface for narrowing and search\n\n(require 'prelude-c)\n;; (require 'prelude-clojure)\n;; (require 'prelude-coffee)\n;; (require 'prelude-common-lisp)\n;; (require 'prelude-css)\n(require 'prelude-emacs-lisp)\n(require 'prelude-erc) ;; Emacs IRC client\n;; (require 'prelude-erlang)\n;; (require 'prelude-haskell)\n(require 'prelude-js)\n;; (require 'prelude-key-chord) ;; Binds useful features to key combinations\n;; (require 'prelude-latex)\n(require 'prelude-lisp)\n;; (require 'prelude-mediawiki)\n(require 'prelude-org) ;; Org-mode helps you keep TODO lists, notes and more\n(require 'prelude-perl)\n;; (require 'prelude-python)\n;; (require 'prelude-ruby)\n;; (require 'prelude-scala)\n(require 'prelude-scheme)\n;; (require 'prelude-scss)\n;; (require 'prelude-web) ;; Emacs mode for web templates\n(require 'prelude-xml)\n","new_contents":";;; Uncomment the modules you'd like to use and restart Prelude afterwards\n\n(require 'prelude-ido) ;; Super charges Emacs completion for C-x C-f and more\n;; (require 'prelude-helm) ;; Interface for narrowing and search\n\n(require 'prelude-c)\n;; (require 'prelude-clojure)\n(require 'prelude-coffee)\n;; (require 'prelude-common-lisp)\n(require 'prelude-css)\n(require 'prelude-emacs-lisp)\n(require 'prelude-erc) ;; Emacs IRC client\n;; (require 'prelude-erlang)\n(require 'prelude-haskell)\n(require 'prelude-js)\n;; (require 'prelude-key-chord) ;; Binds useful features to key combinations\n;; (require 'prelude-latex)\n; (require 'prelude-lisp)\n;; (require 'prelude-mediawiki)\n(require 'prelude-org) ;; Org-mode helps you keep TODO lists, notes and more\n; (require 'prelude-perl)\n;; (require 'prelude-python)\n(require 'prelude-ruby)\n(require 'prelude-scala)\n; (require 'prelude-scheme)\n(require 'prelude-scss)\n(require 'prelude-web) ;; Emacs mode for web templates\n(require 'prelude-xml)\n","subject":"Load more packages on Emacs startup","message":"Load more packages on Emacs startup","lang":"Emacs Lisp","license":"mit","repos":"zhiyuanshi\/emacs.d"} {"commit":"372f754ffe50dbf9a093509a786ebed4f068f72c","old_file":"elisp\/aspk-advice.el","new_file":"elisp\/aspk-advice.el","old_contents":"(defmacro aspk\/advice-add (func-name pos action)\r\n \"Add a acvice `action' to `func-name' at `pos'. Currently `pos' can only be `before' and `after'.\"\r\n (message \"Add advice. Function:%S, pos:%S, action:%S\" func-name pos action)\r\n `(progn\r\n (defadvice ,func-name (,pos aspk-add-trace)\r\n (let ((args (ad-get-args 0)))\r\n (apply ',action ',func-name ad-return-value args))\r\n ;; (message \"Return value: %S\" ad-return-value)\r\n )\r\n (ad-activate ',func-name)))\r\n\r\n(defun aspk\/advice-add-multi (func-name-list pos action)\r\n (dolist (func-name func-name-list)\r\n (eval `(aspk\/advice-add ,func-name ,pos ,action))))\r\n\r\n(provide 'aspk-advice)\r\n","new_contents":"(defmacro aspk\/advice-add (func-name pos action)\r\n \"Add a advice `action' to `func-name' at `pos'. Currently `pos' can only be `before' and `after'.\"\r\n (message \"Add advice. Function:%S, pos:%S, action:%S\" func-name pos action)\r\n `(progn\r\n (defadvice ,func-name (,pos aspk-add-trace)\r\n (let ((args (ad-get-args 0)))\r\n (apply ',action ',func-name ad-return-value args)))\r\n (ad-activate ',func-name)))\r\n\r\n(defun aspk\/advice-add-multi (func-name-list pos action)\r\n \"Add a advice `action' to `func-name-list' at `pos'. Currently `pos' can only be `before' and `after'.\"\r\n (dolist (func-name func-name-list)\r\n (eval `(aspk\/advice-add ,func-name ,pos ,action))))\r\n\r\n(provide 'aspk-advice)\r\n","subject":"Add doc string. Fix some typo.","message":"Add doc string. Fix some typo.\n","lang":"Emacs Lisp","license":"mit","repos":"astropeak\/aspk-code-base,astropeak\/aspk-code-base,astropeak\/aspk-code-base,astropeak\/aspk-code-base,astropeak\/aspk-code-base,astropeak\/aspk-code-base,astropeak\/aspk-code-base,astropeak\/aspk-code-base,astropeak\/aspk-code-base"} {"commit":"6a328d4944a7e892c2c86aedb316c885995e0de4","old_file":"init-haskell.el","new_file":"init-haskell.el","old_contents":"(require-package 'haskell-mode)\n\n(dolist (hook '(haskell-mode-hook inferior-haskell-mode-hook))\n (add-hook hook 'turn-on-haskell-doc-mode))\n\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)\n\n(eval-after-load 'haskell-mode\n '(progn\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (define-key haskell-mode-map (kbd \"RET\") 'newline)))\n\n(require-package 'ghci-completion)\n(add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion)\n\n(require-package 'flymake-haskell-multi)\n(add-hook 'haskell-mode-hook #'flymake-haskell-multi-load)\n\n;; Make compilation-mode understand \"at blah.hs:11:34-50\" lines output by GHC\n(eval-after-load 'compile\n '(progn\n (let ((alias 'ghc-at-regexp))\n (add-to-list\n 'compilation-error-regexp-alist-alist\n (list alias \" at \\\\(.*l?hs\\\\):\\\\([0-9]+\\\\):\\\\([0-9]+\\\\)-[0-9]+$\" 1 2 3 0 1))\n (add-to-list\n 'compilation-error-regexp-alist alias))))\n\n(provide 'init-haskell)\n","new_contents":"(require-package 'haskell-mode)\n\n(dolist (hook '(haskell-mode-hook inferior-haskell-mode-hook))\n (add-hook hook 'turn-on-haskell-doc-mode))\n\n(add-auto-mode 'haskell-mode \"\\\\.ghci\\\\'\")\n\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)\n\n(eval-after-load 'haskell-mode\n '(progn\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (define-key haskell-mode-map (kbd \"RET\") 'newline)))\n\n(require-package 'ghci-completion)\n(add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion)\n\n(require-package 'flymake-haskell-multi)\n(add-hook 'haskell-mode-hook #'flymake-haskell-multi-load)\n\n;; Make compilation-mode understand \"at blah.hs:11:34-50\" lines output by GHC\n(eval-after-load 'compile\n '(progn\n (let ((alias 'ghc-at-regexp))\n (add-to-list\n 'compilation-error-regexp-alist-alist\n (list alias \" at \\\\(.*l?hs\\\\):\\\\([0-9]+\\\\):\\\\([0-9]+\\\\)-[0-9]+$\" 1 2 3 0 1))\n (add-to-list\n 'compilation-error-regexp-alist alias))))\n\n(provide 'init-haskell)\n","subject":"Use haskell-mode for .ghci files","message":"Use haskell-mode for .ghci files\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zhuoyikang\/emacs.d,qinshulei\/emacs.d,me020523\/emacs.d,kongfy\/emacs.d,danfengcao\/emacs.d,farzadbekran\/emacs.d,zenith-john\/emacs.d,Enzo-Liu\/emacs.d,modkzs\/emcs.d,jkaessens\/emacs.d,mpwang\/emacs.d,qianwan\/emacs.d,ruiyang\/emacs.d,haodaivshen\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,LKI\/emacs.d,baohaojun\/emacs.d,ernest-dzf\/emacs.d,benkha\/emacs.d,blueseason\/emacs.d,ruiyang\/emacs.d,LittleLmp\/emacs.d,Jadecity\/PurcellEmacs.d,lromang\/emacs.d,jthetzel\/emacs.d,farzadbekran\/emacs.d,svenyurgensson\/emacs.d,hophacker\/emacs.d,caoyuanqi\/emacs.d,kindoblue\/emacs.d,braveoyster\/emacs.d,zhaotai\/.emacs.d,emuio\/emacs.d,roxolan\/emacs.d,Guoozz\/emacs.d,dcorking\/emacs.d,carlosliu\/emacs.d,dongdonghu\/.emacs.d,Shanicky\/emacs.d,cjqw\/emacs.d,DarkThrone\/emacs.d,renatoriccio\/emacs.d,mmqmzk\/emacs.d,wegatron\/emacs.d,blueabysm\/emacs.d,boblannon\/emacs.d,arthurl\/emacs.d,sgarciac\/emacs.d,scorpionis\/emacs.d,fengxl\/emacs.d,shafayetkhan\/emacs.d,wenpincui\/emacs.d,lujianmei\/emacs.d,exclamaforte\/emacs.d,whizzzkid\/emacs.d,cyjia\/emacs.d,lust4life\/emacs.d,Werewolflsp\/emacs.d,jhpx\/emacs.d,jachinpy\/emacs.d,jachinpy\/emacs.d,Togal\/emacs.d,farzadbekran\/emacs.d,atreeyang\/emacs.d,pairyo\/emacs.d,ilove0518\/emacs.d,purcell\/emacs.d,46do14\/emacs.d,hkcqr\/emacs.d,dhanunjaya\/emacs.d,alant\/emacs.d,gsmlg\/emacs.d,krzysz00\/emacs.d,bibaijin\/emacs.d"} {"commit":"c5eb4ad22b65c1bd9e6d33aaffedf52bfc77d254","old_file":"angel-dark-theme.el","new_file":"angel-dark-theme.el","old_contents":"(deftheme angel-dark\n \"A dark theme based on solarized dark.\")\n\n;; [todo] - Derive angel-dark from solarized\n;; [todo] - Disable solarized with angel-dark\n(load-theme 'solarized-dark t)\n\n(custom-theme-set-variables\n 'angel-dark\n '(magit-use-overlays t)\n '(fci-rule-width 1)\n '(cursor-type (quote (bar . 2)))\n '(solarized-height-plus-1 1)\n '(solarized-height-plus-2 1)\n '(solarized-height-plus-3 1)\n '(solarized-height-plus-4 1)\n '(solarized-use-less-bold t)\n '(solarized-use-more-italic t)\n '(solarized-use-variable-pitch nil))\n\n(custom-theme-set-faces\n 'angel-dark\n '(magit-item-highdark ((t nil))))\n\n(provide-theme 'angel-dark)\n","new_contents":"(deftheme angel-dark\n \"A dark theme based on solarized dark.\")\n\n(custom-theme-set-variables\n 'angel-dark\n '(magit-use-overlays t)\n '(fci-rule-width 1)\n '(cursor-type (quote (bar . 2))))\n\n(custom-theme-set-faces\n 'angel-dark\n '(magit-item-highdark ((t nil))))\n\n(setq solarized-height-plus-1 1.1\n solarized-height-plus-2 1.1\n solarized-height-plus-3 1.1\n solarized-height-plus-4 1.1\n solarized-use-less-bold t\n solarized-use-more-italic t\n solarized-use-variable-pitch nil)\n\n;; [todo] - Derive angel-dark from solarized\n;; [todo] - Disable solarized with angel-dark\n(load-theme 'solarized-dark t)\n\n(provide-theme 'angel-dark)\n","subject":"Fix solarized config vars load order","message":"Fix solarized config vars load order\n","lang":"Emacs Lisp","license":"mit","repos":"arajparaj\/emacs.d,jaseemabid\/emacs.d"} {"commit":"54fd0c1c5592c15ab3b7e12f674d26b69ba22e9a","old_file":"layers\/+lang\/extra-langs\/packages.el","new_file":"layers\/+lang\/extra-langs\/packages.el","old_contents":"(setq extra-langs-packages\n '(\n arduino-mode\n julia-mode\n matlab-mode\n qml-mode\n scad-mode\n stan-mode\n thrift\n wolfram-mode\n ))\n\n(defun extra-langs\/init-arduino-mode ()\n (use-package arduino-mode :defer t))\n\n(defun extra-langs\/init-scad-mode ()\n (use-package scad-mode :defer t))\n\n(defun extra-langs\/init-qml-mode ()\n (use-package qml-mode :defer t :mode \"\\\\.qml\\\\'\"))\n\n(defun extra-langs\/init-julia-mode ()\n (use-package julia-mode :defer t))\n\n(defun extra-langs\/init-matlab-mode ()\n (use-package matlab-mode :defer t))\n\n(defun extra-langs\/init-stan-mode ()\n (use-package stan-mode :defer t))\n\n(defun extra-langs\/init-thrift ()\n (use-package thrift :defer t :mode (\"\\\\.thrift\\\\'\" . thrift-mode)))\n\n;; no associated extension because conflicts with more common Objective-C, manually invoke for .m files.\n(defun extra-langs\/init-wolfram-mode ()\n (use-package wolfram-mode\n :defer t\n :interpreter \"\\\\(Wolfram\\\\|Mathematica\\\\)Script\\\\( -script\\\\)?\"))\n","new_contents":"(setq extra-langs-packages\n '(\n arduino-mode\n julia-mode\n matlab-mode\n qml-mode\n scad-mode\n stan-mode\n thrift\n wolfram-mode\n ))\n\n(defun extra-langs\/init-arduino-mode ()\n (use-package arduino-mode :defer t))\n\n(defun extra-langs\/init-scad-mode ()\n (use-package scad-mode :defer t))\n\n(defun extra-langs\/init-qml-mode ()\n (use-package qml-mode :defer t :mode \"\\\\.qml\\\\'\"))\n\n(defun extra-langs\/init-julia-mode ()\n (use-package julia-mode :defer t))\n\n(defun extra-langs\/init-matlab-mode ()\n (use-package matlab-mode :defer t))\n\n(defun extra-langs\/init-stan-mode ()\n (use-package stan-mode :defer t))\n\n(defun extra-langs\/init-thrift ()\n (use-package thrift :defer t))\n\n;; no associated extension because conflicts with more common Objective-C, manually invoke for .m files.\n(defun extra-langs\/init-wolfram-mode ()\n (use-package wolfram-mode\n :defer t\n :interpreter \"\\\\(Wolfram\\\\|Mathematica\\\\)Script\\\\( -script\\\\)?\"))\n","subject":"Remove unnecessary :mode for thrift","message":"Remove unnecessary :mode for thrift\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"fa360145596d95cff79be8d84850a461d7f467a6","old_file":"modules\/feature\/snippets\/autoload\/settings.el","new_file":"modules\/feature\/snippets\/autoload\/settings.el","old_contents":";;; feature\/snippets\/autoload\/settings.el -*- lexical-binding: t; -*-\n\n;;;###autodef\n(defun set-yas-minor-mode! (mode)\n \"Register a minor MODE with yasnippet so it can have its own snippets\ncategory, if the folder exists.\"\n (after! yasnippet\n (let ((fn (intern (format \"+snippets|register-%s\" mode))))\n (fset fn (lambda () (+snippets|enable-project-modes mode)))\n (add-hook (intern (format \"%s-hook\" mode)) fn))))\n\n;;;###autoload\n(def-setting! :yas-minor-mode (mode)\n :obsolete set-yas-minor-mode!\n `(set-yas-minor-mode! ,mode))\n","new_contents":";;; feature\/snippets\/autoload\/settings.el -*- lexical-binding: t; -*-\n\n;;;###autodef\n(defun set-yas-minor-mode! (modes)\n \"Register minor MODES (one mode symbol or a list of them) with yasnippet so it\ncan have its own snippets category, if the folder exists.\"\n (let ((fn (intern (format \"+snippets|register-%s\" mode))))\n (fset fn (lambda ()\n (make-local-variable 'yas--extra-modes)\n (dolist (mode (doom-enlist modes))\n (add-to-list 'yas--extra-modes mode nil #'eq))\n (yas--load-pending-jits)))\n (add-hook (intern (format \"%s-hook\" mode)) fn)))\n\n;;;###autoload\n(def-setting! :yas-minor-mode (mode)\n :obsolete set-yas-minor-mode!\n `(set-yas-minor-mode! ,mode))\n","subject":"Allow set-yas-minor-mode! to accept multiple modes","message":"Allow set-yas-minor-mode! to accept multiple modes\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs"} {"commit":"26bf8c3944cd987ccd49c2366a49250125459f9e","old_file":"emacs.d\/init-files\/init-emacs-theme-gruvbox.el","new_file":"emacs.d\/init-files\/init-emacs-theme-gruvbox.el","old_contents":"(add-to-list 'custom-theme-load-path \"~\/.emacs.d\/el-get\/emacs-theme-gruvbox\")\n(load-theme 'gruvbox t)\n","new_contents":"(add-to-list 'custom-theme-load-path default-directory)\n(load-theme 'gruvbox t)\n","subject":"Revert to using 'default-directory' vs hard coded path","message":"Revert to using 'default-directory' vs hard coded path\n\nThis requires latest upstream el-get as of this commit\n","lang":"Emacs Lisp","license":"mit","repos":"bbenne10\/dotfiles,bbenne10\/dotfiles"} {"commit":"ef563ab925aa5fd0b2ef68d21b68dadbb6da42e2","old_file":"configs\/emacs.d\/pkgs\/pkg-evil.el","new_file":"configs\/emacs.d\/pkgs\/pkg-evil.el","old_contents":"(use-package evil\n :ensure t\n\n :config\n (require 'evil)\n (evil-mode 1)\n\n )\n\n(provide 'pkg-evil)\n","new_contents":"(use-package evil\n :ensure t\n\n :bind (\n ;; bind ctrl-j\/k to just move\n (\"C-j\" . evil-next-line)\n (\"C-k\" . evil-previous-line)\n )\n\n :config\n (require 'evil)\n (evil-mode 1)\n\n ;; command alias\n (evil-ex-define-cmd \"W\" \"w\")\n (evil-ex-define-cmd \"Wq\" \"wq\")\n (evil-ex-define-cmd \"WQ\" \"wq\")\n (evil-ex-define-cmd \"Q\" \"q\")\n )\n\n(provide 'pkg-evil)\n","subject":"Add some helpful settings to evil","message":"Add some helpful settings to evil\n","lang":"Emacs Lisp","license":"mit","repos":"noraesae\/dotfiles,noraesae\/dotfiles,noraesae\/dotfiles"} {"commit":"91c00d4756394a9a5ae6c61eb71e02a6ade21a59","old_file":"modules\/editor\/word-wrap\/config.el","new_file":"modules\/editor\/word-wrap\/config.el","old_contents":";;; editor\/word-wrap\/config.el -*- lexical-binding: t; -*-\n\n(defvar +word-wrap-extra-indent 'double\n \"The amount of extra indentation for wrapped code lines.\n\nWhen 'double, indent by twice the major-mode indentation.\nWhen 'single, indent by the major-mode indentation.\nWhen a positive integer, indent by this fixed amount.\nWhen a negative integer, dedent by this fixed amount.\n\nOtherwise no extra indentation will be used.\")\n\n(defvar +word-wrap-disabled-modes\n '(fundamental-mode so-long-mode)\n \"Major-modes where `+global-word-wrap-mode' should not enable\n`+word-wrap-mode'.\")\n\n(defvar +word-wrap-visual-modes\n '(org-mode)\n \"Major-modes where `+word-wrap-mode' should not use\n`adaptive-wrap-prefix-mode'.\")\n\n(defvar +word-wrap-text-modes\n '(text-mode markdown-mode markdown-view-mode gfm-mode gfm-view-mode rst-mode\n latex-mode LaTeX-mode)\n \"Major-modes where `+word-wrap-mode' should not provide extra indentation.\")\n","new_contents":";;; editor\/word-wrap\/config.el -*- lexical-binding: t; -*-\n\n(defvar +word-wrap-extra-indent 'double\n \"The amount of extra indentation for wrapped code lines.\n\nWhen 'double, indent by twice the major-mode indentation.\nWhen 'single, indent by the major-mode indentation.\nWhen a positive integer, indent by this fixed amount.\nWhen a negative integer, dedent by this fixed amount.\n\nOtherwise no extra indentation will be used.\")\n\n(defvar +word-wrap-disabled-modes\n '(fundamental-mode so-long-mode)\n \"Major-modes where `+global-word-wrap-mode' should not enable\n`+word-wrap-mode'.\")\n\n(defvar +word-wrap-visual-modes\n '(org-mode)\n \"Major-modes where `+word-wrap-mode' should not use\n`adaptive-wrap-prefix-mode'.\")\n\n(defvar +word-wrap-text-modes\n '(text-mode markdown-mode markdown-view-mode gfm-mode gfm-view-mode rst-mode\n latex-mode LaTeX-mode)\n \"Major-modes where `+word-wrap-mode' should not provide extra indentation.\")\n\n(when (memq 'visual-line-mode text-mode-hook)\n (remove-hook 'text-mode-hook #'visual-line-mode)\n (add-hook 'text-mode-hook #'+word-wrap-mode))\n","subject":"Use +word-wrap-mode instead of visual-line-mode default","message":"Use +word-wrap-mode instead of visual-line-mode default\n\nIf the word-wrap module is enabled.\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs"} {"commit":"9946473be597c977788dc945732a1195ffde1cbf","old_file":"lisp\/init-github.el","new_file":"lisp\/init-github.el","old_contents":"(require 'init-git)\n\n(maybe-require-package 'yagist)\n(require-package 'bug-reference-github)\n(add-hook 'prog-mode-hook 'bug-reference-prog-mode)\n\n(maybe-require-package 'github-clone)\n(maybe-require-package 'magithub)\n\n\n(provide 'init-github)\n","new_contents":"(require 'init-git)\n\n(maybe-require-package 'yagist)\n(require-package 'bug-reference-github)\n(add-hook 'prog-mode-hook 'bug-reference-prog-mode)\n\n(maybe-require-package 'github-clone)\n(when (maybe-require-package 'magithub)\n (defun magithub-issues-completion-at-point ()\n (when (magithub-enabled-p)\n (when (looking-back \"#\\\\([0-9]*\\\\)\")\n (let ((start (match-beginning 1))\n (end (match-end 0))\n (prefix (match-string 1))\n completions)\n (dolist (i (magithub--issue-list))\n (let-alist i\n (let ((n (number-to-string .number)))\n (when (string-prefix-p prefix n)\n (set-text-properties 0 (length n) (list :issue i) n)\n (push n completions)))))\n (list start end completions\n :exclusive 'no\n :company-docsig (lambda (c)\n (let-alist (get-text-property 0 :issue c)\n .title))\n :company-location (lambda (c)\n (magithub-issue-browse (get-text-property 0 :issue c)))\n :annotation-function (lambda (c)\n (let-alist (get-text-property 0 :issue c)\n .title))\n :company-doc-buffer (lambda (c)\n (save-window-excursion\n (magithub-issue-visit (get-text-property 0 :issue c))))\n )))))\n\n (add-hook 'git-commit-setup-hook\n (lambda () (add-to-list 'completion-at-point-functions 'magithub-issues-completion-at-point))))\n\n\n(provide 'init-github)\n","subject":"Add a completion function for issues in github commit messages","message":"Add a completion function for issues in github commit messages\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"me020523\/emacs.d,wegatron\/emacs.d,emuio\/emacs.d,purcell\/emacs.d,braveoyster\/emacs.d,kindoblue\/emacs.d,lust4life\/emacs.d,cjqw\/emacs.d,roxolan\/emacs.d,baohaojun\/emacs.d,sgarciac\/emacs.d,qianwan\/emacs.d,gsmlg\/emacs.d,mmqmzk\/emacs.d,blueabysm\/emacs.d,kongfy\/emacs.d,blueseason\/emacs.d,arthurl\/emacs.d,benkha\/emacs.d,svenyurgensson\/emacs.d,krzysz00\/emacs.d,dcorking\/emacs.d"} {"commit":"3fb2595beec6552a7ea7b76489f76a8eb1d9aa07","old_file":"emacs.d\/personal\/settings\/god-mode.el","new_file":"emacs.d\/personal\/settings\/god-mode.el","old_contents":"(require 'god-mode)\n\n;; Change the cursor in god mode\n(defun personal\/god-mode-cursor ()\n (setq cursor-type (if (or god-local-mode buffer-read-only)\n 'box\n 'bar)))\n\n(add-hook 'god-mode-enabled-hook 'personal\/god-mode-cursor)\n(add-hook 'god-mode-disabled-hook 'personal\/god-mode-cursor)\n\n;; Use C-i to enter god-mode\n(personal\/bind-key \"C-l\" \"i\" 'god-mode-all)\n(global-set-key (kbd \"\") 'god-mode-all)\n\n;; Use i to leave god mode\n(define-key god-local-mode-map (kbd \"i\") 'god-mode-all)\n(define-key god-local-mode-map (kbd \".\") 'repeat)\n","new_contents":"(require 'god-mode)\n\n;; Change the cursor in god mode\n(defun personal\/god-mode-cursor ()\n (setq cursor-type (if (or god-local-mode buffer-read-only)\n 'box\n 'bar)))\n\n(add-hook 'god-mode-enabled-hook 'personal\/god-mode-cursor)\n(add-hook 'god-mode-disabled-hook 'personal\/god-mode-cursor)\n\n;; Use C-i to enter god-mode\n(personal\/bind-key \"C-l\" \"i\" 'god-mode-all)\n(global-set-key (kbd \"\") 'god-mode-all)\n\n;; Use i to leave god mode\n(define-key god-local-mode-map (kbd \"i\") 'god-mode-all)\n(define-key god-local-mode-map (kbd \".\") 'repeat)\n\n;; Disable smartparens mode while god-mode is enabled (smartparens mode rebinds\n;; many keys to do its magic, including \"n\" which interferes with the use of\n;; god-mode)\n(add-hook 'god-mode-enabled-hook (lambda ()\n (interactive)\n (smartparens-mode -1)))\n\n(add-hook 'god-mode-disabled-hook (lambda ()\n (interactive)\n (smartparens-mode +1)))\n","subject":"Disable smartparens mode in god mode","message":"Disable smartparens mode in god mode\n","lang":"Emacs Lisp","license":"mit","repos":"caleb\/dotfiles,caleb\/dotfiles,caleb\/dotfiles"} {"commit":"515e7af6c532dce726c4971d39f89fbe49ede290","old_file":"home\/.emacs.d\/lisp\/init-projectile.el","new_file":"home\/.emacs.d\/lisp\/init-projectile.el","old_contents":";;; init-projectile.el -- projetile setup\n\n;;; Commentary:\n;;; load projectile and customizations\n\n;;; Code:\n(require-package 'projectile)\n\n(require 'projectile)\n\n(projectile-global-mode 1)\n\n(diminish 'projectile-mode \" ℗ \")\n\n(provide 'init-projectile)\n;;; init-projectile.el ends here\n","new_contents":";;; init-projectile.el -- projetile setup\n\n;;; Commentary:\n;;; load projectile and customizations\n\n;;; Code:\n(require-package 'projectile)\n\n(require 'projectile)\n\n(projectile-global-mode 1)\n\n(setq projectile-completion-system 'helm\n projectile-switch-project-action 'helm-projectile)\n\n(diminish 'projectile-mode \" ℗ \")\n\n(provide 'init-projectile)\n;;; init-projectile.el ends here\n","subject":"Use helm as the projectile completion system","message":"Use helm as the projectile completion system\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"43a6216b7ebd96765f25aaf2c1a24b8a50e18f07","old_file":"layers\/my-dtrt-indent\/packages.el","new_file":"layers\/my-dtrt-indent\/packages.el","old_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-dtrt-indent-packages '(dtrt-indent))\n\n(defun my-dtrt-indent\/init-dtrt-indent ()\n (use-package dtrt-indent\n :diminish\n :defer t\n :init\n (dolist (mode dtrt-indent-mode-whitelist)\n (add-hook (intern (concat (symbol-name mode) \"-hook\"))\n #'dtrt-indent\/\/maybe-enable))))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-dtrt-indent-packages '(dtrt-indent))\n\n(defun my-dtrt-indent\/init-dtrt-indent ()\n (use-package dtrt-indent\n :diminish\n :defer t\n :init\n (dolist (mode dtrt-indent-mode-whitelist)\n (add-hook (intern (concat (symbol-name mode) \"-hook\"))\n #'dtrt-indent\/\/maybe-enable))\n :config\n (setq dtrt-indent-verbosity 0)))\n","subject":"Make dtrt-indent mode less noisy","message":"Make dtrt-indent mode less noisy\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"8bae82d1a679f1a31b9bc85a61803f405d511e07","old_file":"home\/.emacs.d\/lisp\/init-java.el","new_file":"home\/.emacs.d\/lisp\/init-java.el","old_contents":";;; init-java.el -- Java setup\n\n;;; Commentary:\n;;; Java and eclim setup\n\n;;; Code:\n(require 'use-package)\n\n(use-package emacs-eclim\n :commands (global-eclim-mode)\n :config\n (global-eclim-mode 1)\n (company-emacs-eclim-setup)\n (setq eclim-eclipse-dirs \"\/opt\/eclipse\")\n (setq eclim-executable \"\/opt\/eclipse\/eclim\")\n (setq eclimd-default-workspace \"~\/eclipse_workspace\")\n (setq eclimd-executable \"\/opt\/eclipse\/eclimd\")\n (setq company-emacs-eclim-ignore-case t)\n :init\n (add-hook 'java-mode-hook #'global-eclim-mode))\n\n(add-hook 'java-mode-hook (lambda ()\n (setq c-basic-offset 2\n tab-width 2)))\n\n(provide 'init-java)\n;;; init-java.el ends here\n","new_contents":";;; init-java.el -- Java setup\n\n;;; Commentary:\n;;; Java and eclim setup\n\n;;; Code:\n(require 'use-package)\n\n(use-package eclim\n :commands (global-eclim-mode)\n :config\n (global-eclim-mode 1)\n (company-emacs-eclim-setup)\n (setq eclim-eclipse-dirs \"\/opt\/eclipse\")\n (setq eclim-executable \"\/opt\/eclipse\/eclim\")\n (setq eclimd-default-workspace \"~\/eclipse_workspace\")\n (setq eclimd-executable \"\/opt\/eclipse\/eclimd\")\n (setq company-emacs-eclim-ignore-case t)\n :init\n (add-hook 'java-mode-hook #'global-eclim-mode))\n\n(add-hook 'java-mode-hook (lambda ()\n (setq c-basic-offset 2\n tab-width 2)))\n\n(provide 'init-java)\n;;; init-java.el ends here\n","subject":"Fix eclim package name for Emacs","message":"Fix eclim package name for Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"352cd6969de73b539db32408d4f161da350ad201","old_file":"custom\/22-smex.el","new_file":"custom\/22-smex.el","old_contents":"(global-set-key \"\\M-x\" 'smex)\n","new_contents":"(require 'smex)\n(smex-initialize)\n\n(global-set-key \"\\M-x\" 'smex)\n(global-set-key \"\\M-X\" 'smex-major-mode-commands)\n","subject":"Add some more smex goodness","message":"Add some more smex goodness\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"2c1df75f54eea36f1f2d1be8a50b498f53285ea3","old_file":"modules\/my-ansible.el","new_file":"modules\/my-ansible.el","old_contents":";;; -*- lexical-binding: t -*-\n;;; my-ansible.el --- Ansible mode settings.\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(require 'my-completion)\n\n(use-package ansible\n :init\n ;; Auto-enable for yaml files\n (add-hook 'yaml-mode-hook '(lambda () (ansible 1)))\n ;; Enable company backend for completion\n (add-to-list 'company-backends 'company-ansible))\n\n(provide 'my-ansible)\n\n;;; my-ansible.el ends here\n\n","new_contents":";;; -*- lexical-binding: t -*-\n;;; my-ansible.el --- Ansible mode settings.\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(require 'my-completion)\n\n(use-package ansible\n :init\n ;; Auto-enable for yaml files\n (add-hook 'yaml-mode-hook '(lambda () (ansible 1)))\n ;; Enable company backend for completion\n (add-to-list 'company-backends 'company-ansible))\n\n(use-package ansible-doc\n :init\n (add-hook 'yaml-mode-hook #'ansible-doc-mode))\n\n(provide 'my-ansible)\n\n;;; my-ansible.el ends here\n\n","subject":"Add ansible-doc mode (C-c ?).","message":"Add ansible-doc mode (C-c ?).\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"timanin\/emacs.d"} {"commit":"83b25550ade8fd4c7f3b42c2eedc309b85313ed2","old_file":"setup-files\/setup-key-chord.el","new_file":"setup-files\/setup-key-chord.el","old_contents":";; Time-stamp: <2015-04-01 08:59:07 kmodi>\n\n;; Key Chord Mode\n;; http:\/\/www.emacswiki.org\/emacs\/key-chord.el\n\n(use-package key-chord\n :config\n (progn\n (key-chord-mode 1)))\n\n\n(provide 'setup-key-chord)\n\n;; John Cook's post http:\/\/www.johndcook.com\/blog\/2015\/02\/01\/rare-bigrams\/\n;; provides a list of rare bi-grams that would work great for key-chords\n;; bf bg bq bx bz\n;; cj cv\n;; dx dz\n;; fb fj fq fv fz\n;; gb gj gp gq gv gx gz\n;; hj hq hv\n;; jj jc jf jg jh jk jl jm jp jq js jt jv jw jx jy jz\n;; kk kj kq kv kx kz\n;; lj lq\n;; mj mq mv mx mz\n;; pg pj pq pv pz\n;; qq qb qf qg qh qj qk ql qm qp qt qv qw qx qy qz\n;; sj sx sz\n;; tj tq\n;; vv vc vf vg vh vj vk vm vp vq vw vz\n;; ww wj wq wv wx wz\n;; xb xd xg xj xk xm xq xs xw xz\n;; yy yj yq\n;; zb zd zf zg zj zk zm zp zq zs zv zw zx\n","new_contents":";; Time-stamp: <2015-04-01 09:10:33 kmodi>\n\n;; Key Chord Mode\n;; http:\/\/www.emacswiki.org\/emacs\/key-chord.el\n\n(use-package key-chord\n :config\n (progn\n (key-chord-mode 1)))\n\n\n(provide 'setup-key-chord)\n\n;; John Cook's post http:\/\/www.johndcook.com\/blog\/2015\/02\/01\/rare-bigrams\/\n;; provides a list of rare bi-grams that would work great for key-chords.\n\n;; Below list is based off that after removing all the key-chord duplicates\n;; like `xs' and `sx'.\n\n;; fb\n;; gb gp\n;; jj jc jf jg jh jk jl jm jp jq js jt jv jw jx jy jz\n;; kk\n;; qq qb qf qg qh qk ql qm qp qt qv qw qx qy qz\n;; vv vc vf vg vh vk vm vp vw vz\n;; ww\n;; xb xd xg xk xm xs xw\n;; yy\n;; zb zd zf zg zk zm zp zs zw zx\n","subject":"Remove key-chord duplicates from list","message":"Minor: Remove key-chord duplicates from list\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"923d73510844f31dadf9bfef82832ab8f2f8ef06","old_file":"emacs\/config\/init-evil-mode.el","new_file":"emacs\/config\/init-evil-mode.el","old_contents":"(require-package 'evil)\n(require-package 'evil-leader)\n(require-package 'evil-nerd-commenter)\n\n; Setup evil leader\n(global-evil-leader-mode)\n(setq evil-leader\/in-all-states t)\n(evil-leader\/set-leader \",\")\n(evil-leader\/set-key\n \"f\" 'fuzzy-finder\n \"b\" 'switch-to-buffer\n \"k\" 'kill-buffer\n \"s\" 'save-buffer\n \"q\" 'quit-window\n \"n\" 'new-buffer\n \"i\" 'imenu\n)\n; Enable evil-nerd-commenter\n(evilnc-default-hotkeys)\n; Enable evil mode\n(evil-mode t)\n\n\n(provide 'init-evil-mode)\n","new_contents":"(require-package 'evil)\n(require-package 'evil-leader)\n(require-package 'evil-nerd-commenter)\n\n(setq evil-leader\/in-all-states t)\n(setq evil-leader\/no-prefix-mode-rx '(\".*-mode\"))\n; Setup evil leader\n(global-evil-leader-mode)\n(evil-leader\/set-leader \",\")\n(evil-leader\/set-key\n \"f\" 'fuzzy-finder\n \"b\" 'switch-to-buffer\n \"k\" 'kill-buffer\n \"s\" 'save-buffer\n \"q\" 'quit-window\n \"n\" 'new-buffer\n \"i\" 'imenu\n)\n; Enable evil-nerd-commenter\n(evilnc-default-hotkeys)\n; Enable evil mode\n(evil-mode t)\n\n\n(provide 'init-evil-mode)\n","subject":"Fix evil-leader in Insert mode","message":"Emacs: Fix evil-leader in Insert mode\n","lang":"Emacs Lisp","license":"mit","repos":"romanoaugusto88\/dotfiles"} {"commit":"28ce9f8c70cd35434beb8be8719ac91b958518ee","old_file":"load\/rb.el","new_file":"load\/rb.el","old_contents":"(defun rebuild-ripper-tags ()\n (start-process \"ripper-tags\" nil \"ripper-tags\" \"-R\" \"-e\"))\n\n(add-hook\n 'ruby-mode-hook\n (lambda ()\n ;; Check spelling.\n (flyspell-prog-mode)\n ;; Don't autofill\n (auto-fill-mode 0)\n ;; Make enter indent.\n (local-set-key (kbd \"C-m\") 'reindent-then-newline-and-indent)\n ;; Make smart-tab always indent\n (defvar smart-tab-always-indent nil)\n (setq-local smart-tab-always-indent t)\n ;; Clean up whitespace on save.\n (add-hook 'before-save-hook 'whitespace-cleanup nil t)\n ;; Rebuild tags on save.\n (add-hook (make-local-variable 'after-save-hook) 'rebuild-ripper-tags nil t)\n ;; Disable rubocop\n (defvar flycheck-disabled-checkers \"flycheck.el\")\n (setq flycheck-disabled-checkers\n (cons 'ruby-rubocop flycheck-disabled-checkers))\n ;; Turn on subword-mode\n (require 'diminish)\n (subword-mode 1)\n (diminish 'subword-mode)\n ;; Make do\/end less prominent.\n (defvar paren-face-regexp)\n (setq-local paren-face-regexp\n (rx symbol-start (or \"do\" \"end\") symbol-end))))\n","new_contents":"(defun rebuild-ripper-tags ()\n (start-process \"rebuild-ripper-tags\" nil \"rebuild-ripper-tags\"))\n\n(add-hook\n 'ruby-mode-hook\n (lambda ()\n ;; Check spelling.\n (flyspell-prog-mode)\n ;; Don't autofill\n (auto-fill-mode 0)\n ;; Make enter indent.\n (local-set-key (kbd \"C-m\") 'reindent-then-newline-and-indent)\n ;; Make smart-tab always indent\n (defvar smart-tab-always-indent nil)\n (setq-local smart-tab-always-indent t)\n ;; Clean up whitespace on save.\n (add-hook 'before-save-hook 'whitespace-cleanup nil t)\n ;; Rebuild tags on save.\n (add-hook (make-local-variable 'after-save-hook) 'rebuild-ripper-tags nil t)\n ;; Disable rubocop\n (defvar flycheck-disabled-checkers \"flycheck.el\")\n (setq flycheck-disabled-checkers\n (cons 'ruby-rubocop flycheck-disabled-checkers))\n ;; Turn on subword-mode\n (require 'diminish)\n (subword-mode 1)\n (diminish 'subword-mode)\n ;; Make do\/end less prominent.\n (defvar paren-face-regexp)\n (setq-local paren-face-regexp\n (rx symbol-start (or \"do\" \"end\") symbol-end))))\n","subject":"Split ripper-tags logic into a shell script","message":"Split ripper-tags logic into a shell script\n","lang":"Emacs Lisp","license":"mit","repos":"kaidadragonfly\/.emacs"} {"commit":"022a394691c0cbf9510d725bd2b7747c2eaefdfd","old_file":"emacs.d\/personal\/settings\/appearance.el","new_file":"emacs.d\/personal\/settings\/appearance.el","old_contents":";;; appearance.el --- Settings related to Emacs appearance\n\n;;; Commentary:\n\n;; Settings related to Emacs appearance\n\n;;; Code:\n\n;; hide the menu bar\n(menu-bar-mode 0)\n\n;; hide the scrollbars\n(scroll-bar-mode -1)\n\n;; disable the splash screen\n(setq inhibit-splash-screen t)\n\n;; load theme\n(load-theme 'gruvbox t)\n\n;; Speed up the performance of the display engine.\n;; See http:\/\/www.masteringemacs.org\/article\/improving-performance-emacs-display-engine\n(setq redisplay-dont-pause t)\n\n(set-face-attribute 'default nil\n :family \"Inconsolata\" :height 160 :weight 'regular)\n\n;;; appearance.el ends here\n","new_contents":";;; appearance.el --- Settings related to Emacs appearance\n\n;;; Commentary:\n\n;; Settings related to Emacs appearance\n\n;;; Code:\n\n;; hide the menu bar\n(menu-bar-mode 0)\n\n;; hide the scrollbars\n(scroll-bar-mode -1)\n\n;; disable the splash screen\n(setq inhibit-splash-screen t)\n\n;; load theme\n(if (daemonp)\n (add-hook 'after-make-frame-functions\n (lambda (frame)\n (select-frame frame)\n (load-theme 'gruvbox t)\n (personal\/reset-mode-line)))\n (load-theme 'gruvbox t)\n (personal\/reset-mode-line))\n\n;; Speed up the performance of the display engine.\n;; See http:\/\/www.masteringemacs.org\/article\/improving-performance-emacs-display-engine\n(setq redisplay-dont-pause t)\n\n(set-face-attribute 'default nil\n :family \"Inconsolata\" :height 160 :weight 'regular)\n\n;;; appearance.el ends here\n","subject":"Make the theme apply when running emacsclient in gui mode","message":"Make the theme apply when running emacsclient in gui mode\n","lang":"Emacs Lisp","license":"mit","repos":"caleb\/dotfiles,caleb\/dotfiles,caleb\/dotfiles"} {"commit":"dc32e7ffc4194fcfd6553222a0c39e4beb74fd82","old_file":"exercises\/grains\/grains-test.el","new_file":"exercises\/grains\/grains-test.el","old_contents":";;; grains-test.el --- Test for Grains (exercism)\n\n;;; Commentary:\n\n;;; Code:\n\n(load-file \"grains.el\")\n\n(ert-deftest square-1 ()\n (should (equal 1 (square 1))))\n\n(ert-deftest square-2 ()\n (should (equal 2 (square 2))))\n\n(ert-deftest square-3 ()\n (should (equal 4 (square 3))))\n\n(ert-deftest square-4 ()\n (should (equal 8 (square 4))))\n\n(ert-deftest square-16 ()\n (should (equal 32768\n (square 16))))\n\n(ert-deftest square-32 ()\n (should (equal 2147483648\n (square 32))))\n\n(ert-deftest square-64 ()\n (should (equal 9223372036854775808\n (square 64))))\n\n(ert-deftest total-grains ()\n (should (equal 18446744073709551615\n (total))))\n\n(provide 'grains-test.el)\n;;; grains-test.el ends here.\n","new_contents":";;; grains-test.el --- Test for Grains (exercism)\n\n;;; Commentary:\n\n;;; Code:\n\n(load-file \"grains.el\")\n\n(ert-deftest square-1 ()\n (should (= 1 (square 1))))\n\n(ert-deftest square-2 ()\n (should (= 2 (square 2))))\n\n(ert-deftest square-3 ()\n (should (= 4 (square 3))))\n\n(ert-deftest square-4 ()\n (should (= 8 (square 4))))\n\n(ert-deftest square-16 ()\n (should (= 32768\n (square 16))))\n\n(ert-deftest square-32 ()\n (should (= 2147483648\n (square 32))))\n\n(ert-deftest square-64 ()\n (should (= 9223372036854775808\n (square 64))))\n\n(ert-deftest total-grains ()\n (should (= 18446744073709551615\n (total))))\n\n(provide 'grains-test.el)\n;;; grains-test.el ends here.\n","subject":"Use = for comparing numbers","message":"Use = for comparing numbers\n","lang":"Emacs Lisp","license":"mit","repos":"exercism\/xelisp"} {"commit":"beccf8d8a051813fc0b7f2c04f3b3adc3c22bd29","old_file":"init-markdown.el","new_file":"init-markdown.el","old_contents":"(autoload 'markdown-mode \"markdown-mode\" \"Mode for editing Markdown documents\" t)\n(setq auto-mode-alist\n (cons '(\"\\\\.\\\\(md\\\\|markdown\\\\)\\\\'\" . markdown-mode) auto-mode-alist))\n\n(provide 'init-markdown)\n","new_contents":"(setq auto-mode-alist\n (cons '(\"\\\\.\\\\(md\\\\|markdown\\\\)\\\\'\" . markdown-mode) auto-mode-alist))\n\n(provide 'init-markdown)\n","subject":"Remove redundant autoload for markdown-mode","message":"Remove redundant autoload for markdown-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"boblannon\/emacs.d,baohaojun\/emacs.d,jachinpy\/emacs.d,qinshulei\/emacs.d,danfengcao\/emacs.d,blueseason\/emacs.d,jhpx\/emacs.d,qianwan\/emacs.d,atreeyang\/emacs.d,LKI\/emacs.d,cyjia\/emacs.d,mpwang\/emacs.d,emuio\/emacs.d,whizzzkid\/emacs.d,farzadbekran\/emacs.d,wegatron\/emacs.d,DarkThrone\/emacs.d,farzadbekran\/emacs.d,Jadecity\/PurcellEmacs.d,46do14\/emacs.d,braveoyster\/emacs.d,kongfy\/emacs.d,zhuoyikang\/emacs.d,lujianmei\/emacs.d,svenyurgensson\/emacs.d,ruiyang\/emacs.d,scorpionis\/emacs.d,jachinpy\/emacs.d,alant\/emacs.d,ilove0518\/emacs.d,sgarciac\/emacs.d,ernest-dzf\/emacs.d,zhaotai\/.emacs.d,LittleLmp\/emacs.d,Shanicky\/emacs.d,me020523\/emacs.d,haodaivshen\/emacs.d,lromang\/emacs.d,kindoblue\/emacs.d,exclamaforte\/emacs.d,caoyuanqi\/emacs.d,Togal\/emacs.d,dhanunjaya\/emacs.d,dcorking\/emacs.d,Werewolflsp\/emacs.d,farzadbekran\/emacs.d,wenpincui\/emacs.d,purcell\/emacs.d,krzysz00\/emacs.d,modkzs\/emcs.d,cjqw\/emacs.d,zenith-john\/emacs.d,pairyo\/emacs.d,Guoozz\/emacs.d,dongdonghu\/.emacs.d,blueabysm\/emacs.d,farzadbekran\/emacs.d,hkcqr\/emacs.d,bibaijin\/emacs.d,shafayetkhan\/emacs.d,carlosliu\/emacs.d,ruiyang\/emacs.d,Enzo-Liu\/emacs.d,gsmlg\/emacs.d,mmqmzk\/emacs.d,benkha\/emacs.d,lust4life\/emacs.d,roxolan\/emacs.d,hophacker\/emacs.d,fengxl\/emacs.d,jthetzel\/emacs.d,arthurl\/emacs.d,renatoriccio\/emacs.d,jkaessens\/emacs.d,farzadbekran\/emacs.d"} {"commit":"9604f3c6544e80ec7c1df501b3f579c61478745f","old_file":"doom_emacs\/packages.el","new_file":"doom_emacs\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; ~\/.doom.d\/packages.el\n\n;;; Examples:\n;; (package! some-package)\n;; (package! another-package :recipe (:fetcher github :repo \"username\/repo\"))\n;; (package! builtin-package :disable t)\n\n(package! gruvbox-theme)\n\n\n(package! eglot)\n;; (package! lsp-mode)\n;; (package! lsp-ui)\n;; (package! company-lsp)\n(package! yasnippet-snippets)\n\n(package! evil-snipe :disable t)\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; ~\/.doom.d\/packages.el\n\n;;; Examples:\n;; (package! some-package)\n;; (package! another-package :recipe (:fetcher github :repo \"username\/repo\"))\n;; (package! builtin-package :disable t)\n\n(package! gruvbox-theme)\n(package! base16-theme)\n\n(package! eglot)\n;; (package! lsp-mode)\n;; (package! lsp-ui)\n;; (package! company-lsp)\n(package! yasnippet-snippets)\n\n(package! evil-snipe :disable t)\n","subject":"Add base16 themes to emacs","message":"Add base16 themes to emacs\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"c3b0214f80b03b27d94d373f9f08c2e177d16d9b","old_file":"setup-files\/setup-smart-compile.el","new_file":"setup-files\/setup-smart-compile.el","old_contents":";; Time-stamp: <2016-05-19 22:15:18 kmodi>\n\n;; Smart Compile\n\n(use-package smart-compile\n :defer t\n :config\n (progn\n ;; http:\/\/stackoverflow.com\/a\/15724162\/1219634\n (defun do-execute (exe)\n (with-current-buffer \"*eshell*\"\n (goto-char (point-max))\n (insert exe)\n (eshell-send-input))\n (switch-to-buffer-other-window \"*eshell*\")\n (end-of-buffer))\n\n (defun save-compile-execute ()\n (interactive)\n (lexical-let ((exe (smart-compile-string \".\/%n\"))\n finish-callback)\n ;; When compilation is done, execute the program and remove the\n ;; callback from `compilation-finish-functions'\n (setq finish-callback\n (lambda (buf msg)\n (do-execute exe)\n (setq compilation-finish-functions\n (delq finish-callback compilation-finish-functions))))\n (push finish-callback compilation-finish-functions))\n (smart-compile 1))))\n\n\n(provide 'setup-smart-compile)\n","new_contents":";; Time-stamp: <2016-12-04 12:33:25 kmodi>\n\n;; Smart Compile\n\n(use-package smart-compile\n :commands (modi\/save-compile-execute)\n :init\n (progn\n (bind-keys\n :map modi-mode-map\n :filter (not (or (derived-mode-p 'emacs-lisp-mode)\n (derived-mode-p 'verilog-mode)))\n (\"\" . modi\/save-compile-execute)))\n :config\n (progn\n ;; Always use C99 standard for compilation\n (setcdr (assoc \"\\\\.c\\\\'\" smart-compile-alist) \"gcc -O2 %f -lm -o %n -std=gnu99\")\n\n ;; http:\/\/stackoverflow.com\/a\/15724162\/1219634\n (defun modi\/do-execute (exe)\n \"Run EXE in eshell.\"\n (eshell) ; Start eshell or switch to an existing eshell session\n (goto-char (point-max))\n (insert exe)\n (eshell-send-input))\n\n (defun modi\/save-compile-execute ()\n \"Save, compile and execute\"\n (interactive)\n (lexical-let ((code-buf (buffer-name))\n (exe (smart-compile-string \".\/%n\"))\n finish-callback)\n (setq finish-callback\n (lambda (buf msg)\n ;; Bury the compilation buffer\n (with-selected-window (get-buffer-window \"*compilation*\")\n (bury-buffer))\n (modi\/do-execute exe)\n ;; When compilation is done, execute the program and remove the\n ;; callback from `compilation-finish-functions'\n (setq compilation-finish-functions\n (delq finish-callback compilation-finish-functions))))\n (push finish-callback compilation-finish-functions))\n (smart-compile 1))))\n\n\n(provide 'setup-smart-compile)\n","subject":"Update how C code is compiled using `smart-compile`","message":"Update how C code is compiled using `smart-compile`\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"3bc92965321f4664e5ab79516e65aec23bb7f9b9","old_file":"emacs.d\/pmade-local.el","new_file":"emacs.d\/pmade-local.el","old_contents":";;; Local settings based on host name\n\n(defun pmade-local-settings ()\n (cond\n ((string= \"skinny.local\" system-name) (pmade-local:skinny))\n ((string= \"beefy.local\" system-name) (pmade-local:beefy))))\n\n(defun pmade-local:skinny ()\n \"Settings for my MacBook Pro\"\n (set-frame-position (selected-frame) 674 22)\n (set-frame-size (selected-frame) 106 56))\n\n(defun pmade-local:beefy ()\n \"Settings for my Mac Pro\")\n\n;; These settings only take affect if we're running the GUI.\n(if window-system\n (add-hook 'window-setup-hook 'pmade-local-settings t))\n","new_contents":";;; Local settings based on host name\n;; \n;; Some helpful functions:\n;; \n;; (frame-parameter (selected-frame) 'top)\n;; (frame-parameter (selected-frame) 'left)\n\n(defun pmade-local-settings ()\n (cond\n ((string= \"skinny.local\" system-name) (pmade-local:skinny))\n ((string= \"beefy.local\" system-name) (pmade-local:beefy))))\n\n(defun pmade-local:skinny ()\n \"Settings for my MacBook Pro\"\n (set-frame-position (selected-frame) 674 22)\n (set-frame-size (selected-frame) 106 56))\n\n(defun pmade-local:beefy ()\n \"Settings for my Mac Pro\"\n (set-frame-position (selected-frame) 874 38)\n (set-frame-size (selected-frame) 126 75))\n\n;; These settings only take affect if we're running the GUI.\n(if window-system\n (add-hook 'window-setup-hook 'pmade-local-settings t))\n","subject":"Configure Emacs windows for my desktop computer","message":"Configure Emacs windows for my desktop computer\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"a2f66901e0d2bf4cf5c51f2178ee84c0b6a4aadf","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":";;; Directory Local Variables\n;;; See Info node `(emacs) Directory Variables' for more information.\n\n((emacs-lisp-mode\n (sentence-end-double-space . t)\n (eval flycheck-mode)\n (eval checkdoc-minor-mode)))\n\n;; Local Variables:\n;; mode: fundamental\n;; End:\n","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((emacs-lisp-mode\n (colon-double-space . t)\n (sentence-end-double-space . t)\n (eval flycheck-mode)\n (eval checkdoc-minor-mode)))\n\n\n\n;; Local Variables:\n;; mode: fundamental\n;; End:\n","subject":"Make sure sentences in comments end with 2 spaces","message":"Make sure sentences in comments end with 2 spaces\n","lang":"Emacs Lisp","license":"mit","repos":"emacsmirror\/pillar"} {"commit":"70ec4f6768d52c9003bc6688ac2178a95fca3b68","old_file":"elisp\/setup-ui.el","new_file":"elisp\/setup-ui.el","old_contents":";; get rid of everything other than the title at the top.\n(menu-bar-mode -1)\n(tool-bar-mode -1)\n(scroll-bar-mode -1)\n\n;; get rid of the annoying GNU Emacs buffer\n(setq inhibit-startup-screen t)\n\n;; load the latest theme.\n(load-theme 'avk-darkblue-white t)\n\n(use-package spaceline\n :ensure t\n :demand\n :config\n (require 'spaceline-config)\n (spaceline-spacemacs-theme))\n\n;; been using frames lately, so let's make a keybinding for that\n(global-set-key (kbd \"C-c F\") 'make-frame)\n\n;; no DING!\n(setq visible-bell 1)\n\n\n(provide 'setup-ui)\n;;; setup-ui.el ends here\n","new_contents":";; get rid of everything other than the title at the top.\n(menu-bar-mode -1)\n(tool-bar-mode -1)\n(scroll-bar-mode -1)\n\n;; get rid of the annoying GNU Emacs buffer\n(setq inhibit-startup-screen t)\n\n;; load the latest theme.\n(load-theme 'avk-darkblue-white t)\n\n(use-package spaceline\n :ensure t\n :demand\n :config\n (require 'spaceline-config)\n (spaceline-spacemacs-theme))\n\n;; Frame commands\n(global-set-key (kbd \"C-c F\") 'make-frame)\n(global-set-key (kbd \"C-c K\") 'delete-frame)\n\n\n;; no DING!\n(setq visible-bell 1)\n\n\n(provide 'setup-ui)\n;;; setup-ui.el ends here\n","subject":"Add delete frame key binding","message":"Add delete frame key binding\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"f5125cae038c8fc93cb9949a77cbd07321ac50e9","old_file":"modules\/my-git.el","new_file":"modules\/my-git.el","old_contents":";;; my-git.el --- Git settings -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(use-package magit\n :config\n (setq vc-handled-backends (delq 'Git vc-handled-backends))\n :bind\n (\"C-x g\" . magit-status))\n\n(provide 'my-git)\n\n;;; my-git.el ends here\n\n","new_contents":";;; my-git.el --- Git settings -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(use-package magit\n :config\n (setq vc-handled-backends (delq 'Git vc-handled-backends))\n :bind\n (\"C-x g\" . magit-status))\n\n;; full screen magit-status\n;; from http:\/\/whattheemacsd.com\/setup-magit.el-01.html\n\n(defadvice magit-status (around magit-fullscreen activate)\n \"Open magit status as a fullscreen buffer.\"\n (window-configuration-to-register :magit-fullscreen)\n ad-do-it\n (delete-other-windows))\n\n(defun magit-quit-session ()\n \"Restore the previous window configuration and kill the magit buffer.\"\n (interactive)\n (kill-buffer)\n (jump-to-register :magit-fullscreen))\n\n(define-key magit-status-mode-map (kbd \"q\") 'magit-quit-session)\n\n(provide 'my-git)\n\n;;; my-git.el ends here\n\n","subject":"Make magit buffer fullscreen to minimise window-jumping","message":"Make magit buffer fullscreen to minimise window-jumping\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"timanin\/emacs.d"} {"commit":"b03ee173233598897167304ad1c51339eb0a6f1a","old_file":"layers\/my-cpp\/config.el","new_file":"layers\/my-cpp\/config.el","old_contents":";; -*- lexical-binding: t -*-\n\n(defvar lsp-ccls-library-directories '(\"\/usr\/include\/\" \"\/usr\/local\/include\/\")\n \"List of directories which will considered to be libraries.\")\n\n;; Use `c++-mode' for Qt4\/5 headers. These mode can not be chosen based on file\n;; extension, because these files have no extension.\n(add-to-list 'auto-mode-alist '(\"\/qt[45]\/Q[^\/]+\/Q[^\/]+\\\\'\" . c++-mode))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defvar lsp-ccls-library-directories '(\"\/usr\/include\/\" \"\/usr\/local\/include\/\")\n \"List of directories which will considered to be libraries.\")\n\n;; Use `c++-mode' for Qt4\/5 headers. These mode can not be chosen based on file\n;; extension, because these files have no extension.\n(add-to-list 'auto-mode-alist '(\"\/qt[45]\/Q[^\/]+\/Q[^\/]+\\\\'\" . c++-mode))\n\n;; Auto-indent after paste in C++ makes life very difficult.\n(add-to-list 'spacemacs-indent-sensitive-modes 'c++-mode)\n","subject":"Disable auto-indent after paste in C++ mode","message":"Disable auto-indent after paste in C++ mode\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"6125bd9717201eb3d595677dad6c3ee667d92c69","old_file":"custom\/64-async.el","new_file":"custom\/64-async.el","old_contents":";; Compile packages in the background.\n(async-bytecomp-package-mode 1)\n","new_contents":";; Compile packages in the background.\n(async-bytecomp-package-mode 1)\n\n;; Allow copying in the background.\n(autoload 'dired-async-mode \"dired-async.el\" nil t)\n(dired-async-mode 1)\n","subject":"Add async abilities to dired","message":"Add async abilities to dired\n\nThis means that you can now copy\/move large files around and emacs will\ndo it in the background!\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"e85b2dbead20a8b75da510684e7ef98844f5aa60","old_file":"lisp\/packages.el","new_file":"lisp\/packages.el","old_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"org\" . \"http:\/\/orgmode.org\/elpa\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\")\n (\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '(magit ruby-end inf-ruby htmlize yaml-mode bm gist\n haskell-mode ace-window markdown-mode org bbdb nix-mode\n nodejs-repl hydra flycheck dictionary multicolumn)\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive t))\n\n;; Prepare package management\n(package-initialize)\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p))))\n","new_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"org\" . \"http:\/\/orgmode.org\/elpa\/\")\n (\"melpa\" . \"http:\/\/melpa.org\/packages\/\")\n (\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '( ace-window\n bbdb\n bm\n dictionary\n flycheck\n gist\n haskell-mode\n htmlize\n http\n hydra\n inf-ruby\n magit\n markdown-mode\n nix-mode\n nodejs-repl\n org\n ruby-end\n yaml-mode )\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive t))\n\n;; Prepare package management\n(package-initialize)\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p))))\n","subject":"Clean up the Emacs package list","message":"Clean up the Emacs package list\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"10de04c880c9e0c04a8f3eed9000dccc5f022724","old_file":"home\/.emacs.d\/lisp\/init-projectile.el","new_file":"home\/.emacs.d\/lisp\/init-projectile.el","old_contents":";;; init-projectile.el -- projetile setup\n\n;;; Commentary:\n;;; load projectile and customizations\n\n;;; Code:\n(use-package projectile\n :config\n (projectile-global-mode 1)\n (define-key projectile-mode-map (kbd \"C-c p R\") 'my\/projectile-regenerate-tags)\n (key-seq-define evil-normal-state-map \",t\" 'projectile-swith-project-or-find-file)\n :diminish projectile-mode)\n\n(defun my\/projectile-regenerate-tags ()\n \"Regenerate projectile tags using git ctags.\"\n (interactive)\n (progn\n (start-process-shell-command\n \"tags\" nil (format \"cd %s; git ctags\"\n (projectile-project-root)))\n (message \"Generating tags file\")))\n\n(defun projectile-swith-project-or-find-file ()\n \"Find a file in current (if any) or all projectile projects.\"\n (interactive)\n (if (projectile-project-p)\n (helm-projectile-find-file)\n (helm-projectile-switch-project)))\n\n(provide 'init-projectile)\n;;; init-projectile.el ends here\n","new_contents":";;; init-projectile.el -- projetile setup\n\n;;; Commentary:\n;;; load projectile and customizations\n\n;;; Code:\n(use-package projectile\n :config\n (projectile-global-mode 1)\n (define-key projectile-mode-map (kbd \"C-c p R\") 'my\/projectile-regenerate-tags)\n (key-seq-define evil-normal-state-map \",t\" 'helm-projectile)\n :diminish projectile-mode)\n\n(defun my\/projectile-regenerate-tags ()\n \"Regenerate projectile tags using git ctags.\"\n (interactive)\n (progn\n (start-process-shell-command\n \"tags\" nil (format \"cd %s; git ctags\"\n (projectile-project-root)))\n (message \"Generating tags file\")))\n\n(provide 'init-projectile)\n;;; init-projectile.el ends here\n","subject":"Change ,t binding to 'helm-projectile","message":"Change ,t binding to 'helm-projectile\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"41f48f887734dfe66610492dff8082f91e50c94b","old_file":"Packages\/settings\/shortcut-file.el","new_file":"Packages\/settings\/shortcut-file.el","old_contents":"(defhydra hydra-file-shortcuts (:color teal\n :columns 4)\n \"files\"\n (\"s\" (switch-to-buffer \"*scratch*\") \"scratch\" :exit t)\n (\"e\" (find-file \"~\/Library\/Preferences\/Aquamacs Emacs\/Preferences.el\") \".emacs\" :exit t)\n (\"b\" (find-file \"~\/.bashrc\") \"bashrc\" :exit t)\n (\"D\" (find-file \"\/d\") \"\/d\" :exit t)\n (\"q\" nil \"quit\" :color blue))\n(global-set-key (kbd \"A-\/\") 'hydra-file-shortcuts\/body)\n\n(provide 'shortcut-file)\n","new_contents":"(defhydra hydra-file-shortcuts (:color teal\n :columns 4)\n \"files\"\n (\"s\" (switch-to-buffer \"*scratch*\") \"scratch\" :exit t)\n (\"e\" (find-file \"~\/Library\/Preferences\/Aquamacs Emacs\/Preferences.el\") \".emacs\" :exit t)\n (\"b\" (find-file \"~\/.bashrc\") \"bashrc\" :exit t)\n (\"c\" (find-file \"~\/.ssh\/config\") \"SSH Config\" :exit t)\n (\"D\" (find-file \"\/d\") \"\/d\" :exit t)\n (\"q\" nil \"quit\" :color blue))\n(global-set-key (kbd \"A-\/\") 'hydra-file-shortcuts\/body)\n\n(provide 'shortcut-file)\n","subject":"Add SSH config file shortcut","message":"Add SSH config file shortcut\n","lang":"Emacs Lisp","license":"mit","repos":"hsienchiaolee\/aquamacs"} {"commit":"cef2208a44ca8c3fe86ccd9555059fdc55f4a559","old_file":"elpa-list.el","new_file":"elpa-list.el","old_contents":"(setq package-selected-packages\n '(ace-jump-mode\n auto-complete\n auto-indent-mode\n diminish\n dired-details\n dropdown-list\n edit-server\n edit-server-htmlize\n edts\n erlang\n exec-path-from-shell\n fill-column-indicator\n flx-ido\n flycheck\n gitconfig-mode\n gitignore-mode\n god-mode\n haskell-mode\n ido-vertical-mode\n js2-mode\n ledger-mode\n magit\n markdown-mode\n paredit\n projectile\n rainbow-mode\n smex\n solarized-theme\n undo-tree\n use-package\n yaml-mode\n yasnippet))\n","new_contents":"(setq package-selected-packages\n '(ace-jump-mode\n auto-complete\n auto-indent-mode\n diminish\n dired-details\n dropdown-list\n edit-server\n edit-server-htmlize\n edts\n erlang\n exec-path-from-shell\n fill-column-indicator\n flx-ido\n flycheck\n gitconfig-mode\n gitignore-mode\n god-mode\n haskell-mode\n ido-vertical-mode\n js2-mode\n ledger-mode\n magit\n markdown-mode\n multiple-cursors\n paredit\n projectile\n rainbow-mode\n smex\n solarized-theme\n undo-tree\n use-package\n yaml-mode\n yasnippet))\n","subject":"Add back accidentally removed multiple-cursors","message":"Add back accidentally removed multiple-cursors\n","lang":"Emacs Lisp","license":"mit","repos":"jaseemabid\/emacs.d"} {"commit":"5dbee348dad525a9e3590b0a7e18a9ae905c8dc0","old_file":"lisp\/init-rails.el","new_file":"lisp\/init-rails.el","old_contents":"(require-package 'rinari)\n(after-load 'rinari\n (diminish 'rinari-minor-mode \"Rin\"))\n(global-rinari-mode)\n\n(require-package 'haml-mode)\n\n(defun update-rails-ctags ()\n (interactive)\n (let ((default-directory (or (rinari-root) default-directory)))\n (shell-command (concat \"ctags -a -e -f \" rinari-tags-file-name \" --tag-relative -R app lib vendor test\"))))\n\n\n(provide 'init-rails)\n","new_contents":"(require-package 'rinari)\n(after-load 'rinari\n (diminish 'rinari-minor-mode \"Rin\"))\n(global-rinari-mode)\n\n(defun update-rails-ctags ()\n (interactive)\n (let ((default-directory (or (rinari-root) default-directory)))\n (shell-command (concat \"ctags -a -e -f \" rinari-tags-file-name \" --tag-relative -R app lib vendor test\"))))\n\n\n(provide 'init-rails)\n","subject":"Remove duplicated requirement of haml-mode","message":"Remove duplicated requirement of haml-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"danfengcao\/emacs.d,Shanicky\/emacs.d,gsmlg\/emacs.d,jachinpy\/emacs.d,Jadecity\/PurcellEmacs.d,DarkThrone\/emacs.d,farzadbekran\/emacs.d,ernest-dzf\/emacs.d,46do14\/emacs.d,scorpionis\/emacs.d,lust4life\/emacs.d,zhuoyikang\/emacs.d,modkzs\/emcs.d,baohaojun\/emacs.d,LittleLmp\/emacs.d,dcorking\/emacs.d,bibaijin\/emacs.d,pairyo\/emacs.d,Togal\/emacs.d,dongdonghu\/.emacs.d,cjqw\/emacs.d,zhaotai\/.emacs.d,LKI\/emacs.d,kongfy\/emacs.d,renatoriccio\/emacs.d,zenith-john\/emacs.d,alant\/emacs.d,atreeyang\/emacs.d,qianwan\/emacs.d,mpwang\/emacs.d,purcell\/emacs.d,jhpx\/emacs.d,whizzzkid\/emacs.d,qinshulei\/emacs.d,lujianmei\/emacs.d,haodaivshen\/emacs.d,boblannon\/emacs.d,hophacker\/emacs.d,benkha\/emacs.d,Enzo-Liu\/emacs.d,Guoozz\/emacs.d,kindoblue\/emacs.d,fengxl\/emacs.d,Werewolflsp\/emacs.d,farzadbekran\/emacs.d,me020523\/emacs.d,farzadbekran\/emacs.d,krzysz00\/emacs.d,mmqmzk\/emacs.d,wegatron\/emacs.d,braveoyster\/emacs.d,wenpincui\/emacs.d,carlosliu\/emacs.d,jthetzel\/emacs.d,ruiyang\/emacs.d,ilove0518\/emacs.d,hkcqr\/emacs.d,caoyuanqi\/emacs.d,ruiyang\/emacs.d,arthurl\/emacs.d,shafayetkhan\/emacs.d,svenyurgensson\/emacs.d,exclamaforte\/emacs.d,roxolan\/emacs.d,jachinpy\/emacs.d,cyjia\/emacs.d,lromang\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,emuio\/emacs.d,blueseason\/emacs.d,dhanunjaya\/emacs.d,jkaessens\/emacs.d,blueabysm\/emacs.d,sgarciac\/emacs.d"} {"commit":"3c4cf68901d09f9593494a28556cd485fa4bcccb","old_file":".config\/emacs\/remaps.el","new_file":".config\/emacs\/remaps.el","old_contents":";; multiple selection\n(global-set-key (kbd \"M-n\") 'mc\/mark-next-like-this)\n(global-set-key (kbd \"M-p\") 'mc\/mark-previous-like-this)\n\n;; move lines\n(global-set-key (kbd \"M-S-\") 'drag-stuff-up)\n(global-set-key (kbd \"M-S-\") 'drag-stuff-down)\n\n;; move between windows\n(global-set-key (kbd \"M-\") 'windmove-left)\n(global-set-key (kbd \"M-\") 'windmove-right)\n(global-set-key (kbd \"M-\") 'windmove-up)\n(global-set-key (kbd \"M-\") 'windmove-down)\n\n;; comment line or region\n(global-set-key (kbd \"s-\/\") 'comment-line)\n\n;; project structure\n(global-set-key [f8] 'neotree-toggle)\n","new_contents":";; multiple selection\n(global-set-key (kbd \"M-n\") 'mc\/mark-next-like-this)\n(global-set-key (kbd \"M-p\") 'mc\/mark-previous-like-this)\n\n;; move lines\n(global-set-key (kbd \"M-S-\") 'drag-stuff-up)\n(global-set-key (kbd \"M-S-\") 'drag-stuff-down)\n\n;; move between windows\n(global-set-key (kbd \"M-\") 'windmove-left)\n(global-set-key (kbd \"M-\") 'windmove-right)\n(global-set-key (kbd \"M-\") 'windmove-up)\n(global-set-key (kbd \"M-\") 'windmove-down)\n\n;; comment line or region\n(global-set-key (kbd \"s-\/\") 'comment-line)\n\n;; project structure\n(global-set-key [f3] 'neotree-toggle)\n","subject":"Use F3 to open neotree","message":"Use F3 to open neotree\n","lang":"Emacs Lisp","license":"mit","repos":"spapanik\/configuration,spapanik\/configuration"} {"commit":"335e938c97a53487bbb285f29de79d1a4e6d6ebc","old_file":"emacs\/emacs.d\/my-helm.el","new_file":"emacs\/emacs.d\/my-helm.el","old_contents":"(require 'helm-config)\n(helm-mode 1)\n\n(define-key helm-map (kbd \"\") 'previous-history-element)\n(define-key helm-map (kbd \"\") 'next-history-element)\n\n(setq helm-ff-skip-boring-files t)\n;; TODO: these don't work. Looks like having the '.' and '..' on top\n;; of the list is by design.\n(push \"\\\\.\\\\.$\" helm-boring-file-regexp-list)\n(push \"\\\\.$\" helm-boring-file-regexp-list)\n","new_contents":"(require 'helm-config)\n(helm-mode 1)\n\n(setq helm-ff-skip-boring-files t)\n;; TODO: these don't work. Looks like having the '.' and '..' on top\n;; of the list is by design.\n(push \"\\\\.\\\\.$\" helm-boring-file-regexp-list)\n(push \"\\\\.$\" helm-boring-file-regexp-list)\n","subject":"Use and for element selection.","message":"Use and for element selection.\n\nThat is the standard binding for Helm.\n","lang":"Emacs Lisp","license":"mit","repos":"sri\/dotfiles,sri\/dotfiles,sri\/dotfiles"} {"commit":"9b931466059884143e14d1dac8c626205abe3f7b","old_file":"hw\/dv\/tools\/vcs\/common_cov_excl.el","new_file":"hw\/dv\/tools\/vcs\/common_cov_excl.el","old_contents":"\/\/ Copyright lowRISC contributors.\n\/\/ Licensed under the Apache License, Version 2.0, see LICENSE for details.\n\/\/ SPDX-License-Identifier: Apache-2.0\n\n\/\/ Exclude below TL toggle coverage as these pins won't be changed in the comportable IPs\nINSTANCE: tb.dut\nToggle tl_i.a_user.parity \"logic tl_i.a_user.parity[7:0]\"\nToggle tl_i.a_user.parity_en \"logic tl_i.a_user.parity_en\"\nToggle tl_i.a_user.rsvd1 \"logic tl_i.a_user.rsvd1[6:0]\"\nToggle tl_o.d_opcode [1] \"logic tl_o.d_opcode[2:0]\"\nToggle tl_o.d_opcode [2] \"logic tl_o.d_opcode[2:0]\"\nToggle tl_o.d_param \"logic tl_o.d_param[2:0]\"\nToggle tl_o.d_sink \"logic tl_o.d_sink[0:0]\"\nToggle tl_o.d_user \"logic tl_o.d_user[15:0]\"\nToggle tl_i.a_param \"logic tl_i.a_param[2:0]\"\n","new_contents":"\/\/ Copyright lowRISC contributors.\n\/\/ Licensed under the Apache License, Version 2.0, see LICENSE for details.\n\/\/ SPDX-License-Identifier: Apache-2.0\n\n\/\/ Exclude below TL toggle coverage as these pins won't be changed in the comportable IPs\nINSTANCE: tb.dut\nToggle tl_o.d_opcode [1] \"logic tl_o.d_opcode[2:0]\"\nToggle tl_o.d_opcode [2] \"logic tl_o.d_opcode[2:0]\"\nToggle tl_o.d_param \"logic tl_o.d_param[2:0]\"\nToggle tl_o.d_sink \"logic tl_o.d_sink[0:0]\"\nToggle tl_i.a_param \"logic tl_i.a_param[2:0]\"\n","subject":"Remove toggle coverage excl for a_user\/d_user","message":"[dv] Remove toggle coverage excl for a_user\/d_user\n\nthese 2 fields should be fully verified\n\nSigned-off-by: Weicai Yang <4fa8c7762ee4da95e3dee7dae2c3263ea16637f9@google.com>\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"lowRISC\/opentitan,lowRISC\/opentitan,lowRISC\/opentitan,lowRISC\/opentitan,lowRISC\/opentitan,lowRISC\/opentitan"} {"commit":"aeb86230f6956836542ded2ad4f3181bb549db20","old_file":"layers\/documents\/json\/json-init.el","new_file":"layers\/documents\/json\/json-init.el","old_contents":";; Json mode\n(use-package json-mode\n :ensure t\n :mode (\"\\\\.json\\\\'\" . json-mode)\n :init\n (require 'programming-init)\n (use-package json-snatcher\n :ensure t)\n (add-hook 'json-mode-hook\n (lambda ()\n (make-local-variable 'js-indent-level)\n (setq js-indent-level 2)))\n\n (defun js-mode-bindings ()\n \"Sets a hotkey for using the json-snatcher plugin\"\n (when (string-match \"\\\\.json$\" (buffer-name))\n (local-set-key (kbd \"C-c C-g\") 'jsons-print-path)))\n (add-hook 'json-mode-hook 'smartparens-mode)\n (add-hook 'json-mode-hook 'js-mode-bindings))\n(provide 'json-init)\n","new_contents":";; Json mode\n(use-package json-mode\n :ensure t\n :mode (\"\\\\.json\\\\'\" . json-mode)\n :init\n (require 'programming-init)\n (use-package json-snatcher\n :ensure t)\n (add-hook 'json-mode-hook\n (lambda ()\n (make-local-variable 'js-indent-level)\n (setq js-indent-level 4)))\n\n (defun js-mode-bindings ()\n \"Sets a hotkey for using the json-snatcher plugin\"\n (when (string-match \"\\\\.json$\" (buffer-name))\n (local-set-key (kbd \"C-c C-g\") 'jsons-print-path)))\n (add-hook 'json-mode-hook 'smartparens-mode)\n (add-hook 'json-mode-hook 'js-mode-bindings))\n(provide 'json-init)\n","subject":"Change indent level on json to 4","message":"Change indent level on json to 4\n","lang":"Emacs Lisp","license":"mit","repos":"timotheosh\/dotemacs"} {"commit":"dc4393f83074b563d953874be18939cda4df107d","old_file":"Packages\/settings\/setup-theme.el","new_file":"Packages\/settings\/setup-theme.el","old_contents":"(use-package zenburn-theme\n :ensure t\n :config\n (setq default-frame-alist nil)\n (load-theme 'zenburn t))\n\n(provide 'setup-theme)\n","new_contents":"(use-package spacemacs-theme\n :defer t\n :init\n (setq default-frame-alist nil)\n (load-theme 'spacemacs-dark t)\n )\n\n(use-package spaceline\n :defer t\n :init\n (setq powerline-default-separator 'arrow-fade)\n )\n\n(use-package spaceline-config\n :demand t\n :ensure spaceline\n :config\n (spaceline-define-segment line-column\n \"The current line and column numbers.\"\n \"l:%l c:%2c\")\n (spaceline-helm-mode 1)\n (spaceline-spacemacs-theme)\n )\n\n(provide 'setup-theme)\n","subject":"Update theme from Zenburn to spacemacs theme","message":"Update theme from Zenburn to spacemacs theme\n","lang":"Emacs Lisp","license":"mit","repos":"hsienchiaolee\/aquamacs"} {"commit":"c7011c34ae19d2bacd9a9425c0ffea39807f62b1","old_file":"init-haskell.el","new_file":"init-haskell.el","old_contents":"(require-package 'haskell-mode)\n\n(dolist (hook '(haskell-mode-hook inferior-haskell-mode-hook))\n (add-hook hook 'turn-on-haskell-doc-mode))\n\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)\n\n(eval-after-load 'haskell-mode\n '(progn\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (define-key haskell-mode-map (kbd \"RET\") 'newline)))\n\n(require-package 'ghci-completion)\n(add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion)\n\n(require-package 'flymake-haskell-multi)\n(add-hook 'haskell-mode-hook #'flymake-haskell-multi-load)\n\n(provide 'init-haskell)\n","new_contents":"(require-package 'haskell-mode)\n\n(dolist (hook '(haskell-mode-hook inferior-haskell-mode-hook))\n (add-hook hook 'turn-on-haskell-doc-mode))\n\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)\n\n(eval-after-load 'haskell-mode\n '(progn\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (define-key haskell-mode-map (kbd \"RET\") 'newline)))\n\n(require-package 'ghci-completion)\n(add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion)\n\n(require-package 'flymake-haskell-multi)\n(add-hook 'haskell-mode-hook #'flymake-haskell-multi-load)\n\n;; Make compilation-mode understand \"at blah.hs:11:34-50\" lines output by GHC\n(add-to-list\n 'compilation-error-regexp-alist-alist\n '(ghc-at-regexp \" at \\\\(.*l?hs\\\\):\\\\([0-9]+\\\\):\\\\([0-9]+\\\\)-[0-9]+$\" 1 2 3 0 1))\n\n(provide 'init-haskell)\n","subject":"Make compilation-mode understand \"at blah.hs\" lines output by GHC","message":"Make compilation-mode understand \"at blah.hs\" lines output by GHC\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"18952625cc4b909c49f455b166f30233425a2b59","old_file":"layers\/+emacs\/better-defaults\/keybindings.el","new_file":"layers\/+emacs\/better-defaults\/keybindings.el","old_contents":";;; funcs.el --- Better Emacs Defaults Layer key bindings File\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(global-set-key (kbd \"C-w\") 'spacemacs\/backward-kill-word-or-region)\n","new_contents":";;; keybindings.el --- Better Emacs Defaults Layer key bindings File\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(global-set-key (kbd \"C-w\") 'spacemacs\/backward-kill-word-or-region)\n","subject":"Fix wrong filename in a layer file’s header comment","message":"Fix wrong filename in a layer file’s header comment\n\nthe header of `keybindings.el` in the `better-defaults` layer\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"3ebfa8bd6dafb4fef400f440de764c7c51cb50fb","old_file":"modules\/my-web.el","new_file":"modules\/my-web.el","old_contents":";;; my-web.el --- Web settings -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n;; Enable for the matching filenames\n;;\n(use-package web-mode\n :mode\n (\"\\\\.phtml\\\\'\" \"\\\\.djhtml\\\\'\" \"\\\\.html\\\\'\")\n ;; Marks the -*- engine: jinja -*- variable as safe\n :init\n (add-hook 'web-mode-hook\n (lambda ()\n (setq safe-local-variable-values\n '((engine . jinja)))))\n :config\n (setq web-mode-enable-engine-detection t)\n (setq web-mode-enable-auto-closing t)\n (setq web-mode-enable-auto-quoting t))\n\n(provide 'my-web)\n\n;;; my-web.el ends here\n","new_contents":";;; my-web.el --- Web settings -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n;; Enable for the matching filenames\n;;\n(use-package web-mode\n :mode\n (\"\\\\.phtml\\\\'\" \"\\\\.djhtml\\\\'\" \"\\\\.html\\\\'\")\n ;; Marks the -*- engine: jinja -*- variable as safe\n :init\n (add-hook 'web-mode-hook\n (lambda ()\n (setq safe-local-variable-values\n '((engine . jinja)))))\n :config\n (setq web-mode-enable-engine-detection t)\n (setq web-mode-enable-auto-closing t)\n (setq web-mode-enable-auto-quoting t)\n (setq web-mode-content-types-alist\n '((\"jsx\" . \"\\\\.js[x]?\\\\'\"))))\n\n(provide 'my-web)\n\n;;; my-web.el ends here\n","subject":"Enable react features in web-mode","message":"Enable react features in web-mode\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"timanin\/emacs.d"} {"commit":"861b767ffdfb422699a095dcfbe1eff0a85bbbb4","old_file":"elisp\/setup-evil.el","new_file":"elisp\/setup-evil.el","old_contents":";;; setup-evil.el --- Evil mode.\n;;; Commentary:\n;;; Code:\n\n(use-package evil-leader\n :demand t\n :ensure t\n :commands (global-evil-leader-mode))\n\n(use-package evil\n :commands (evil-mode evil-define-key)\n :ensure t\n :demand t\n :init\n (global-evil-leader-mode)\n :config\n (setq evil-leader\/no-prefix-mode-rx '(\"magit-.*-mode\" \"gnus-.*-mode\"))\n (evil-leader\/set-leader \"\")\n (evil-define-key 'normal global-map (kbd \"C-p\") 'counsel-projectile-find-file)\n (evil-leader\/set-key\n \"\" 'ivy-switch-buffer\n\n ;; buffers\n \"k\" 'kill-this-buffer\n \"w\" 'save-buffer\n \"br\" 'rename-buffer\n\n ;; rg\n \"a\" 'counsel-projectile-rg\n\n ;; projectile\n \"pp\" 'projectile-switch-project\n )\n (evil-mode 1))\n\n(provide 'setup-evil)\n;;; setup-evil.el ends here\n","new_contents":";;; setup-evil.el --- Evil mode.\n;;; Commentary:\n;;; Code:\n\n;; All evil variables that are going to be called by evil should go\n;; here since evil already is loaded when the evil-leader use-package\n;; sexp finishes interpreting\n(setq-default evil-want-C-u-scroll t)\n(setq-default evil-want-C-d-scroll t)\n(setq-default evil-search-module 'evil-search)\n\n(use-package evil-leader\n :demand t\n :ensure t\n :commands (global-evil-leader-mode))\n\n(use-package evil\n :commands (evil-mode evil-define-key)\n :ensure t\n :demand t\n :init\n (global-evil-leader-mode)\n :config\n (setq evil-leader\/no-prefix-mode-rx '(\"magit-.*-mode\" \"gnus-.*-mode\"))\n (evil-leader\/set-leader \"\")\n (evil-define-key 'normal global-map (kbd \"C-p\") 'counsel-projectile-find-file)\n (evil-leader\/set-key\n \"\" 'ivy-switch-buffer\n\n ;; buffers\n \"k\" 'kill-this-buffer\n \"w\" 'save-buffer\n \"br\" 'rename-buffer\n\n ;; rg\n \"a\" 'counsel-projectile-rg\n\n ;; Dired\n \"gj\" 'dired-jump\n\n ;; projectile\n \"pp\" 'projectile-switch-project\n )\n (evil-mode 1))\n\n(provide 'setup-evil)\n;;; setup-evil.el ends here\n","subject":"Fix evil C-d and C-u bindings and add dired jump leader key","message":"Fix evil C-d and C-u bindings and add dired jump leader key\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"7940db01b08862b34888ebe05aabedfac21784d9","old_file":"lisp\/init-themes.el","new_file":"lisp\/init-themes.el","old_contents":"(require-package 'color-theme-sanityinc-solarized)\n(require-package 'color-theme-sanityinc-tomorrow)\n\n;; If you don't customize it, this is the theme you get.\n(setq-default custom-enabled-themes '(sanityinc-solarized-light))\n\n;; Ensure that themes will be applied even if they have not been customized\n(defun reapply-themes ()\n \"Forcibly load the themes listed in `custom-enabled-themes'.\"\n (dolist (theme custom-enabled-themes)\n (unless (custom-theme-p theme)\n (load-theme theme)))\n (custom-set-variables `(custom-enabled-themes (quote ,custom-enabled-themes))))\n\n(add-hook 'after-init-hook 'reapply-themes)\n\n\n;;------------------------------------------------------------------------------\n;; Toggle between light and dark\n;;------------------------------------------------------------------------------\n(defun light ()\n \"Activate a light color theme.\"\n (interactive)\n (color-theme-sanityinc-solarized-light))\n\n(defun dark ()\n \"Activate a dark color theme.\"\n (interactive)\n (color-theme-sanityinc-solarized-dark))\n\n\n(provide 'init-themes)\n","new_contents":"(require-package 'color-theme-sanityinc-solarized)\n(require-package 'color-theme-sanityinc-tomorrow)\n\n;; If you don't customize it, this is the theme you get.\n(setq-default custom-enabled-themes '(sanityinc-tomorrow-bright))\n\n;; Ensure that themes will be applied even if they have not been customized\n(defun reapply-themes ()\n \"Forcibly load the themes listed in `custom-enabled-themes'.\"\n (dolist (theme custom-enabled-themes)\n (unless (custom-theme-p theme)\n (load-theme theme)))\n (custom-set-variables `(custom-enabled-themes (quote ,custom-enabled-themes))))\n\n(add-hook 'after-init-hook 'reapply-themes)\n\n\n;;------------------------------------------------------------------------------\n;; Toggle between light and dark\n;;------------------------------------------------------------------------------\n(defun light ()\n \"Activate a light color theme.\"\n (interactive)\n (setq custom-enabled-themes '(sanityinc-tomorrow-day))\n (reapply-themes))\n\n(defun dark ()\n \"Activate a dark color theme.\"\n (interactive)\n (setq custom-enabled-themes '(sanityinc-tomorrow-bright))\n (reapply-themes))\n\n\n(provide 'init-themes)\n","subject":"Change default theme to my preferred dark theme","message":"Change default theme to my preferred dark theme\n\nSee #424\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"kindoblue\/emacs.d,emuio\/emacs.d,dcorking\/emacs.d,braveoyster\/emacs.d,mmqmzk\/emacs.d,me020523\/emacs.d,sgarciac\/emacs.d,arthurl\/emacs.d,kongfy\/emacs.d,baohaojun\/emacs.d,blueseason\/emacs.d,gsmlg\/emacs.d,lust4life\/emacs.d,wegatron\/emacs.d,cjqw\/emacs.d,blueabysm\/emacs.d,benkha\/emacs.d,krzysz00\/emacs.d,qianwan\/emacs.d,roxolan\/emacs.d,purcell\/emacs.d,svenyurgensson\/emacs.d"} {"commit":"ee5d6b7feaef62db22f0be8ca9ad08b8588675bb","old_file":"modes\/magit-conf.el","new_file":"modes\/magit-conf.el","old_contents":";;; magit-conf.el -- Customizations for magit.\n(eval-when-compile\n (defvar magit-last-seen-setup-instructions)\n (setq magit-last-seen-setup-instructions \"1.4.0\")\n (require 'magit))\n\n;; Shamelessly stolen from http:\/\/whattheemacsd.com\/.\n(defadvice magit-status (around magit-fullscreen activate)\n (window-configuration-to-register :magit-fullscreen)\n ad-do-it\n (delete-other-windows))\n\n(defun pjones:magit-quit-session ()\n \"Restore the previous window configuration and kill the magit\nbuffer.\"\n (interactive)\n (kill-buffer)\n (jump-to-register :magit-fullscreen))\n\n(setq magit-push-always-verify nil)\n\n(define-key magit-status-mode-map (kbd \"q\") 'pjones:magit-quit-session)\n","new_contents":";;; magit-conf.el -- Customizations for magit.\n(eval-when-compile\n (defvar magit-last-seen-setup-instructions)\n (setq magit-last-seen-setup-instructions \"1.4.0\")\n (require 'magit))\n\n;; Shamelessly stolen from http:\/\/whattheemacsd.com\/.\n(defadvice magit-status (around magit-fullscreen activate)\n (window-configuration-to-register :magit-fullscreen)\n ad-do-it\n (delete-other-windows))\n\n(defun pjones:magit-quit-session ()\n \"Restore the previous window configuration and kill the magit\nbuffer.\"\n (interactive)\n (kill-buffer)\n (jump-to-register :magit-fullscreen))\n\n(define-key magit-status-mode-map (kbd \"q\") 'pjones:magit-quit-session)\n","subject":"Remove an older obsolete variable for magit","message":"Remove an older obsolete variable for magit\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"afc69598f71a6e6546ea4d60469e9b1281e2634f","old_file":".emacs.d\/custom.el","new_file":".emacs.d\/custom.el","old_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(package-selected-packages\n (quote\n (typo org-bullets markdown-mode writegood-mode visual-fill-column use-package paredit magit helm-projectile helm-ag exwm cider better-defaults)))\n '(safe-local-variable-values\n (quote\n ((whitespace-line-column)\n (eval ignore-errors\n (require\n (quote whitespace))\n (whitespace-mode 0)\n (whitespace-mode 1))\n (clojure-test-ns-segment-position . 1)))))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(exwm-layout-show-all-buffers t)\n '(exwm-workspace-show-all-buffers t)\n '(package-selected-packages\n (quote\n (typo org-bullets markdown-mode writegood-mode visual-fill-column use-package paredit magit helm-projectile helm-ag exwm cider better-defaults)))\n '(safe-local-variable-values\n (quote\n ((whitespace-line-column)\n (eval ignore-errors\n (require\n (quote whitespace))\n (whitespace-mode 0)\n (whitespace-mode 1))\n (clojure-test-ns-segment-position . 1)))))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Allow exwm to switch to any buffer in any workspace.","message":"Allow exwm to switch to any buffer in any workspace.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"pjstadig\/dotfiles,pjstadig\/dotfiles"} {"commit":"6fa75b69d0386a2c994041f99f0d7cfb824b991b","old_file":"test\/test-helper.el","new_file":"test\/test-helper.el","old_contents":";; test-helper.el --- Test helpers for cerbere\n\n;; Copyright (C) Nicolas Lamirault \n\n;; Copyright (C) 2014 Nicolas Lamirault\n\n;; This program is free software: you can redistribute it and\/or modify\n;; it under the terms of the GNU General Public License as published by\n;; the Free Software Foundation, either version 3 of the License, or\n;; (at your option) any later version.\n\n;; This program is distributed in the hope that it will be useful,\n;; but WITHOUT ANY WARRANTY; without even the implied warranty of\n;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n;; GNU General Public License for more details.\n\n;; You should have received a copy of the GNU General Public License\n;; along with this program. If not, see .\n\n;;; Commentary:\n\n;;; Code:\n\n(require 'f)\n\n(setq debugger-batch-max-lines (+ 50 max-lisp-eval-depth)\n debug-on-error t)\n\n\n(defconst cerbere-testsuite-dir (f-parent (f-this-file))\n \"The testsuite directory for Cerbere.\")\n\n(defconst cerbere-source-dir (f-parent cerbere-testsuite-dir)\n \"The cerbere source directory.\")\n\n(message \"Running tests on Emacs %s\" emacs-version)\n\n(message \"Load cerbere : %s\" cerbere-source-dir)\n(load (s-concat cerbere-source-dir \"\/cerbere.elc\"))\n\n;;; test-helper.el ends here\n","new_contents":";; test-helper.el --- Test helpers for cerbere\n\n;; Copyright (C) Nicolas Lamirault \n\n;; Copyright (C) 2014 Nicolas Lamirault\n\n;; This program is free software: you can redistribute it and\/or modify\n;; it under the terms of the GNU General Public License as published by\n;; the Free Software Foundation, either version 3 of the License, or\n;; (at your option) any later version.\n\n;; This program is distributed in the hope that it will be useful,\n;; but WITHOUT ANY WARRANTY; without even the implied warranty of\n;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n;; GNU General Public License for more details.\n\n;; You should have received a copy of the GNU General Public License\n;; along with this program. If not, see .\n\n;;; Commentary:\n\n;;; Code:\n\n(defmacro cerbere-with-test-content (file-name &rest body)\n \"Setup a buffer backing FILE-NAME with CONTENT and run BODY in it.\"\n (declare (indent 1))\n `(save-excursion\n (with-current-buffer (find-file-noselect\n (concat cerbere-test-path \"data\/\" ,file-name))\n (goto-char (point-min))\n ,@body\n (kill-buffer))))\n\n(provide 'test-helper)\n;;; test-helper.el ends here\n","subject":"Add method to setup fake buffer for testing.","message":"Add method to setup fake buffer for testing.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"nlamirault\/cerbere,nlamirault\/cerbere,nlamirault\/cerbere,nlamirault\/cerbere,nlamirault\/cerbere"} {"commit":"7f0d4172417b6b2d319db9370b18af251ceb5006","old_file":"site-lisp\/clgc-prodigy.el","new_file":"site-lisp\/clgc-prodigy.el","old_contents":"(require 'prodigy)\n\n(prodigy-define-tag :name 'rails\n :ready-message \"Listening on 0\\\\.0\\\\.0\\\\.0:[0-9]+, CTRL\\\\+C to stop\")\n\n(prodigy-define-tag\n :name 'zeus\n :on-output\n (lambda (&rest args)\n (let ((service (plist-get args :service))\n (poll-zeus \"ps aux | grep 'zeus slave' | grep -c environment\"))\n (when (>= (string-to-number (shell-command-to-string poll-zeus)) 2)\n (prodigy-set-status service 'ready)))))\n\n(prodigy-define-tag :name 'resque-pool\n :ready-message \"Starting worker\")\n\n(provide 'clgc-prodigy)\n","new_contents":"(require 'prodigy)\n\n(prodigy-define-tag :name 'rails\n :ready-message \"Listening on 0\\\\.0\\\\.0\\\\.0:[0-9]+, CTRL\\\\+C to stop\")\n\n(prodigy-define-tag\n :name 'zeus\n :on-output\n (prodigy-callback (service)\n (let ((poll-zeus \"ps aux | grep -c 'zeus slave:'\"))\n (when (>= (string-to-number (shell-command-to-string poll-zeus)) 6)\n (prodigy-set-status service 'ready)))))\n\n(prodigy-define-tag :name 'resque-pool\n :ready-message \"Starting worker\")\n\n(provide 'clgc-prodigy)\n","subject":"Use prodigy-callback and just count zeus slaves for ready-state","message":"Use prodigy-callback and just count zeus slaves for ready-state\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"dgtized\/dotfiles,dgtized\/dotfiles,dgtized\/dotfiles"} {"commit":"1456727776cf0c67e52f6e656819b0259b02ed13","old_file":"modes\/edit-server-conf.el","new_file":"modes\/edit-server-conf.el","old_contents":";;; edit-server-conf.el --- Settings for edit-server\n;;\n;;; Commentary:\n;;\n;;; Code:\n(require 'edit-server)\n\n(custom-set-variables\n '(edit-server-new-frame nil)\n '(edit-server-default-major-mode 'markdown-mode))\n\n;; Fix a really buggy issue with edit-server:\n(define-key edit-server-edit-mode-map (kbd \"C-x C-s\") #'save-buffer)\n\n;;; edit-server-conf.el ends here\n","new_contents":";;; edit-server-conf.el --- Settings for edit-server\n;;\n;;; Commentary:\n;;\n;;; Code:\n(require 'edit-server)\n(require 'markdown-mode)\n\n(custom-set-variables\n '(edit-server-new-frame nil)\n '(edit-server-default-major-mode 'markdown-mode))\n\n;; Fix a really buggy issue with edit-server:\n(define-key edit-server-edit-mode-map (kbd \"C-x C-s\") #'save-buffer)\n\n;; Put markdown-mode into the right state:\n(add-hook 'edit-server-edit-mode-hook #'pjones:markdown-visual-line)\n\n;;; edit-server-conf.el ends here\n","subject":"Make sure markdown-mode formats correctly","message":"edit-server: Make sure markdown-mode formats correctly\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"876d08fc3b0b8ca555e2c34bd2a70a5ff69bb365","old_file":"modules\/lang\/nix\/config.el","new_file":"modules\/lang\/nix\/config.el","old_contents":";;; lang\/nix\/config.el -*- lexical-binding: t; -*-\n\n(use-package! nix-mode\n :interpreter (\"\\\\(?:cached-\\\\)?nix-shell\" . +nix-shell-init-mode)\n :mode \"\\\\.nix\\\\'\"\n :config\n (set-repl-handler! 'nix-mode #'+nix\/open-repl)\n (set-company-backend! 'nix-mode 'company-nixos-options)\n (set-lookup-handlers! 'nix-mode\n :documentation '(+nix\/lookup-option :async t))\n (set-popup-rule! \"^\\\\*nixos-options-doc\\\\*$\" :ttl 0 :quit t)\n\n (map! :localleader\n :map nix-mode-map\n \"f\" #'nix-update-fetch\n \"p\" #'nix-format-buffer\n \"r\" #'nix-repl-show\n \"s\" #'nix-shell\n \"b\" #'nix-build\n \"u\" #'nix-unpack\n \"o\" #'+nix\/lookup-option))\n\n(use-package! nix-drv-mode\n :mode \"\\\\.drv\\\\'\")\n\n(use-package! nix-update\n :commands nix-update-fetch)\n\n(use-package! nix-repl\n :commands nix-repl-show)\n","new_contents":";;; lang\/nix\/config.el -*- lexical-binding: t; -*-\n\n(after! tramp\n (add-to-list 'tramp-remote-path \"\/run\/current-system\/sw\/bin\"))\n\n\n;;\n;;; Plugins\n\n(use-package! nix-mode\n :interpreter (\"\\\\(?:cached-\\\\)?nix-shell\" . +nix-shell-init-mode)\n :mode \"\\\\.nix\\\\'\"\n :config\n (set-repl-handler! 'nix-mode #'+nix\/open-repl)\n (set-company-backend! 'nix-mode 'company-nixos-options)\n (set-lookup-handlers! 'nix-mode\n :documentation '(+nix\/lookup-option :async t))\n (set-popup-rule! \"^\\\\*nixos-options-doc\\\\*$\" :ttl 0 :quit t)\n\n (map! :localleader\n :map nix-mode-map\n \"f\" #'nix-update-fetch\n \"p\" #'nix-format-buffer\n \"r\" #'nix-repl-show\n \"s\" #'nix-shell\n \"b\" #'nix-build\n \"u\" #'nix-unpack\n \"o\" #'+nix\/lookup-option))\n\n(use-package! nix-drv-mode\n :mode \"\\\\.drv\\\\'\")\n\n(use-package! nix-update\n :commands nix-update-fetch)\n\n(use-package! nix-repl\n :commands nix-repl-show)\n","subject":"Add nix bin path to tramp-remote-path","message":"Add nix bin path to tramp-remote-path\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs"} {"commit":"e15620087ced3c61b6f12f120b08a15c2685351a","old_file":"setup-skewer.el","new_file":"setup-skewer.el","old_contents":"\n;; Bookmarklet to load skewer:\n;;\n;; javascript:(function(){var d=document ;var s=d.createElement('script');s.src='http:\/\/localhost:8023\/skewer';d.body.appendChild(s);})()\n;;\n\n(require 'skewer-mode)\n(require 'skewer-repl)\n\n(defun skewer-start ()\n (interactive)\n (let ((httpd-port 8023))\n (httpd-start)\n (message \"Ready to skewer the browser. Now jack in with the bookmarklet.\")))\n\n(defalias 'skewer-demo 'run-skewer)\n\n(provide 'setup-skewer)\n","new_contents":"\n;; Bookmarklet to load skewer:\n;;\n;; javascript:(function(){var d=document ;var s=d.createElement('script');s.src='http:\/\/localhost:8023\/skewer';d.body.appendChild(s);})()\n;;\n\n(require 'skewer-mode)\n(require 'skewer-repl)\n\n(defun skewer-start ()\n (interactive)\n (let ((httpd-port 8023))\n (httpd-start)\n (message \"Ready to skewer the browser. Now jack in with the bookmarklet.\")))\n\n(defun skewer-demo ()\n (interactive)\n (let ((httpd-port 8024))\n (run-skewer)\n (skewer-repl)))\n\n(provide 'setup-skewer)\n","subject":"Use skewer-demo instead of run-skewer","message":"Use skewer-demo instead of run-skewer\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"e8b16bfb73d2f9491020a25e4a52faba6a3dbae9","old_file":"nixpkgs\/emacs\/site-lisp\/init-avy.el","new_file":"nixpkgs\/emacs\/site-lisp\/init-avy.el","old_contents":";;; init-avy.el --- init file for avy\n\n;;; Commentary:\n\n;; Use `C-:` to jump to any position by entering 1 character and\n;; use `C-'` to jump to any position by entering 2 characters.\n\n;;; Code:\n\n(use-package avy\n :bind\n (\"C-:\" . avy-goto-char)\n (\"C-'\" . avy-goto-char-2)\n (\"M-g f\" . avy-goto-line))\n\n(provide 'init-avy)\n\n;;; init-avy.el ends here\n","new_contents":";;; init-avy.el --- init file for avy\n\n;;; Commentary:\n\n;; Use `C-:` to jump to any position by entering 1 character and\n;; use `C-'` to jump to any position by entering 2 characters.\n\n;;; Code:\n\n(use-package avy\n :bind\n (\"C-\\\"\" . avy-goto-char)\n (\"C-'\" . avy-goto-char-2)\n (\"M-g f\" . avy-goto-line))\n\n(provide 'init-avy)\n\n;;; init-avy.el ends here\n","subject":"Update keybinding for avy mode","message":"Update keybinding for avy mode\n","lang":"Emacs Lisp","license":"mit","repos":"hongchangwu\/dotfiles,hongchangwu\/dotfiles"} {"commit":"ba757def6d588ffe70393532eda578b48523b3c6","old_file":"lisp\/init-fonts.el","new_file":"lisp\/init-fonts.el","old_contents":";;; Character sets\n\n\n;;; Changing font sizes\n\n(require-package 'default-text-scale)\n(global-set-key (kbd \"C-M-=\") 'default-text-scale-increase)\n(global-set-key (kbd \"C-M--\") 'default-text-scale-decrease)\n\n(when (eq 'ns window-system)\n (set-fontset-font\n t 'symbol\n (font-spec :family \"Apple Color Emoji\") nil 'prepend))\n\n\n(defun sanityinc\/maybe-adjust-visual-fill-column ()\n \"Readjust visual fill column when the global font size is modified.\nThis is helpful for writeroom-mode, in particular.\"\n ;; TODO: submit as patch\n (if visual-fill-column-mode\n (add-hook 'after-setting-font-hook 'visual-fill-column--adjust-window nil t)\n (remove-hook 'after-setting-font-hook 'visual-fill-column--adjust-window t)))\n\n(add-hook 'visual-fill-column-mode-hook\n 'sanityinc\/maybe-adjust-visual-fill-column)\n\n\n\n(provide 'init-fonts)\n","new_contents":";;; Character sets\n\n\n;;; Changing font sizes\n\n(require-package 'default-text-scale)\n(global-set-key (kbd \"C-M-=\") 'default-text-scale-increase)\n(global-set-key (kbd \"C-M--\") 'default-text-scale-decrease)\n\n\n(defun sanityinc\/maybe-adjust-visual-fill-column ()\n \"Readjust visual fill column when the global font size is modified.\nThis is helpful for writeroom-mode, in particular.\"\n ;; TODO: submit as patch\n (if visual-fill-column-mode\n (add-hook 'after-setting-font-hook 'visual-fill-column--adjust-window nil t)\n (remove-hook 'after-setting-font-hook 'visual-fill-column--adjust-window t)))\n\n(add-hook 'visual-fill-column-mode-hook\n 'sanityinc\/maybe-adjust-visual-fill-column)\n\n\n\n(provide 'init-fonts)\n","subject":"Remove non-working OSX color emoji support code","message":"Remove non-working OSX color emoji support code\n\nhttp:\/\/emacs.1067599.n5.nabble.com\/Emoji-on-Mac-OS-X-td401600.html\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"jhpx\/emacs.d,krzysz00\/emacs.d,svenyurgensson\/emacs.d,Shanicky\/emacs.d,me020523\/emacs.d,emuio\/emacs.d,dcorking\/emacs.d,roxolan\/emacs.d,mmqmzk\/emacs.d,fengxl\/emacs.d,kongfy\/emacs.d,zenith-john\/emacs.d,blueabysm\/emacs.d,gsmlg\/emacs.d,lust4life\/emacs.d,Enzo-Liu\/emacs.d,benkha\/emacs.d,blueseason\/emacs.d,sgarciac\/emacs.d,kindoblue\/emacs.d,wegatron\/emacs.d,baohaojun\/emacs.d,cjqw\/emacs.d,braveoyster\/emacs.d,Werewolflsp\/emacs.d,purcell\/emacs.d,cyjia\/emacs.d,qianwan\/emacs.d,arthurl\/emacs.d"} {"commit":"13d59ebd13ff3bb5a21b33ae60e6db8ca8aa9dd2","old_file":"layers\/mfa-dired\/packages.el","new_file":"layers\/mfa-dired\/packages.el","old_contents":"(defconst mfa-dired-packages '(all-the-icons all-the-icons-dired dired-narrow dired))\n\n(defun mfa-dired\/init-all-the-icons ()\n (use-package all-the-icons\n :defer t))\n\n(defun mfa-dired\/init-all-the-icons-dired ()\n (use-package all-the-icons-dired\n :defer t\n :init\n (with-eval-after-load 'dired\n (add-hook 'dired-mode-hook #'all-the-icons-dired-mode))\n :config\n (spacemacs|hide-lighter all-the-icons-dired-mode)))\n\n(defun mfa-dired\/init-dired-narrow ()\n (use-package dired-narrow\n :defer t\n :init\n (spacemacs\/set-leader-keys-for-major-mode 'dired-mode \"\/\" #'dired-narrow)))\n\n(defun mfa-dired\/post-init-dired ()\n (spacemacs|use-package-add-hook dired\n :post-config\n (progn\n (add-hook 'dired-mode-hook #'dired-dwim-target-mode)\n (spacemacs\/set-leader-keys-for-major-mode 'dired-mode\n \"ot\" #'dired-dwim-target-mode)\n (evil-define-key 'evilified dired-mode-map\n (kbd \"RET\") #'dired-find-file-by-prefix)\n (evil-define-key 'evilified dired-mode-map\n \"-\" #'dired-up-directory))))\n","new_contents":"(defconst mfa-dired-packages '(all-the-icons all-the-icons-dired dired-narrow dired))\n\n(defun mfa-dired\/init-all-the-icons ()\n (use-package all-the-icons\n :defer t))\n\n(defun mfa-dired\/init-all-the-icons-dired ()\n (use-package all-the-icons-dired\n :defer t\n :diminish\n :init\n (with-eval-after-load 'dired\n (add-hook 'dired-mode-hook #'all-the-icons-dired-mode))))\n\n(defun mfa-dired\/init-dired-narrow ()\n (use-package dired-narrow\n :defer t\n :init\n (spacemacs\/set-leader-keys-for-major-mode 'dired-mode \"\/\" #'dired-narrow)))\n\n(defun mfa-dired\/post-init-dired ()\n (spacemacs|use-package-add-hook dired\n :post-config\n (progn\n (add-hook 'dired-mode-hook #'dired-dwim-target-mode)\n (spacemacs\/set-leader-keys-for-major-mode 'dired-mode\n \"ot\" #'dired-dwim-target-mode)\n (evil-define-key 'evilified dired-mode-map\n (kbd \"RET\") #'dired-find-file-by-prefix)\n (evil-define-key 'evilified dired-mode-map\n \"-\" #'dired-up-directory))))\n","subject":"Simplify logic that diminishes all-the-icons-dired-mode","message":"Simplify logic that diminishes all-the-icons-dired-mode\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"5982d921f3e9e053c46976439d136c9604d15789","old_file":"dot_doom.d\/init.el","new_file":"dot_doom.d\/init.el","old_contents":"(doom! :completion\n (company\n +auto +tng)\n (ivy +fuzzy)\n\n :ui\n deft\n doom\n doom-quit\n fill-column\n hl-todo\n modeline\n nav-flash\n ophints\n (popup\n +all\n +defaults)\n vc-gutter\n vi-tilde-fringe\n window-select\n workspaces\n\n :editor\n (evil +everywhere)\n file-templates\n (format +onsave)\n rotate-text\n snippets\n\n :emacs\n (undo +tree)\n dired\n electric\n ibuffer\n vc\n\n :term\n eshell\n\n :checkers\n spell\n grammar\n syntax\n\n :tools\n debugger\n (docker +lsp)\n editorconfig\n (eval +overlay)\n (lookup\n +docsets)\n (lsp +eglot)\n (magit +forge)\n make\n terraform\n biblio\n\n :lang\n (cc +lsp)\n (yaml +lsp)\n data\n emacs-lisp\n (go +lsp)\n latex\n markdown\n (org\n +roam\n +hugo\n +journal\n +gnuplot\n +pancoc\n +dragndrop\n +journal)\n plantuml\n (python +pyenv)\n rest\n (rust +eglot)\n (sh +lsp)\n\n :email\n (mu4e +gmail)\n\n :app\n (rss +org)\n\n :config\n (default +bindings +smartparens))\n","new_contents":"(doom! :completion\n (company\n +auto +tng)\n (ivy +fuzzy)\n\n :ui\n deft\n doom\n doom-quit\n fill-column\n hl-todo\n modeline\n nav-flash\n ophints\n (popup\n +all\n +defaults)\n vc-gutter\n vi-tilde-fringe\n window-select\n workspaces\n\n :editor\n (evil +everywhere)\n file-templates\n (format +onsave)\n rotate-text\n snippets\n\n :emacs\n (undo +tree)\n dired\n electric\n ibuffer\n vc\n\n :term\n eshell\n\n :checkers\n spell\n grammar\n syntax\n\n :tools\n debugger\n (docker +lsp)\n editorconfig\n (eval +overlay)\n (lookup\n +docsets)\n (lsp)\n (magit +forge)\n make\n terraform\n biblio\n\n :lang\n (cc +lsp)\n (yaml +lsp)\n data\n emacs-lisp\n (go +lsp)\n latex\n markdown\n (org\n +roam\n +hugo\n +journal\n +gnuplot\n +pancoc\n +dragndrop\n +journal)\n plantuml\n (python +pyenv +lsp)\n rest\n (rust +eglot)\n (sh +lsp)\n\n :email\n (mu4e +gmail)\n\n :app\n (rss +org)\n\n :config\n (default +bindings +smartparens))\n","subject":"Use lsp instead of eglot","message":"Emacs: Use lsp instead of eglot\n","lang":"Emacs Lisp","license":"mit","repos":"benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles"} {"commit":"040d1d0ef0ebd297b0f968abca2573661a977c07","old_file":"contrib\/colors\/config.el","new_file":"contrib\/colors\/config.el","old_contents":";;; config.el --- Colors Layer configuration File for Spacemacs\n;;\n;; Copyright (c) 2012-2014 Sylvain Benner\n;; Copyright (c) 2014-2015 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n;; ---------------------------------------------------------------------------\n;; Prefixes \n;; ---------------------------------------------------------------------------\n\n;; Variables\n\n(defvar colors-enable-rainbow-identifiers nil\n \"if non nil the `rainbow-identifers' package is enabled.\")\n\n(defvar colors-enable-nyan-cat-progress-bar nil\n \"if non nil all nyan cat packges are enabled (for now only `nyan-mode').\")\n\n;; Command prefixes\n\n(setq colors\/key-binding-prefixes '((\"C\" . \"colors\")))\n(when colors-enable-rainbow-identifiers\n (push (cons \"Ci\" \"colors-identifiers\") colors\/key-binding-prefixes))\n(mapc (lambda (x) (spacemacs\/declare-prefix (car x) (cdr x)))\n colors\/key-binding-prefixes)\n","new_contents":";;; config.el --- Colors Layer configuration File for Spacemacs\n;;\n;; Copyright (c) 2012-2014 Sylvain Benner\n;; Copyright (c) 2014-2015 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n;; Variables\n\n(defvar colors-enable-rainbow-identifiers nil\n \"if non nil the `rainbow-identifers' package is enabled.\")\n\n(defvar colors-enable-nyan-cat-progress-bar nil\n \"if non nil all nyan cat packges are enabled (for now only `nyan-mode').\")\n\n;; Command prefixes\n\n(setq colors\/key-binding-prefixes '((\"C\" . \"colors\")))\n(when colors-enable-rainbow-identifiers\n (push (cons \"Ci\" \"colors-identifiers\") colors\/key-binding-prefixes))\n(mapc (lambda (x) (spacemacs\/declare-prefix (car x) (cdr x)))\n colors\/key-binding-prefixes)\n","subject":"Remove dead comment in colors layer","message":"Remove dead comment in colors layer\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"bb281a0e9d90140ba64c03fe491320e5cd08dd76","old_file":"emacs\/lisp\/seanmacs-libs.el","new_file":"emacs\/lisp\/seanmacs-libs.el","old_contents":";;; seanmacs-libs.el --- Functions\/libraries -*- lexical-binding: t; -*-\n\n;;; Commentary:\n;; Functions and libraries that should be loaded early on, and can be used\n;; elsewhere within my configuration.\n\n;;; Code:\n\n;; Useful string utilities, e.g. 's-contains-p'.\n(use-package s :straight t)\n\n(use-package dash :straight t)\n\n(defun sm\/run-and-bury (fn &rest args)\n \"Run FN with ARGS then bury the buffer.\"\n (let ((buf (buffer-name)))\n (apply fn args)\n (bury-buffer buf)))\n\n(provide 'seanmacs-libs)\n;;; seanmacs-libs.el ends here\n\n","new_contents":";;; seanmacs-libs.el --- Functions\/libraries -*- lexical-binding: t; -*-\n\n;;; Commentary:\n;; Functions and libraries that should be loaded early on, and can be used\n;; elsewhere within my configuration.\n\n;;; Code:\n\n;; Useful string utilities, e.g. 's-contains-p'.\n(use-package s :straight t)\n\n(use-package dash :straight t)\n\n(defun sm\/run-and-bury (fn &rest args)\n \"Run FN with ARGS then bury the buffer.\"\n (let ((buf (buffer-name)))\n (apply fn args)\n (bury-buffer buf)))\n\n(defun sm\/format-github-url (origin branch filepath beg &optional end)\n (let* ((repo\n (thread-last origin\n (s-chop-suffixes '(\"\/\" \".git\"))\n (s-chop-prefixes '(\"git@github.com:\" \"https:\/\/github.com\/\"))))\n (url (format \"https:\/\/github.com\/%s\/tree\/%s\/%s#L%d\" repo branch filepath beg)))\n (if end\n (concat url (format \"-L%d\" end))\n url)))\n\n(defun sm\/browse-github-url-at-point (beg end)\n \"Open file at point on github using BEG and END to link to the correct section of code.\"\n (interactive (if (use-region-p)\n (list (line-number-at-pos (region-beginning))\n (line-number-at-pos (region-end)))\n (list (line-number-at-pos) nil)))\n (when (magit-toplevel)\n (let ((origin (magit-get \"remote.origin.url\"))\n (branch (magit-get-current-branch))\n (filepath (s-chop-prefix (magit-toplevel) (buffer-file-name))))\n (browse-url (sm\/format-github-url origin branch filepath beg end)))))\n\n(provide 'seanmacs-libs)\n;;; seanmacs-libs.el ends here\n\n","subject":"Add function to open file at point in github","message":"Add function to open file at point in github\n","lang":"Emacs Lisp","license":"mit","repos":"SCSmithr\/dotfiles"} {"commit":"10712c8b3047044821acefbfe6e4985f0ecab93a","old_file":"lisp\/init-elm.el","new_file":"lisp\/init-elm.el","old_contents":"(when (maybe-require-package 'elm-mode)\n (setq-default elm-format-on-save t)\n (after-load 'elm-mode\n (diminish 'elm-indent-mode)\n (when (executable-find \"elm-oracle\")\n (add-hook 'elm-mode-hook 'elm-oracle-setup-completion))\n (when (executable-find \"elm-format\")\n (setq-default elm-format-on-save t)))\n (when (maybe-require-package 'flycheck-elm)\n (after-load 'elm-mode\n (flycheck-elm-setup))))\n\n(provide 'init-elm)\n","new_contents":"(when (maybe-require-package 'elm-mode)\n (setq-default elm-format-on-save t)\n (after-load 'elm-mode\n (diminish 'elm-indent-mode)\n (add-hook 'elm-mode-hook\n (lambda () (sanityinc\/local-push-company-backend 'company-elm)))\n (when (executable-find \"elm-format\")\n (setq-default elm-format-on-save t)))\n (when (maybe-require-package 'flycheck-elm)\n (after-load 'elm-mode\n (flycheck-elm-setup))))\n\n(provide 'init-elm)\n","subject":"Use company instead of completion-at-point in elm-mode","message":"Use company instead of completion-at-point in elm-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"purcell\/emacs.d,baohaojun\/emacs.d,qianwan\/emacs.d,cjqw\/emacs.d,me020523\/emacs.d,roxolan\/emacs.d,blueseason\/emacs.d,kindoblue\/emacs.d,svenyurgensson\/emacs.d,sgarciac\/emacs.d,arthurl\/emacs.d,benkha\/emacs.d,braveoyster\/emacs.d,lust4life\/emacs.d,emuio\/emacs.d,wegatron\/emacs.d,mmqmzk\/emacs.d,blueabysm\/emacs.d,krzysz00\/emacs.d,gsmlg\/emacs.d,dcorking\/emacs.d,kongfy\/emacs.d"} {"commit":"2ffef6edce0864f86c58d88b13dbe289d7902ae8","old_file":"modules\/tools\/pdf\/config.el","new_file":"modules\/tools\/pdf\/config.el","old_contents":";;; tools\/pdf\/config.el -*- lexical-binding: t; -*-\n\n(def-package! pdf-tools\n :mode (\"\\\\.pdf\\\\'\" . pdf-view-mode)\n :config\n (unless noninteractive\n (pdf-tools-install))\n\n (map! :map pdf-view-mode-map\n \"q\" #'kill-this-buffer\n doom-leader-key nil)\n\n (setq-default pdf-view-display-size 'fit-page)\n ;; Turn off cua so copy works\n (add-hook! 'pdf-view-mode-hook (cua-mode 0))\n ;; Custom modeline that removes useless info and adds page numbers\n (when (featurep! :ui doom-modeline)\n (load! +modeline)\n (add-hook! pdf-tools-enabled (doom-set-modeline 'pdf-tools-modeline)))\n ;; Handle PDF-tools related popups better\n (set! :popup \"^\\\\*Outline*\" '((side . right) (size . 40)) '((select)))\n ;; TODO: Add additional important windows that should be handled differently\n ;; TODO: These two next rules don't work (they should), investigate\n ;; (set! :popup \"\\\\*Contents\\\\*\" '((side . right) (size . 40)) nil)\n ;; (set! :popup \"* annots\\\\*$\" '((side . left) (size . 40)) '((select)))\n )\n","new_contents":";;; tools\/pdf\/config.el -*- lexical-binding: t; -*-\n\n(def-package! pdf-tools\n :mode (\"\\\\.pdf\\\\'\" . pdf-view-mode)\n :config\n (unless noninteractive\n (pdf-tools-install))\n\n (map! :map pdf-view-mode-map\n \"q\" #'kill-this-buffer\n doom-leader-key nil)\n\n (setq-default pdf-view-display-size 'fit-page)\n ;; Turn off cua so copy works\n (add-hook! 'pdf-view-mode-hook (cua-mode 0))\n ;; Custom modeline that removes useless info and adds page numbers\n (when (featurep! :ui doom-modeline)\n (load! \"+modeline\")\n (add-hook! pdf-tools-enabled (doom-set-modeline 'pdf-tools-modeline)))\n ;; Handle PDF-tools related popups better\n (set! :popup \"^\\\\*Outline*\" '((side . right) (size . 40)) '((select)))\n ;; TODO: Add additional important windows that should be handled differently\n ;; TODO: These two next rules don't work (they should), investigate\n ;; (set! :popup \"\\\\*Contents\\\\*\" '((side . right) (size . 40)) nil)\n ;; (set! :popup \"* annots\\\\*$\" '((side . left) (size . 40)) '((select)))\n )\n","subject":"Fix void-variable +modeline error from outdated load! call","message":"Fix void-variable +modeline error from outdated load! call\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom"} {"commit":"794cf108ae8b1e0cc10a1e98db09a9b4bf095c6c","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +prescient +fuzzy)\n (company +childframe)\n\n :ui\n doom\n doom-dashboard\n modeline\n ophints\n hl-todo\n nav-flash\n treemacs\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n format\n\n :emacs\n (dired +icons)\n vc\n\n :tools\n lookup\n eval\n make\n (magit +forge)\n (lsp +peek)\n editorconfig\n pdf\n ein\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +lsp)\n (org\n +attach\n +babel\n +export)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp)\n (fsharp +lsp)\n (javascript +lsp)\n rest\n data\n (rust +lsp)\n\n :checkers\n grammar\n spell\n (syntax +childframe)\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n )\n\n\n;; Needs to be set early so it can't go into config\n(setq evil-respect-visual-line-mode t)\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +prescient +fuzzy)\n (company +childframe)\n\n :ui\n doom\n doom-dashboard\n modeline\n ophints\n hl-todo\n nav-flash\n treemacs\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n format\n\n :emacs\n (dired +icons)\n vc\n\n :tools\n lookup\n eval\n make\n (magit +forge)\n (lsp +peek)\n editorconfig\n pdf\n ein\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +ghcide)\n (org\n +attach\n +babel\n +export)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp)\n (fsharp +lsp)\n (javascript +lsp)\n rest\n data\n (rust +lsp)\n\n :checkers\n grammar\n spell\n (syntax +childframe)\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n )\n\n\n;; Needs to be set early so it can't go into config\n(setq evil-respect-visual-line-mode t)\n","subject":"Switch to ghcide for haskell","message":"[emacs] Switch to ghcide for haskell\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"2a9fe1c0a4480ea34ebca407013e1e2fd414b49c","old_file":"lisp\/init-xterm.el","new_file":"lisp\/init-xterm.el","old_contents":"(require 'init-frame-hooks)\n\n(defun fix-up-xterm-control-arrows ()\n (let ((map (if (boundp 'input-decode-map)\n input-decode-map\n function-key-map)))\n (define-key map \"\\e[1;5A\" [C-up])\n (define-key map \"\\e[1;5B\" [C-down])\n (define-key map \"\\e[1;5C\" [C-right])\n (define-key map \"\\e[1;5D\" [C-left])\n (define-key map \"\\e[5A\" [C-up])\n (define-key map \"\\e[5B\" [C-down])\n (define-key map \"\\e[5C\" [C-right])\n (define-key map \"\\e[5D\" [C-left])))\n\n(add-hook 'after-make-console-frame-hooks\n (lambda ()\n (when (< emacs-major-version 23)\n (fix-up-xterm-control-arrows))\n (xterm-mouse-mode 1) ; Mouse in a terminal (Use shift to paste with middle button)\n (when (fboundp 'mwheel-install)\n (mwheel-install))))\n\n(provide 'init-xterm)\n","new_contents":"(require 'init-frame-hooks)\n\n(defun fix-up-xterm-control-arrows ()\n (let ((map (if (boundp 'input-decode-map)\n input-decode-map\n function-key-map)))\n (define-key map \"\\e[1;5A\" [C-up])\n (define-key map \"\\e[1;5B\" [C-down])\n (define-key map \"\\e[1;5C\" [C-right])\n (define-key map \"\\e[1;5D\" [C-left])\n (define-key map \"\\e[5A\" [C-up])\n (define-key map \"\\e[5B\" [C-down])\n (define-key map \"\\e[5C\" [C-right])\n (define-key map \"\\e[5D\" [C-left])))\n\n(global-set-key [mouse-4] (lambda () (interactive) (scroll-down 1)))\n(global-set-key [mouse-5] (lambda () (interactive) (scroll-up 1)))\n\n(add-hook 'after-make-console-frame-hooks\n (lambda ()\n (when (< emacs-major-version 23)\n (fix-up-xterm-control-arrows))\n (xterm-mouse-mode 1) ; Mouse in a terminal (Use shift to paste with middle button)\n (when (fboundp 'mwheel-install)\n (mwheel-install))))\n\n(provide 'init-xterm)\n","subject":"Enable mouse scrolling in iTerm","message":"Enable mouse scrolling in iTerm\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"purcell\/emacs.d,Togal\/emacs.d,zhaotai\/.emacs.d,farzadbekran\/emacs.d,ernest-dzf\/emacs.d,shafayetkhan\/emacs.d,baohaojun\/emacs.d,mmqmzk\/emacs.d,me020523\/emacs.d,alant\/emacs.d,qinshulei\/emacs.d,jachinpy\/emacs.d,cjqw\/emacs.d,lujianmei\/emacs.d,dhanunjaya\/emacs.d,Guoozz\/emacs.d,danfengcao\/emacs.d,zenith-john\/emacs.d,farzadbekran\/emacs.d,blueabysm\/emacs.d,zhuoyikang\/emacs.d,hophacker\/emacs.d,qianwan\/emacs.d,46do14\/emacs.d,ilove0518\/emacs.d,jhpx\/emacs.d,svenyurgensson\/emacs.d,farzadbekran\/emacs.d,jachinpy\/emacs.d,lromang\/emacs.d,kindoblue\/emacs.d,krzysz00\/emacs.d,emuio\/emacs.d,mpwang\/emacs.d,Jadecity\/PurcellEmacs.d,Werewolflsp\/emacs.d,DarkThrone\/emacs.d,jkaessens\/emacs.d,modkzs\/emcs.d,whizzzkid\/emacs.d,wegatron\/emacs.d,cyjia\/emacs.d,lust4life\/emacs.d,farzadbekran\/emacs.d,dcorking\/emacs.d,blueseason\/emacs.d,pairyo\/emacs.d,gsmlg\/emacs.d,bibaijin\/emacs.d,kongfy\/emacs.d,renatoriccio\/emacs.d,ruiyang\/emacs.d,caoyuanqi\/emacs.d,carlosliu\/emacs.d,sgarciac\/emacs.d,boblannon\/emacs.d,roxolan\/emacs.d,LKI\/emacs.d,atreeyang\/emacs.d,scorpionis\/emacs.d,ruiyang\/emacs.d,arthurl\/emacs.d,braveoyster\/emacs.d,benkha\/emacs.d,exclamaforte\/emacs.d,Enzo-Liu\/emacs.d,Shanicky\/emacs.d,LittleLmp\/emacs.d,hkcqr\/emacs.d,wenpincui\/emacs.d,jthetzel\/emacs.d,farzadbekran\/emacs.d,fengxl\/emacs.d,dongdonghu\/.emacs.d,haodaivshen\/emacs.d"} {"commit":"c0943e6134d5a38cab1193a03e5212d77f042689","old_file":"lisp\/themes.el","new_file":"lisp\/themes.el","old_contents":";;; themes.el -- Theme configuration.\n;;\n;;; Commentary:\n;;\n;; Code to activate my preferred themes.\n;;\n;;; Code:\n\n;; Load default theme and update settings:\n;; https:\/\/github.com\/alezost\/alect-themes\n(require 'alect-themes)\n\n(custom-set-variables\n '(alect-overriding-faces\n (quote ((mode-line ((t :foreground fg+1\n :background bg-1\n :box (:line-width 2 :color fg+1 :style nil))))\n (font-lock-string-face ((t :foreground yellow+2)))\n (font-lock-comment-face ((t :foreground \"#9396c4\")))\n (font-lock-comment-delimiter-face ((t :foreground bg\n :weight bold)))))))\n\n(alect-set-color 'dark 'bg-1 \"#333333\")\n(load-theme 'alect-dark t)\n\n;; Stolen from: https:\/\/github.com\/alezost\/emacs-config\n(defun pjones:load-theme (theme)\n \"Load THEME after unloading all other themes first.\"\n (interactive (list (intern (completing-read\n \"Load custom theme: \"\n (mapcar #'symbol-name (custom-available-themes))))))\n (mapc #'disable-theme custom-enabled-themes)\n (load-theme theme t))\n\n(provide 'themes)\n;;; themes.el ends here\n","new_contents":";;; themes.el -- Theme configuration.\n;;\n;;; Commentary:\n;;\n;; Code to activate my preferred themes.\n;;\n;;; Code:\n\n;; Load default theme and update settings:\n;; https:\/\/github.com\/alezost\/alect-themes\n(require 'alect-themes)\n\n(custom-set-variables\n '(alect-overriding-faces\n (quote ((mode-line ((t :foreground fg+1\n :background bg-1\n :box (:line-width 2 :color fg+1 :style nil))))\n (font-lock-string-face ((t :foreground yellow+2)))\n (font-lock-comment-face ((t :foreground \"#9396c4\")))\n (font-lock-comment-delimiter-face ((t :foreground bg\n :weight bold)))))))\n\n(alect-set-color 'dark 'bg-1 \"#333333\")\n(alect-set-color 'light 'bg-1 \"#ffffff\")\n(alect-set-color 'light 'yellow-1 \"#b58900\")\n(load-theme 'alect-dark t)\n\n;; Stolen from: https:\/\/github.com\/alezost\/emacs-config\n(defun pjones:load-theme (theme)\n \"Load THEME after unloading all other themes first.\"\n (interactive (list (intern (completing-read\n \"Load custom theme: \"\n (mapcar #'symbol-name (custom-available-themes))))))\n (mapc #'disable-theme custom-enabled-themes)\n (load-theme theme t))\n\n(provide 'themes)\n;;; themes.el ends here\n","subject":"Improve theme colors when using a light-colored theme","message":"Improve theme colors when using a light-colored theme\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"c896700044223ad3b9a21dc8c0032b6734051c0f","old_file":"config\/newemacs\/settings\/c-settings.el","new_file":"config\/newemacs\/settings\/c-settings.el","old_contents":"(use-package company-c-headers\n :config\n (add-to-list 'company-backends 'company-c-headers))\n\n(add-hook 'c-mode-common-hook 'hs-minor-mode)\n\n(defun c-kr-style ()\n \"C mode\"\n (interactive)\n (c-set-style \"K&R\")\n (setq-default indent-tabs-mode t)\n (setq c-syntactic-indentation nil)\n (setq tab-width 4)\n (setq c-basic-offset 4))\n\n(defun c-kernel-style ()\n \"C kernel mode\"\n (interactive)\n (c-set-style \"linux\")\n (setq-default indent-tabs-mode t)\n (setq c-syntactic-indentation nil)\n (setq tab-width 8)\n (setq c-basic-offset 8))\n\n(defun cpp-style ()\n \"Cpp mode\"\n (interactive)\n (c-set-style \"stroustrup\")\n (setq-default indent-tabs-mode nil)\n (setq c-syntactic-indentation nil)\n (setq tab-width 4)\n (setq c-basic-offset 4))\n\n(add-hook 'c++-mode-hook 'cpp-style)\n(add-hook 'c-mode-hook 'c-kernel-style)\n\n(provide 'c-settings)\n","new_contents":"(use-package company-c-headers\n :config\n (add-to-list 'company-backends 'company-c-headers))\n\n(add-hook 'c-mode-common-hook 'hs-minor-mode)\n\n(defun c-kr-style ()\n \"C mode\"\n (interactive)\n (c-set-style \"K&R\")\n (setq-local indent-tabs-mode t)\n (setq c-syntactic-indentation nil)\n (setq tab-width 4)\n (setq c-basic-offset 4))\n\n(defun c-kernel-style ()\n \"C kernel mode\"\n (interactive)\n (c-set-style \"linux\")\n (setq-local indent-tabs-mode t)\n (setq c-syntactic-indentation nil)\n (setq tab-width 8)\n (setq c-basic-offset 8))\n\n(defun cpp-style ()\n \"Cpp mode\"\n (interactive)\n (c-set-style \"stroustrup\")\n (setq-local indent-tabs-mode nil)\n (setq c-syntactic-indentation nil)\n (setq tab-width 4)\n (setq c-basic-offset 4))\n\n(add-hook 'c++-mode-hook 'cpp-style)\n(add-hook 'c-mode-hook 'c-kernel-style)\n\n(provide 'c-settings)\n","subject":"Stop fucking other modes indentation","message":"Stop fucking other modes indentation\n","lang":"Emacs Lisp","license":"mit","repos":"rogerzanoni\/dotfiles"} {"commit":"87d504c2791b7f691eeb5ad4f55c4d8d152c9a31","old_file":"custom\/rmg-host-specific.el","new_file":"custom\/rmg-host-specific.el","old_contents":";; Default font size in GUIs is 9pt\n(lexical-let ((rmg:font-height 90)\n (rmg:maximize-host-regexps '(\"reaper2.*\"\n \"niub30\")))\n\n ;; Font size on reaper2 should be 11pt (higher density screen)\n (when (string-match \"reaper2.*\" (system-name))\n (setq rmg:font-height 110))\n\n ;; Add window setup hook for face size\n (add-hook 'window-setup-hook\n (lambda ()\n (when (display-graphic-p)\n (set-face-attribute 'default nil :height rmg:font-height)))\n t)\n\n ;; Maximize automatically for specific hosts\n (dolist (name-regex rmg:maximize-host-regexps)\n (when (string-match name-regex (system-name))\n (add-hook 'window-setup-hook\n #'rmg-maximize-frame\n t)))\n )\n\n(provide 'rmg-host-specific)\n","new_contents":";; Default font size in GUIs is 9pt\n(lexical-let ((rmg:font-height 90)\n (rmg:maximize-host-regexps '(\"reaper2.*\"\n \"niub30\"\n \"wlvaio\")))\n\n ;; Font size on reaper2 should be 11pt (higher density screen)\n (when (string-match \"reaper2.*\" (system-name))\n (setq rmg:font-height 110))\n\n ;; Add window setup hook for face size\n (add-hook 'window-setup-hook\n (lambda ()\n (when (display-graphic-p)\n (set-face-attribute 'default nil :height rmg:font-height)))\n t)\n\n ;; Maximize automatically for specific hosts\n (dolist (name-regex rmg:maximize-host-regexps)\n (when (string-match name-regex (system-name))\n (add-hook 'window-setup-hook\n #'rmg-maximize-frame\n t)))\n )\n\n(provide 'rmg-host-specific)\n","subject":"Add wlvaio to auto-maximize hosts list","message":"Add wlvaio to auto-maximize hosts list\n","lang":"Emacs Lisp","license":"mit","repos":"rmgrimm\/.emacs.d"} {"commit":"cde5a916bf5808a659b08c831af68639a8d04e5d","old_file":"custom\/79-css.el","new_file":"custom\/79-css.el","old_contents":"; stylesheets\n(autoload 'css-mode \"css-mode\")\n(setq auto-mode-alist (cons '(\"\\\\.css\\\\'\" . css-mode) auto-mode-alist))\n\n(setq scss-compile-at-save nil)\n","new_contents":"; stylesheets\n(autoload 'css-mode \"css-mode\")\n(setq auto-mode-alist (cons '(\"\\\\.css\\\\'\" . css-mode) auto-mode-alist))\n\n(setq scss-compile-at-save nil)\n(setq css-indent-offset 2)\n","subject":"Set css to 2 spaces","message":"Set css to 2 spaces\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"1fff2d0dea4945a96781a84c0c22a1af4ff183e4","old_file":"emacs.el","new_file":"emacs.el","old_contents":"(setq package-archives '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\")))\n\n;; from http:\/\/stackoverflow.com\/questions\/10092322\/how-to-automatically-install-emacs-packages-by-specifying-a-list-of-package-name (Nicolas Dudebout)\n;; {{{\n(setq package-list '(ace-jump-mode\n browse-kill-ring\n auto-complete\n lua-mode\n glsl-mode\n undo-tree\n muse\n htmlize\n fic-mode\n web-mode\n php-mode\n auto-highlight-symbol\n org\n isearch-symbol-at-point\n ido-ubiquitous\n ido-vertical-mode\n smex\n window-number\n fuzzy\n goto-last-change\n markdown-mode\n flycheck))\n\n(package-initialize)\n\n(unless package-archive-contents\n (package-refresh-contents))\n\n(dolist (package package-list)\n (unless (package-installed-p package)\n (package-install package)))\n;; }}}\n\n(byte-recompile-directory \"~\/.emacs.d\")\n\n(add-hook 'after-init-hook (lambda () (load \"~\/.emacs.d\/init\")))\n\n;; auto puts\n(put 'set-goal-column 'disabled nil)\n(put 'upcase-region 'disabled nil)\n(put 'downcase-region 'disabled nil)\n","new_contents":"(setq package-archives '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\")))\n\n;; from http:\/\/stackoverflow.com\/questions\/10092322\/how-to-automatically-install-emacs-packages-by-specifying-a-list-of-package-name (Nicolas Dudebout)\n;; {{{\n(setq package-list '(ace-jump-mode\n browse-kill-ring\n auto-complete\n lua-mode\n glsl-mode\n undo-tree\n cmake-mode\n muse\n htmlize\n fic-mode\n web-mode\n php-mode\n auto-highlight-symbol\n org\n isearch-symbol-at-point\n ido-ubiquitous\n ido-vertical-mode\n smex\n window-number\n fuzzy\n goto-last-change\n markdown-mode\n flycheck))\n\n(package-initialize)\n\n(unless package-archive-contents\n (package-refresh-contents))\n\n(dolist (package package-list)\n (unless (package-installed-p package)\n (package-install package)))\n;; }}}\n\n(byte-recompile-directory \"~\/.emacs.d\")\n\n(add-hook 'after-init-hook (lambda () (load \"~\/.emacs.d\/init\")))\n\n;; auto puts\n(put 'set-goal-column 'disabled nil)\n(put 'upcase-region 'disabled nil)\n(put 'downcase-region 'disabled nil)\n","subject":"Add 'cmake-mode' to default install package","message":"Add 'cmake-mode' to default install package\n","lang":"Emacs Lisp","license":"mit","repos":"Plambir\/emacs-bootstrap"} {"commit":"d173ae1ed8d34b4f726e6fcb547e096e46b9c8e5","old_file":"modules\/feature\/version-control\/packages.el","new_file":"modules\/feature\/version-control\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; feature\/version-control\/packages.el\n\n;;; config.el\n;; n\/a\n\n;;; +git\n(when (featurep! +git)\n (package! git-gutter-fringe)\n (package! git-link)\n (package! git-timemachine)\n (package! gitconfig-mode)\n (package! gitignore-mode)\n (package! magit))\n\n;;; TODO +hg\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; feature\/version-control\/packages.el\n\n;;; config.el\n;; n\/a\n\n;;; +git\n(unless (featurep! -git)\n (package! git-gutter-fringe)\n (package! git-link)\n (package! git-timemachine)\n (package! gitconfig-mode)\n (package! gitignore-mode)\n (package! magit))\n\n;;; TODO +hg\n","subject":"Add module flag support to :feature version-control","message":"Add module flag support to :feature version-control\n","lang":"Emacs Lisp","license":"mit","repos":"aminb\/.emacs.d,aminb\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,aminb\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,aminb\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom"} {"commit":"cf565028ca0f2f411fcdabc474f373be28ccdf70","old_file":"emacs\/modes\/js-conf.el","new_file":"emacs\/modes\/js-conf.el","old_contents":";;; js-conf.el -- Configuration options for js-mode (JavaScript).\n(eval-when-compile (require 'js))\n(setq js-indent-level 2 js-flat-functions t)\n","new_contents":";;; js-conf.el -- Configuration options for js-mode (JavaScript).\n(eval-when-compile (require 'js))\n\n;; JavaScript mode settings\n(setq js-indent-level 2\n js-flat-functions t)\n\n(defvar pjones:js-keywords\n '((\"\\\\(function *\\\\)(\"\n (0 (progn (compose-region (match-beginning 1)\n (match-end 1) \"\\u0192\") nil))))\n \"Extra keywords to add to JavaScript buffers.\nThe Unicode anonymous function code was stolen from\nhttps:\/\/github.com\/technomancy\/emacs-starter-kit\")\n\n(defun pjones:js-add-extra-keywords ()\n \"Add some extra keywords to JavaScript buffers.\"\n (interactive)\n (font-lock-add-keywords 'js-mode pjones:js-keywords)\n (font-lock-fontify-buffer))\n\n(defun pjones:js-rm-extra-keywords ()\n \"Remove some extra keywords from JavaScript buffers.\"\n (interactive)\n (let ((modified (buffer-modified-p)))\n (font-lock-remove-keywords 'js-mode pjones:js-keywords)\n (remove-text-properties (point-min) (point-max) '(composition nil))\n (set-buffer-modified-p modified)))\n\n(defun pjones:js-mode-hook ()\n \"Configure JS mode and key bindings.\"\n (local-set-key (kbd \"C-c C-k\") 'pjones:js-rm-extra-keywords)\n (local-set-key (kbd \"C-c C-S-k\") 'pjones:js-add-extra-keywords))\n(add-hook 'js-mode-hook 'pjones:js-mode-hook)\n\n;; Set up the cool extra keywords right away!\n(pjones:js-add-extra-keywords)\n","subject":"Add some extra keywords to JavaScript buffers with functions to toggle them","message":"Add some extra keywords to JavaScript buffers with functions to toggle them\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"fa912bc33c57894ca4a04d2ab0ec1fb778b6799c","old_file":"init-locales.el","new_file":"init-locales.el","old_contents":"(defun locale-is-utf8-p ()\n \"Return t iff the \\\"locale\\\" command or environment variables prefer UTF-8.\"\n (flet ((is-utf8 (v) (and v (string-match \"UTF-8\" v))))\n (or (is-utf8 (and (executable-find \"locale\") (shell-command-to-string \"locale\")))\n (is-utf8 (getenv \"LC_ALL\"))\n (is-utf8 (getenv \"LC_CTYPE\"))\n (is-utf8 (getenv \"LANG\")))))\n\n(when (or window-system (locale-is-utf8-p))\n (setq utf-translate-cjk-mode nil) ; disable CJK coding\/encoding (Chinese\/Japanese\/Korean characters)\n (set-language-environment 'utf-8)\n (when *is-carbon-emacs*\n (set-keyboard-coding-system 'utf-8-mac))\n (setq locale-coding-system 'utf-8)\n (set-default-coding-systems 'utf-8)\n (set-terminal-coding-system 'utf-8)\n (unless (eq system-type 'windows-nt)\n (set-selection-coding-system 'utf-8))\n (prefer-coding-system 'utf-8))\n\n(provide 'init-locales)\n","new_contents":"(require 'cl-lib)\n\n(defun locale-is-utf8-p ()\n \"Return t iff the \\\"locale\\\" command or environment variables prefer UTF-8.\"\n (cl-flet ((is-utf8 (v) (and v (string-match \"UTF-8\" v))))\n (or (is-utf8 (and (executable-find \"locale\") (shell-command-to-string \"locale\")))\n (is-utf8 (getenv \"LC_ALL\"))\n (is-utf8 (getenv \"LC_CTYPE\"))\n (is-utf8 (getenv \"LANG\")))))\n\n(when (or window-system (locale-is-utf8-p))\n (setq utf-translate-cjk-mode nil) ; disable CJK coding\/encoding (Chinese\/Japanese\/Korean characters)\n (set-language-environment 'utf-8)\n (when *is-carbon-emacs*\n (set-keyboard-coding-system 'utf-8-mac))\n (setq locale-coding-system 'utf-8)\n (set-default-coding-systems 'utf-8)\n (set-terminal-coding-system 'utf-8)\n (unless (eq system-type 'windows-nt)\n (set-selection-coding-system 'utf-8))\n (prefer-coding-system 'utf-8))\n\n(provide 'init-locales)\n","subject":"Replace an flet with cl-flet","message":"Replace an flet with cl-flet\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"8e15b9b7ee30a9461d9ff949391b6963ab96d991","old_file":"config\/ivy-mode-parameters.el","new_file":"config\/ivy-mode-parameters.el","old_contents":";; Emacs configuration\n\n;; Parameters for Ivy autocompletion and related tools.\n\n(use-package counsel\n :ensure t\n :config\n (setq-default enable-recursive-minibuffers t)\n :bind\n ((\"C-s\" . counsel-grep-or-swiper)\n (\"C-r\" . counsel-grep-or-swiper)))\n\n;; Facilitated access to SSH hosts listed in `~\/.ssh\/config'.\n(use-package counsel-tramp\n :ensure t\n :config\n (setq-default tramp-default-method \"ssh\")\n :bind\n ((\"C-c s\" . counsel-tramp)\n (\"C-c q\" . counsel-tramp-quit)))\n\n(use-package swiper\n :ensure t\n :bind\n ((\"C-M-s\" . swiper-all)))\n\n(use-package ivy\n :ensure t\n :diminish ivy-mode\n :config\n (setq-default ivy-wrap t\n ivy-use-virtual-buffers t\n ivy-count-format \"(%d\/%d) \")\n :bind\n ((\"C-c C-r\" . ivy-resume)))\n\n(use-package hydra\n :ensure t)\n\n(use-package ivy-hydra\n :ensure t\n :requires (ivy hydra)\n :after (ivy hydra))\n\n","new_contents":";; Emacs configuration\n\n;; Parameters for Ivy autocompletion and related tools.\n\n(use-package counsel\n :ensure t\n :config\n (setq-default enable-recursive-minibuffers t)\n :bind\n ((\"C-s\" . counsel-grep-or-swiper)\n (\"C-r\" . counsel-grep-or-swiper)))\n\n;; Facilitated access to SSH hosts listed in `~\/.ssh\/config'.\n(use-package counsel-tramp\n :ensure t\n :config\n (setq-default tramp-default-method \"ssh\")\n :bind\n ((\"C-c s\" . counsel-tramp)\n (\"C-c q\" . counsel-tramp-quit)))\n\n(use-package swiper\n :ensure t\n :bind\n ((\"C-M-s\" . swiper-all)))\n\n(use-package ivy\n :ensure t\n :diminish ivy-mode\n :config\n (setq-default ivy-wrap t\n ivy-use-virtual-buffers t\n ivy-count-format \"(%d\/%d) \")\n :bind\n ((\"C-c C-r\" . ivy-resume)))\n\n;; Nicer display for `ivy-switch-buffer'.\n(use-package ivy-rich\n :ensure t\n :config\n (ivy-set-display-transformer 'ivy-switch-buffer\n 'ivy-rich-switch-buffer-transformer)\n (setq-default ivy-rich-path-style 'abbrev\n ivy-virtual-abbreviate 'full\n ivy-rich-switch-buffer-align-virtual-buffer t))\n\n(use-package hydra\n :ensure t)\n\n(use-package ivy-hydra\n :ensure t\n :requires (ivy hydra)\n :after (ivy hydra))\n\n","subject":"Use ivy-rich for a nicer display of ivy-switch-buffer","message":"Use ivy-rich for a nicer display of ivy-switch-buffer\n","lang":"Emacs Lisp","license":"mit","repos":"Guilz\/emacs.d"} {"commit":"3c6a47aa3e7c25bf6d3e2be1261cf1bcf51602cb","old_file":"init-package\/init-erlang.el","new_file":"init-package\/init-erlang.el","old_contents":"(add-to-list 'auto-mode-alist '(\"\\\\.erl?$\" . erlang-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.hrl?$\" . erlang-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.spec?$\" . erlang-mode))\n(setq erlang-root-dir \"\/usr\/local\/lib\/erlang\/erts-5.9.2\")\n(add-to-list 'exec-path \"\/usr\/local\/lib\/erlang\/erts-5.9.2\/bin\")\n(setq erlang-man-root-dir \"\/usr\/local\/lib\/erlang\/erts-5.9.2\/man\")\n(setq erlang-compile-extra-opts '(debug_info))\n(require 'erlang-start)\n\n(add-hook 'erlang-mode-hook\n (lambda ()\n ;; when starting an Erlang shell in Emacs, with a custom node name\n (setq inferior-erlang-machine-options '(\"-sname\" \"syl20bnr\"))\n ))\n\n(require 'erlang-flymake)\n(erlang-flymake-only-on-save)\n","new_contents":"(add-to-list 'auto-mode-alist '(\"\\\\.erl?$\" . erlang-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.hrl?$\" . erlang-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.spec?$\" . erlang-mode))\n(setq erlang-root-dir \"\/usr\/local\/lib\/erlang\/erts-5.9.2\")\n(add-to-list 'exec-path \"\/usr\/local\/lib\/erlang\/erts-5.9.2\/bin\")\n(setq erlang-man-root-dir \"\/usr\/local\/lib\/erlang\/erts-5.9.2\/man\")\n(setq erlang-compile-extra-opts '(debug_info))\n(require 'erlang-start)\n\n(add-hook 'erlang-mode-hook\n (lambda ()\n ;; when starting an Erlang shell in Emacs, with a custom node name\n (setq inferior-erlang-machine-options '(\"-sname\" \"syl20bnr\"))\n ))\n\n;; not needed using EDTS\n;; (require 'erlang-flymake)\n;; (erlang-flymake-only-on-save)\n","subject":"Disable flymake for erlang, it is not needed with EDTS","message":"Disable flymake for erlang, it is not needed with EDTS\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"179657dc4770e68e801dba9ad3297d152f4cada6","old_file":"spacemacs\/init-extension\/init-solarized-theme.el","new_file":"spacemacs\/init-extension\/init-solarized-theme.el","old_contents":";; different method used than the documented one in order to speed up the\n;; loading of emacs\n(use-package solarized\n :init\n (progn \n (deftheme solarized-light \"The light variant of the Solarized colour theme\")\n (create-solarized-theme 'light 'solarized-light)\n (deftheme solarized-dark \"The dark variant of the Solarized colour theme\")\n (create-solarized-theme 'dark 'solarized-dark)\n (set-flycheck-custom-face)\n))\n\n","new_contents":";; different method used than the documented one in order to speed up the\n;; loading of emacs\n(use-package solarized\n :init\n (progn \n (deftheme solarized-light \"The light variant of the Solarized colour theme\")\n (create-solarized-theme 'light 'solarized-light)\n (deftheme solarized-dark \"The dark variant of the Solarized colour theme\")\n (create-solarized-theme 'dark 'solarized-dark)\n (spacemacs\/set-flycheck-custom-face)\n))\n\n","subject":"Fix init of Solarized theme","message":"Fix init of Solarized theme\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"796fe70aee49a79c580c65e3b4ebfdc0fd75262d","old_file":"emacs\/emacs.d\/pmade-local.el","new_file":"emacs\/emacs.d\/pmade-local.el","old_contents":";;; Local settings based on host name\n\n(defun pmade-local-settings ()\n (cond\n ((string= \"skinny.local\" system-name) (pmade-local:skinny))\n ((string= \"beefy.local\" system-name) (pmade-local:beefy))))\n\n(defun pmade-local:skinny ()\n \"Settings for my MacBook Pro\"\n (set-frame-position (selected-frame) 674 22)\n (set-frame-size (selected-frame) 106 56))\n\n(defun pmade-local:beefy ()\n \"Settings for my Mac Pro\")\n\n;; These settings only take affect if we're running the GUI.\n(if window-system\n (add-hook 'window-setup-hook 'pmade-local-settings t))\n","new_contents":";;; Local settings based on host name\n;; \n;; Some helpful functions:\n;; \n;; (frame-parameter (selected-frame) 'top)\n;; (frame-parameter (selected-frame) 'left)\n\n(defun pmade-local-settings ()\n (cond\n ((string= \"skinny.local\" system-name) (pmade-local:skinny))\n ((string= \"beefy.local\" system-name) (pmade-local:beefy))))\n\n(defun pmade-local:skinny ()\n \"Settings for my MacBook Pro\"\n (set-frame-position (selected-frame) 674 22)\n (set-frame-size (selected-frame) 106 56))\n\n(defun pmade-local:beefy ()\n \"Settings for my Mac Pro\"\n (set-frame-position (selected-frame) 874 38)\n (set-frame-size (selected-frame) 126 75))\n\n;; These settings only take affect if we're running the GUI.\n(if window-system\n (add-hook 'window-setup-hook 'pmade-local-settings t))\n","subject":"Configure Emacs windows for my desktop computer","message":"Configure Emacs windows for my desktop computer\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"05e99aa0a1dc582c9dfada8c81c3fadcbc68827f","old_file":"layers\/+tools\/ranger\/packages.el","new_file":"layers\/+tools\/ranger\/packages.el","old_contents":";;; packages.el --- ranger Layer packages File for Spacemacs\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Rich Alesi\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(setq ranger-packages\n '(\n (dired :location built-in)\n ranger\n ))\n\n(defun ranger\/\/set-leader-keys ()\n (spacemacs\/set-leader-keys\n \"ar\" 'ranger\n \"ad\" 'deer))\n\n(defun ranger\/init-ranger ()\n (use-package ranger\n :defer t\n :init\n (progn\n (ranger\/\/set-leader-keys)\n ;; set up image-dired to allow picture resize\n (setq image-dired-dir (concat spacemacs-cache-directory \"image-dir\"))\n (unless (file-directory-p image-dired-dir)\n (make-directory image-dired-dir)))\n :config\n (define-key ranger-mode-map (kbd \"-\") 'ranger-up-directory)))\n\n(defun ranger\/post-init-dired ()\n ;; Be sure to override dired bindings\n (ranger\/\/set-leader-keys))\n","new_contents":";;; packages.el --- ranger Layer packages File for Spacemacs\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Rich Alesi\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(setq ranger-packages\n '(\n (dired :location built-in)\n ranger\n ))\n\n(defun ranger\/\/set-leader-keys ()\n (spacemacs\/set-leader-keys\n \"ar\" 'ranger\n \"ad\" 'deer))\n\n(defun ranger\/init-ranger ()\n (use-package ranger\n :defer t\n :commands (ranger deer ranger-override-dired-fn)\n :init\n (progn\n (ranger\/\/set-leader-keys)\n ;; set up image-dired to allow picture resize\n (setq image-dired-dir (concat spacemacs-cache-directory \"image-dir\"))\n (unless (file-directory-p image-dired-dir)\n (make-directory image-dired-dir)))\n :config\n (define-key ranger-mode-map (kbd \"-\") 'ranger-up-directory)))\n\n(defun ranger\/post-init-dired ()\n ;; Be sure to override dired bindings\n (ranger\/\/set-leader-keys)\n ;; need to apply this to compensate for defer\n (when ranger-override-dired\n (add-hook 'dired-mode-hook #'ranger-override-dired-fn)))\n","subject":"Add commands for ranger to make accessible when defered.","message":"Add commands for ranger to make accessible when defered.\n\nsyl20bnr: move the code to dired post-init\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"30aa62b5d2fb92f0f38a9fed8420ce49040b2776","old_file":"emacs.d\/tj-go.el","new_file":"emacs.d\/tj-go.el","old_contents":"(require 'go-mode)\n\n(setq gofmt-command \"goimports\")\n(add-hook 'before-save-hook 'gofmt-before-save)\n\n;; running tests\n(defun go-test ()\n \"Runs tests for package in current buffer\"\n (interactive)\n (compile (concat \"ginkgo \" (file-name-directory (buffer-file-name)))))\n\n;; test toggling\n(eval-after-load 'find-file\n '(progn\n (add-to-list 'cc-other-file-alist '(\".go\" (\"_test.go\")))\n (add-to-list 'cc-other-file-alist '(\"_test.go\" (\".go\")))\n ))\n\n(define-key tj-map (kbd \"r t\") 'go-test)\n(global-set-key (kbd \"M-T\") 'ff-find-other-file)\n\n(provide 'tj-go)\n","new_contents":"(require 'go-mode)\n\n(setq gofmt-command \"goimports\")\n(add-hook 'before-save-hook 'gofmt-before-save)\n\n;; running tests\n(defun go-test ()\n \"Runs tests for package in current buffer\"\n (interactive)\n (compile (concat \"ginkgo \" (file-name-directory (buffer-file-name)))))\n\n(defun go-unfocus ()\n \"Unfocuses tests for the current file\"\n (interactive)\n (compile (concat \"ginkgo unfocus \" (file-name-directory (buffer-file-name))))\n (update-buffers))\n\n;; test toggling\n(eval-after-load 'find-file\n '(progn\n (add-to-list 'cc-other-file-alist '(\".go\" (\"_test.go\")))\n (add-to-list 'cc-other-file-alist '(\"_test.go\" (\".go\")))\n ))\n\n(define-key tj-map (kbd \"r t\") 'go-test)\n(define-key tj-map (kbd \"u f\") 'go-unfocus)\n(global-set-key (kbd \"M-T\") 'ff-find-other-file)\n\n(provide 'tj-go)\n","subject":"Add 'ginkgo unfocus' keybinding for emacs","message":"Add 'ginkgo unfocus' keybinding for emacs\n","lang":"Emacs Lisp","license":"mit","repos":"tjarratt\/dotfiles,tjarratt\/dotfiles"} {"commit":"93c699701c36a14a907d8b070dd7c8c17b0ae027","old_file":"emacs\/emacs.d\/my-emacs.el","new_file":"emacs\/emacs.d\/my-emacs.el","old_contents":"(require 'dash)\n\n(defun my-load-all ()\n (interactive)\n (let ((default-directory \"~\/my\/dotfiles\/emacs\/emacs.d\")\n (my-files\n (list \"my-fns\"\n \"my-env\"\n \"my-keys\"\n \"my-view\"\n \"my-sublime\"\n \"my-shell\"\n \"my-occur\"\n \"my-isearch\"\n \"my-help\"\n \"my-dired\"\n \"my-org-activity-log\"\n \"my-update-dot-emacs\"\n ))\n (my-non-packages\n ;; Files that aren't on MELPA or any other\n ;; package archive.\n (directory-files \"~\/.emacs.d\/third-party\" 'full \"\\\\.el$\" t))\n (my-private \"~\/.emacs.private.el\"))\n\n (my-load (if window-system \"my-gui\" \"my-terminal\"))\n\n (mapc 'my-load my-non-packages)\n ;; Load all my files: main reason to load this\n ;; before package customizations: they might\n ;; depend on functions in my-fns.el (and other\n ;; dependencies like that).\n (mapc 'my-load my-files)\n\n (dolist (package my-packages)\n (my-load (format \"my-%s.el\" package) 'ignore-if-missing))\n (my-load my-private 'ignore-if-missing)))\n\n(my-load-all)\n(recentf-open-files)\n","new_contents":"(require 'dash)\n\n(defun my-load-all ()\n (interactive)\n (let ((default-directory \"~\/my\/dotfiles\/emacs\/emacs.d\")\n (my-files\n (list \"my-fns\"\n \"my-env\"\n \"my-keys\"\n \"my-view\"\n \"my-sublime\"\n \"my-shell\"\n \"my-occur\"\n \"my-isearch\"\n \"my-help\"\n \"my-dired\"\n \"my-org-activity-log\"\n \"my-update-dot-emacs\"\n ))\n (my-non-packages\n ;; Files that aren't on MELPA or any other\n ;; package archive.\n (directory-files \"~\/.emacs.d\/third-party\" 'full \"\\\\.el$\" t))\n (my-private \"~\/.emacs.private.el\"))\n\n (my-load (if window-system \"my-gui\" \"my-terminal\"))\n\n (mapc 'my-load my-non-packages)\n ;; Load all my files: main reason to load this\n ;; before package customizations: they might\n ;; depend on functions in my-fns.el (and other\n ;; dependencies like that).\n (mapc 'my-load my-files)\n\n (dolist (package my-packages)\n (my-load (format \"my-%s.el\" package) 'ignore-if-missing))\n (my-load my-private 'ignore-if-missing)))\n\n(my-load-all)\n\n(unless window-system\n (recentf-open-files))\n","subject":"Disable recentf menu for window system","message":"Disable recentf menu for window system\n","lang":"Emacs Lisp","license":"mit","repos":"sri\/dotfiles,sri\/dotfiles,sri\/dotfiles"} {"commit":"6480f08affe5b2b71aceaf35a9a7c5f1c9b42a5c","old_file":".emacs.d\/config\/options.el","new_file":".emacs.d\/config\/options.el","old_contents":"; always use spaces and not tabs to indent code\n(setq-default indent-tabs-mode nil)\n\n; don't show menu bar\n(menu-bar-mode -1)\n\n; be more interactive ;)\n(ido-mode 1)\n\n; show line number\n(global-linum-mode 1)\n(setq linum-format \"%4d \")\n\n; display column number in status bar\n(setq column-number-mode t)\n\n; show matching pairs of parentheses\n(show-paren-mode 1)\n(setq show-paren-delay 0)\n\n; when splitting screen try to put new window on bottom\n(setq split-height-threshold 0)\n(setq split-width-threshold 0)\n","new_contents":"; always use spaces and not tabs to indent code\n(setq-default indent-tabs-mode nil)\n\n; don't show menu bar\n(menu-bar-mode -1)\n\n; be more interactive ;)\n(ido-mode 1)\n\n; show line number\n(global-linum-mode 1)\n(setq linum-format \"%4d \")\n\n; display column number in status bar\n(setq column-number-mode t)\n\n; show matching pairs of parentheses\n(show-paren-mode 1)\n(setq show-paren-delay 0)\n\n; when splitting screen try to put new window on bottom\n(setq split-height-threshold 0)\n(setq split-width-threshold 0)\n\n(when (eq system-type 'darwin)\n (when (file-exists-p \"\/opt\/local\/bin\/gls\")\n (setq insert-directory-program \"\/opt\/local\/bin\/gls\")\n (setq dired-listing-switches \"-aBhl --group-directories-first\")))\n","subject":"Use ls from coreutils when available on os x","message":"Use ls from coreutils when available on os x\n","lang":"Emacs Lisp","license":"mit","repos":"krzysztof-magosa\/dotfiles,krzysztof-magosa\/dotfiles"} {"commit":"64556499e21c92a7ef502eaf54be1a5c881cf2f9","old_file":"emacs\/emacs.d.symlink\/config\/key-config.el","new_file":"emacs\/emacs.d.symlink\/config\/key-config.el","old_contents":";;;; Config all the keybindings!\n\n(require 'evil)\n(require 'key-chord)\n\n\n;;; Misc\n(evil-set-toggle-key \"C-M-z\") ; because f clobbering my C-z...\n\n\n;;; Leader maps\n(evil-leader\/set-leader \"\")\n(key-chord-define evil-insert-state-map \"jk\" 'evil-normal-state) ; inoremap jk \n(evil-leader\/set-key \"hl\" 'evil-search-highlight-persist-remove-all)\n\n(evil-leader\/set-key\n \"bk\" 'kill-buffer\n \"\" 'switch-last-buffer)\n\n(evil-leader\/set-key\n \"hf\" 'describe-function\n \"hk\" 'describe-key\n \"hm\" 'describe-mode\n \"hv\" 'describe-variable)\n\n(evil-leader\/set-key\n \"j\" 'ace-jump-char-mode)\n\n(provide 'key-config)\n","new_contents":";;;; Config all the keybindings!\n\n(require 'evil)\n(require 'key-chord)\n\n\n;;; Misc\n(evil-set-toggle-key \"C-M-z\") ; because f clobbering my C-z...\n\n\n;;; Leader maps\n(evil-leader\/set-leader \"\")\n(key-chord-define evil-insert-state-map \"jk\" 'evil-normal-state) ; inoremap jk \n(evil-leader\/set-key \"hl\" 'evil-search-highlight-persist-remove-all)\n\n(evil-leader\/set-key\n \"bk\" 'kill-buffer\n \"\" 'switch-last-buffer)\n\n(evil-leader\/set-key\n \"hf\" 'describe-function\n \"hk\" 'describe-key\n \"hm\" 'describe-mode\n \"hv\" 'describe-variable)\n\n; Slightly cargo-culted; should probably find out what interactive does, ha\n(evil-leader\/set-key\n \"a=\" (lambda (begin end)\n (interactive \"r\")\n (align-regexp begin end \"\\\\(\\\\s-*\\\\)=>\" 1 1)))\n(evil-leader\/set-key\n \"a-\" (lambda (begin end)\n (interactive \"r\")\n (align-regexp begin end \"\\\\(\\\\s-*\\\\)->\" 1 1)))\n(evil-leader\/set-key\n \"aa\" 'align-regexp)\n\n(evil-leader\/set-key\n \"j\" 'ace-jump-char-mode)\n\n(provide 'key-config)\n","subject":"Add leader maps for aligning text","message":"Add leader maps for aligning text\n","lang":"Emacs Lisp","license":"mit","repos":"alexkuang\/dotfiles,alexkuang\/dotfiles"} {"commit":"801a007074a66272c8b5b211086448ebcf217925","old_file":"setup-files\/setup-shell.el","new_file":"setup-files\/setup-shell.el","old_contents":";; Time-stamp: <2014-07-01 14:16:19 kmodi>\n\n;; Shell Script Mode\n\n(defun my-sh-mode-customizations()\n (when (boundp 'setup-linum-loaded)\n (nlinum-mode 1))\n )\n(add-hook 'sh-mode-hook 'my-sh-mode-customizations)\n\n\n(provide 'setup-shell)\n","new_contents":";; Time-stamp: <2015-01-14 10:57:34 kmodi>\n\n;; Shell Script Mode\n\n(defun my\/tcsh-set-indent-functions ()\n (when (or (string-match \".*\\\\.alias\" (buffer-file-name))\n (string-match \".*\\\\.setup.*\" (buffer-file-name))\n (string-match \".*\\\\.cfg\" (buffer-file-name))\n (string-match \".*csh$\" (file-name-extension (buffer-file-name))))\n (require 'csh-mode) ; https:\/\/github.com\/Tux\/tcsh\/blob\/master\/csh-mode.el\n (setq-local indent-line-function 'csh-indent-line)\n (setq-local indent-region-function 'csh-indent-region)))\n(add-hook 'sh-set-shell-hook #'my\/tcsh-set-indent-functions)\n\n\n(provide 'setup-shell)\n","subject":"Fix indentation in buffers with tcsh scripts","message":"Fix indentation in buffers with tcsh scripts\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"987406ea740f38e77029f3eb2b6a78dbe88c8961","old_file":"emacs.d\/config\/config-look.el","new_file":"emacs.d\/config\/config-look.el","old_contents":"(setq x-alt-keysym 'meta)\n\n(when (fboundp 'tool-bar-mode)\n (tool-bar-mode -1)\n )\n\n(when (fboundp 'scroll-bar-mode)\n (scroll-bar-mode -1)\n )\n\n(setq\n inhibit-splash-screen t\n line-number-mode t\n column-number-mode t\n )\n\n(WhenOSX\n (set-face-attribute 'default nil\n :family \"Inconsolata\" :height 140 :weight 'normal)\n (my\/resize-frame-tall)\n (my\/resize-frame-wide)\n )\n\n(when (display-graphic-p)\n (add-hook 'after-make-frame-functions\n (lambda (frame)\n (let ((mode 'dark))\n (set-frame-parameter frame 'background-mode mode)\n (enable-theme 'solarized)\n )\n )\n )\n (load-theme 'solarized t)\n )\n","new_contents":"(setq x-alt-keysym 'meta)\n\n(when (fboundp 'tool-bar-mode)\n (tool-bar-mode -1)\n )\n\n(when (fboundp 'scroll-bar-mode)\n (scroll-bar-mode -1)\n )\n\n(setq\n inhibit-splash-screen t\n line-number-mode t\n column-number-mode t\n )\n\n(WhenOSX\n (set-face-attribute 'default nil\n :family \"Inconsolata\" :height 140 :weight 'normal)\n (my\/resize-frame-tall)\n (my\/resize-frame-wide)\n )\n\n(load-theme 'solarized-dark t)\n","subject":"Use the updated theme name","message":"Use the updated theme name\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"shaleh\/dot-files"} {"commit":"bcf8d6984c91905c393f3767e1c66cb2aba119b2","old_file":"init-markdown.el","new_file":"init-markdown.el","old_contents":"(autoload 'markdown-mode \"markdown-mode\" \"Mode for editing Markdown documents\" t)\n(setq auto-mode-alist\n (cons '(\"\\\\.\\\\(md\\\\|markdown\\\\)\\\\'\" . markdown-mode) auto-mode-alist))\n\n(provide 'init-markdown)\n","new_contents":"(setq auto-mode-alist\n (cons '(\"\\\\.\\\\(md\\\\|markdown\\\\)\\\\'\" . markdown-mode) auto-mode-alist))\n\n(provide 'init-markdown)\n","subject":"Remove redundant autoload for markdown-mode","message":"Remove redundant autoload for markdown-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"719d8436c79a25078ee568191ba95097cb54372b","old_file":"lisp\/init-misc.el","new_file":"lisp\/init-misc.el","old_contents":";;----------------------------------------------------------------------------\n;; Misc config - yet to be placed in separate files\n;;----------------------------------------------------------------------------\n(add-auto-mode 'tcl-mode \"Portfile\\\\'\")\n(fset 'yes-or-no-p 'y-or-n-p)\n\n(dolist (hook (if (fboundp 'prog-mode)\n '(prog-mode-hook ruby-mode-hook)\n '(find-file-hooks)))\n (add-hook hook 'goto-address-prog-mode))\n(add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)\n(setq goto-address-mail-face 'link)\n\n(setq-default regex-tool-backend 'perl)\n\n(add-auto-mode 'conf-mode \"Procfile\")\n\n\n(provide 'init-misc)\n","new_contents":";;----------------------------------------------------------------------------\n;; Misc config - yet to be placed in separate files\n;;----------------------------------------------------------------------------\n(add-auto-mode 'tcl-mode \"Portfile\\\\'\")\n(fset 'yes-or-no-p 'y-or-n-p)\n\n(when (fboundp 'prog-mode)\n (add-hook 'prog-mode-hook 'goto-address-prog-mode))\n(setq goto-address-mail-face 'link)\n\n(add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)\n\n(setq-default regex-tool-backend 'perl)\n\n(add-auto-mode 'conf-mode \"Procfile\")\n\n\n(provide 'init-misc)\n","subject":"Drop outdated assumption that ruby-mode might not be a prog-mode","message":"Drop outdated assumption that ruby-mode might not be a prog-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"kongfy\/emacs.d,purcell\/emacs.d,me020523\/emacs.d,qianwan\/emacs.d,wegatron\/emacs.d,sgarciac\/emacs.d,lust4life\/emacs.d,krzysz00\/emacs.d,arthurl\/emacs.d,benkha\/emacs.d,blueabysm\/emacs.d,roxolan\/emacs.d,braveoyster\/emacs.d,blueseason\/emacs.d,emuio\/emacs.d,dcorking\/emacs.d,cjqw\/emacs.d,kindoblue\/emacs.d,gsmlg\/emacs.d,mmqmzk\/emacs.d,baohaojun\/emacs.d,svenyurgensson\/emacs.d"} {"commit":"09e8249a10ea59956188887cd70cd97d50204ea9","old_file":"lib\/font-sets.el","new_file":"lib\/font-sets.el","old_contents":"\n(set-face-attribute 'default nil\n :family \"Inconsolata\" :height 145 :weight 'normal)\n\n;; Fallbacks for missing unicode glyphs\n(set-fontset-font \"fontset-default\"\n (cons (decode-char 'ucs #x21a2)\n (decode-char 'ucs #x21a3))\n '(\"Menlo\" . \"iso10646-1\")\n )\n(set-fontset-font \"fontset-default\"\n (cons (decode-char 'ucs #x21dd)\n (decode-char 'ucs #x2218))\n '(\"Menlo\" . \"iso10646-1\")\n )\n","new_contents":"(set-face-attribute 'default nil\n :family \"Inconsolata\" :height 145 :weight 'normal)\n\n(when (functionp 'set-fontset-font)\n ;; Fallbacks for missing unicode glyphs\n (set-fontset-font \"fontset-default\"\n (cons (decode-char 'ucs #x21a2)\n (decode-char 'ucs #x21a3))\n '(\"Menlo\" . \"iso10646-1\")\n )\n (set-fontset-font \"fontset-default\"\n (cons (decode-char 'ucs #x21dd)\n (decode-char 'ucs #x2218))\n '(\"Menlo\" . \"iso10646-1\")\n )\n )\n","subject":"Fix fontset issue when run in terminal","message":"Fix fontset issue when run in terminal\n","lang":"Emacs Lisp","license":"mit","repos":"tobytripp\/emacs.d,tobytripp\/emacs.d,tobytripp\/emacs.d,tobytripp\/emacs.d"} {"commit":"c7b16733a4a29c12819521e297f80f06c6de9d66","old_file":"plugins\/orgmode\/init.el","new_file":"plugins\/orgmode\/init.el","old_contents":";; Init file to use with the orgmode plugin.\n\n;; Load org-mode\n;; Requires org-mode v8.x\n\n;; Uncomment these lines and change the path to your org source to\n;; add use it.\n;; (let* ((org-lisp-dir \"~\/.emacs.d\/src\/org\/lisp\"))\n;; (when (file-directory-p org-lisp-dir)\n;; (add-to-list 'load-path org-lisp-dir)\n;; (require 'org)))\n\n(require 'ox-html)\n\n;; Custom configuration for the export.\n;;; Add any custom configuration that you would like.\n(setq\n org-export-with-toc nil\n org-export-with-section-numbers nil)\n\n;; Export function used by Nikola.\n(defun nikola-html-export (infile outfile)\n \"Export the body only of the input file and write it to\nspecified location.\"\n\n (with-current-buffer (find-file infile)\n (org-html-export-as-html nil nil t t)\n (write-file outfile nil)))\n","new_contents":";; Init file to use with the orgmode plugin.\n\n;; Load org-mode\n;; Requires org-mode v8.x\n\n;; Uncomment these lines and change the path to your org source to\n;; add use it.\n;; (let* ((org-lisp-dir \"~\/.emacs.d\/src\/org\/lisp\"))\n;; (when (file-directory-p org-lisp-dir)\n;; (add-to-list 'load-path org-lisp-dir)\n;; (require 'org)))\n\n(require 'ox-html)\n\n;; Custom configuration for the export.\n;;; Add any custom configuration that you would like.\n(setq\n org-export-with-toc nil\n org-export-with-section-numbers nil\n org-startup-folded 'showeverything)\n\n;; Export function used by Nikola.\n(defun nikola-html-export (infile outfile)\n \"Export the body only of the input file and write it to\nspecified location.\"\n\n (with-current-buffer (find-file infile)\n (org-html-export-as-html nil nil t t)\n (write-file outfile nil)))\n","subject":"Fix the output with the latest version of org-mode.","message":"Fix the output with the latest version of org-mode.\n\nOrg-mode had a bug fix, which changed the default mode of opening a\nbuffer and caused issues when exporting it. See [1] for details.\nThanks to 邓栓 for reporting it.\n\n[1] http:\/\/orgmode.org\/cgit.cgi\/org-mode.git\/commit\/?id=44acd000\n","lang":"Emacs Lisp","license":"mit","repos":"getnikola\/plugins,pluser\/nikola_plugins,pluser\/nikola_plugins,s2hc-johan\/plugins,lotabout\/plugins,getnikola\/plugins,pluser\/nikola_plugins,getnikola\/plugins,lotabout\/plugins,lotabout\/plugins,s2hc-johan\/plugins,s2hc-johan\/plugins"} {"commit":"df00c48f041ad04a958f41c9068dac132f6c7100","old_file":".emacs.d\/config\/emacs.el","new_file":".emacs.d\/config\/emacs.el","old_contents":";;; emacs.el --- General custom settings for Emacs\n\n\n\n;;; Code:\n\n; Turn off the startup screen\n(setq inhibit-startup-screen t)\n","new_contents":";;; emacs.el --- General custom settings for Emacs\n\n\n\n;;; Code:\n\n; Always indent with spaces, not tabs.\n(setq-default indent-tabs-mode nil)\n\n; Turn off the startup screen\n(setq inhibit-startup-screen t)\n","subject":"Make indentation always with spaces","message":"Make indentation always with spaces\n","lang":"Emacs Lisp","license":"mit","repos":"madintist\/emacs-config"} {"commit":"2e2506a94b922c8603aea16e66e192a393a5bc85","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"((erlang-mode\n (flycheck-erlang-include-path . (\"..\/include\"\n \"..\/..\/..\/_build\/test\/lib\"))\n (flycheck-erlang-library-path . (\"..\/..\/..\/_build\/default\/lib\/lager\/ebin\"\n \"..\/..\/..\/_build\/test\/lib\"))))\n","new_contents":"((erlang-mode\n (flycheck-erlang-include-path . (\"..\/include\"\n \"..\/..\/..\/_build\/test\/lib\"))\n (flycheck-erlang-library-path . (\"..\/..\/..\/_build\/default\/lib\/lager\/ebin\"\n \"..\/..\/..\/_build\/test\/lib\/proper\/ebin\"\n \"..\/..\/..\/_build\/test\/lib\"))))\n","subject":"Fix flycheck warning re: unknown parse transform","message":"Fix flycheck warning re: unknown parse transform\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"cvmfs\/cvmfs_services,cvmfs\/cvmfs_services"} {"commit":"81f6077c7838320b3b4b0f23ce19f7469c15c89a","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"((c++-mode . (;; Make includes work properly\n (eval . (set (make-local-variable 'flycheck-gcc-include-path)\n (set (make-local-variable 'flycheck-clang-include-path)\n (let ((dir-locals-dir\n (let ((d (directory-file-name (file-name-directory buffer-file-name))))\n (while (not (file-exists-p\n (format \"%s\/%s\" d \".dir-locals.el\")))\n (setq d (directory-file-name (file-name-directory d))))\n d)))\n (list (format \"%s\/%s\" dir-locals-dir \"src\")\n (format \"%s\/%s\" dir-locals-dir \"catch-raw\")\n (format \"%s\/%s\" dir-locals-dir \"plugins\"))))))\n (eval . (set (make-local-variable 'flycheck-gcc-warnings)\n (set (make-local-variable 'flycheck-clang-warnings)\n (list \"everything\"\n \"no-c++98-compat\"\n \"no-exit-time-destructors\"\n \"no-global-constructors\"\n \"no-documentation-unknown-command\"\n \"no-shadow\"\n \"no-padded\"))))))\n ;; apply to all source directories (including plugins)\n (subdirs . t))\n","new_contents":"((c++-mode . ( ;; Make includes work properly\n (eval .\n (set (make-local-variable\n 'flycheck-gcc-include-path)\n (set (make-local-variable\n 'flycheck-clang-include-path)\n (let ((dir-locals-dir\n (let ((d (directory-file-name\n (file-name-directory\n buffer-file-name))))\n (while (not (file-exists-p\n (format \"%s\/%s\" d\n \".dir-locals.el\")))\n (setq d (directory-file-name\n (file-name-directory\n d))))\n d)))\n (list (format \"%s\/%s\" dir-locals-dir\n \"src\")\n (format \"%s\/%s\" dir-locals-dir\n \"catch-raw\")\n (format \"%s\/%s\" dir-locals-dir\n \"plugins\"))))))\n (eval .\n (set (make-local-variable 'flycheck-gcc-warnings)\n (set (make-local-variable\n 'flycheck-clang-warnings)\n (list \"everything\" \"no-c++98-compat\"\n \"no-c++98-compat-pedantic\"\n \"no-exit-time-destructors\"\n \"no-global-constructors\"\n \"no-documentation-unknown-command\"\n \"no-shadow\" \"no-padded\"\n \"no-weak-vtables\"))))))\n ;; apply to all source directories (including plugins)\n (subdirs . t))\n","subject":"Remove other warnings that vick-build ignores","message":"Remove other warnings that vick-build ignores\n","lang":"Emacs Lisp","license":"mpl-2.0","repos":"czipperz\/vick,czipperz\/vick"} {"commit":"c409f041d2aacab05bd2d70d64c41c9cd70be888","old_file":"prog-mode\/.yas-setup.el","new_file":"prog-mode\/.yas-setup.el","old_contents":"(defun yas-with-comment (str)\n (format \"%s%s%s\" comment-start str comment-end))\n","new_contents":"(defun yas-with-comment (str)\n (format \"%s %s%s\" comment-start str comment-end))\n","subject":"Set a whitespace between comment-start and comment","message":"Set a whitespace between comment-start and comment\n","lang":"Emacs Lisp","license":"mit","repos":"jlhg\/yasnippet-snippets"} {"commit":"e6e03ceae284d6a6cb8cb38ffcd7bf1d29f1ab79","old_file":"emacs.d\/init.el","new_file":"emacs.d\/init.el","old_contents":"(message \"Loading my custom init.el\")\n\n;; Disable that pesky startup screen\n(custom-set-variables\n '(inhibit-startup-screen t))\n\n;; Default C\/C++ style\n(setq c-default-style \"bsd\")\n(setq-default indent-tabs-mode nil)\n(setq-default tab-width 3)\n(setq-default c-basic-offset 3)\n\n;; Python indenting\n(add-hook 'python-mode-hook\n (lambda ()\n (setq electric-indent-chars (delq ?: electric-indent-chars))))\n\n;; If color-theme is installed apply our favorite colors\n(when (require 'color-theme nil 'noerror)\n (when (display-graphic-p)\n (color-theme-initialize)\n (color-theme-deep-blue)))\n\n;; Set major modes for additional extensions\n(add-to-list 'auto-mode-alist '(\"\\\\.cl\\\\'\" . c-mode))\n\n;; custom key mappings for common spell checking operations\n(global-set-key (kbd \"\") 'flyspell-mode)\n(global-set-key (kbd \"\") 'flyspell-buffer)\n(global-set-key (kbd \"\") 'ispell-word)\n\n;; no verbose checking status (speeds things up)\n(setq flyspell-issue-message-flag nil)\n\n(message \"Finished loading init.el\")\n","new_contents":"(message \"Loading my custom init.el\")\n\n;; Disable that pesky startup screen\n(custom-set-variables\n '(inhibit-startup-screen t))\n\n;; Default C\/C++ style\n(setq c-default-style \"bsd\")\n(setq-default indent-tabs-mode nil)\n(setq-default tab-width 3)\n(setq-default c-basic-offset 3)\n\n;; Python indenting\n(add-hook 'python-mode-hook\n (lambda ()\n (setq electric-indent-chars (delq ?: electric-indent-chars))))\n\n;; If color-theme is installed apply our favorite colors\n(when (require 'color-theme nil 'noerror)\n (when (display-graphic-p)\n (color-theme-initialize)\n (color-theme-deep-blue)))\n\n;; Set major modes for additional extensions\n(add-to-list 'auto-mode-alist '(\"\\\\.cl\\\\'\" . c-mode)) ;; OpenCL kernels\n(add-to-list 'auto-mode-alist '(\"\\\\.proto\\\\'\" . c++-mode)) ;; Protobuf\n\n;; custom key mappings for common spell checking operations\n(global-set-key (kbd \"\") 'flyspell-mode)\n(global-set-key (kbd \"\") 'flyspell-buffer)\n(global-set-key (kbd \"\") 'ispell-word)\n\n;; no verbose checking status (speeds things up)\n(setq flyspell-issue-message-flag nil)\n\n(message \"Finished loading init.el\")\n","subject":"Enable c++-mode for protobuf source.","message":"Enable c++-mode for protobuf source.\n","lang":"Emacs Lisp","license":"mit","repos":"mgoldfar\/environment,mgoldfar\/bash_utils"} {"commit":"6489e2c09951af59f211ccfe7ea74e27c7ea1c91","old_file":"modes\/exwm-conf.el","new_file":"modes\/exwm-conf.el","old_contents":";;; exwm-conf.el -- Setting for EXWM.\n;;\n;; https:\/\/github.com\/ch11ng\/exwm\n(eval-when-compile\n (require 'exwm))\n\n(defun pjones:exwm-update-class-hook ()\n \"Update shit after a class name changes.\"\n (exwm-workspace-rename-buffer exwm-class-name))\n\n(custom-set-variables\n '(exwm-workspace-number 9)\n\n ;; Simulated key presses to X Windows.\n '(exwm-input-simulation-keys\n '(([?\\C-b] . [left])\n ([?\\C-f] . [right])\n ([?\\C-p] . [up])\n ([?\\C-n] . [down])\n ([?\\C-a] . [home])\n ([?\\C-e] . [end])\n ([?\\M-v] . [prior])\n ([?\\C-v] . [next])\n ([?\\C-d] . [delete])\n ([?\\C-k] . [S-end delete]))))\n\n(exwm-input-set-key (kbd \"s-r\") #'exwm-reset)\n(exwm-input-set-key (kbd \"s-w\") #'exwm-workspace-switch)\n(add-hook 'exwm-update-class-hook #'pjones:exwm-update-class-hook)\n","new_contents":";;; exwm-conf.el -- Setting for EXWM.\n;;\n;; https:\/\/github.com\/ch11ng\/exwm\n(eval-when-compile\n (require 'exwm))\n\n;; Load optional EXWM features:\n(require 'exwm-randr)\n(require 'exwm-systemtray)\n\n(defun pjones:exwm-update-class-hook ()\n \"Update shit after a class name changes.\"\n (exwm-workspace-rename-buffer exwm-class-name))\n\n(custom-set-variables\n ;; Move minibuffer to the top of the screen and auto hide:\n '(exwm-workspace-minibuffer-position 'top)\n\n ;; Number of workspaces:\n '(exwm-workspace-number 9)\n\n ;; RandR settings:\n '(exwm-randr-workspace-output-plist '(0 \"eDP1\"))\n\n ;; Simulated key presses to X Windows:\n '(exwm-input-simulation-keys\n '(([?\\C-b] . [left])\n ([?\\C-f] . [right])\n ([?\\C-p] . [up])\n ([?\\C-n] . [down])\n ([?\\C-a] . [home])\n ([?\\C-e] . [end])\n ([?\\M-v] . [prior])\n ([?\\C-v] . [next])\n ([?\\C-d] . [delete])\n ([?\\C-k] . [S-end delete]))))\n\n(exwm-input-set-key (kbd \"s-r\") #'exwm-reset)\n(exwm-input-set-key (kbd \"s-w\") #'exwm-workspace-switch)\n\n;; Activate optional features:\n(exwm-randr-enable)\n(exwm-systemtray-enable)\n\n;; Insert some hooks:\n(add-hook 'exwm-update-class-hook #'pjones:exwm-update-class-hook)\n","subject":"Add some EXWM settings that require a restart","message":"Add some EXWM settings that require a restart\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"c6a7f6bda058ba8b73ab1a28c7742fb507805322","old_file":"elisp\/setup-ui.el","new_file":"elisp\/setup-ui.el","old_contents":";;; setup-ui.el --- UI related configuration.\n;;; Commentary:\n;;; Code:\n\n;; get rid of everything other than the title at the top.\n(menu-bar-mode -1)\n(tool-bar-mode -1)\n(scroll-bar-mode -1)\n\n;; get rid of the annoying GNU Emacs buffer\n(setq inhibit-startup-screen t)\n\n;; load the latest theme.\n(load-theme 'avk-darkblue-white t)\n(set-face-attribute 'default nil :height 105)\n\n(use-package spaceline\n :ensure t\n :demand\n :config\n (require 'spaceline-config)\n (spaceline-spacemacs-theme)\n (setq spaceline-minor-modes-separator \" \"))\n\n;; Frame commands\n(global-set-key (kbd \"C-c F\") 'make-frame)\n(global-set-key (kbd \"C-c K\") 'delete-frame)\n\n\n;; no DING!\n(setq visible-bell 1)\n\n;; This has been driving me crazy. So new key binding.\n(global-set-key (kbd \"\") 'split-window-right)\n\n\n(provide 'setup-ui)\n;;; setup-ui.el ends here\n","new_contents":";;; setup-ui.el --- UI related configuration.\n;;; Commentary:\n;;; Code:\n\n;; get rid of everything other than the title at the top.\n(menu-bar-mode -1)\n(tool-bar-mode -1)\n(scroll-bar-mode -1)\n\n;; get rid of the annoying GNU Emacs buffer\n(setq inhibit-startup-screen t)\n\n;; load the latest theme.\n(load-theme 'avk-darkblue-white t)\n(set-face-attribute 'default nil :height 105)\n\n(use-package spaceline\n :ensure t\n :demand\n :config\n (require 'spaceline-config)\n (spaceline-spacemacs-theme)\n (setq spaceline-minor-modes-separator \" \"))\n\n;; Frame commands\n(global-set-key (kbd \"C-c F\") 'make-frame)\n(global-set-key (kbd \"C-c K\") 'delete-frame)\n\n\n;; no DING!\n(setq visible-bell 1)\n\n;; This has been driving me crazy. So new key binding.\n(global-set-key (kbd \"\") 'split-window-right)\n\n;; enlarge\/shrink current window\n(global-set-key (kbd \"s-f\") 'enlarge-window-horizontally)\n(global-set-key (kbd \"s-b\") 'shrink-window-horizontally)\n\n\n(provide 'setup-ui)\n;;; setup-ui.el ends here\n","subject":"Add enlarge\/shrink horizontally shortcuts for windows","message":"Add enlarge\/shrink horizontally shortcuts for windows\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"ab6e033becc07b471257dbab6ea153edd72d0acb","old_file":"setup-files\/setup-magit.el","new_file":"setup-files\/setup-magit.el","old_contents":";; Time-stamp: <2014-08-18 13:25:47 kmodi>\n\n;; magit\n;; Source: https:\/\/github.com\/magit\/magit\n\n(req-package magit\n :commands (magit-status)\n :requires (key-chord)\n :init\n (progn\n (bind-keys\n :map modi-mode-map\n (\"\" . magit-status)\n (\"\" . magit-push)\n (\"\" . magit-pull))\n (key-chord-define-global \"-[\" 'magit-status)) ;; alternative for F11\n :config\n (progn\n (setq magit-completing-read-function 'magit-ido-completing-read\n magit-auto-revert-mode nil\n magit-repo-dirs '( \"~\/.emacs.d\"))\n (magit-auto-revert-mode -1))) ;; Disable magit auto revert\n\n\n(provide 'setup-magit)\n","new_contents":";; Time-stamp: <2014-10-15 09:31:43 kmodi>\n\n;; magit\n;; Source: https:\/\/github.com\/magit\/magit\n\n(req-package magit\n :commands (magit-status)\n :requires (key-chord)\n :init\n (progn\n (bind-keys\n :map modi-mode-map\n (\"\" . magit-status)\n (\"\" . magit-push)\n (\"\" . magit-pull))\n (key-chord-define-global \"-[\" 'magit-status)) ;; alternative for F11\n :config\n (progn\n (setq magit-completing-read-function 'magit-ido-completing-read)\n (setq magit-auto-revert-mode nil)\n (setq magit-repo-dirs '( \"~\/.emacs.d\"))\n (setq magit-diff-options '(\"--ignore-space-change\"))\n (magit-auto-revert-mode -1) ;; Disable magit auto revert\n ;; While in \"*magit..*\" buffer on doing Commit (`c c'), the\n ;; \".. COMMIT_EDITMSG\" buffer opens and reuses the \"*magit ..\" window.\n ;; This is not useful when you'd want to add details about what you are\n ;; committing while reviewing the diff in \"*magit ..\" window. So ensure\n ;; that the \".. COMMIT_EDITMSG\" buffer always pops up in a new window.\n ;; `display-buffer-alist' = '(CONDITION . (FUNCTION . ALIST))\n (add-to-list 'display-buffer-alist\n '(\".*COMMIT_EDITMSG\". ((display-buffer-pop-up-window) .\n ((inhibit-same-window . t)))))))\n\n\n(provide 'setup-magit)\n","subject":"Make the COMMIT_EDITMSG buffer open in a new window and not reuse the *magit:..* window","message":"Make the COMMIT_EDITMSG buffer open in a new window and not reuse\nthe *magit:..* window\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"b35999eed958400764fe46b72b8afe00f840c359","old_file":"config\/color_theme.el","new_file":"config\/color_theme.el","old_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n;; (set-face-foreground 'mode-line \"black\")\n;; (set-face-background 'mode-line \"purple\")\n;; (set-face-background 'mode-line-inactive \"blue\")\n;; (set-face-background 'modeline-inactive \"red\")\n\n;; (setq custom-enabled-themes \"hipster\")\n;; (setq custom-safe-themes \"hipster\")\n;; (custom-safe-themes 'hipster-theme)\n\n\n;; We use a high contrast theme in the summer and a low contrast theme in the winter\n\n;; (setq sunny-month-list '(Apr May June July Aug Sept Oct))\n;; (setq high-contrast-theme 'badger)\n;; (setq low-contrast-theme 'zenburn)\n\n(load-theme 'badger)\n\n;; (set-color-theme-by-current-month(sunny-month-list high-contrast-theme low-contrast-theme)\n\n;; (custom-set-faces\n ;; '(neo-dir-link-face ((t (:foreground \"yellow\"))))\n ;; '(neo-dir-link-face ((t (:foreground \"color-64\"))))\n ;; '(neo-file-link-face ((t (:foreground \"color-244\")))))\n","new_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n;; (set-face-foreground 'mode-line \"black\")\n;; (set-face-background 'mode-line \"purple\")\n;; (set-face-background 'mode-line-inactive \"blue\")\n;; (set-face-background 'modeline-inactive \"red\")\n\n;; (setq custom-enabled-themes \"hipster\")\n;; (setq custom-safe-themes \"hipster\")\n;; (custom-safe-themes 'hipster-theme)\n\n\n;; We use a high contrast theme in the summer and a low contrast theme in the winter\n\n;; (setq sunny-month-list '(Apr May June July Aug Sept Oct))\n;; (setq high-contrast-theme 'badger)\n;; (setq low-contrast-theme 'zenburn)\n\n(add-hook 'after-init-hook (lambda () (load-theme 'badger)))\n;; (load-theme 'badger)\n\n;; (set-color-theme-by-current-month(sunny-month-list high-contrast-theme low-contrast-theme)\n\n;; (custom-set-faces\n ;; '(neo-dir-link-face ((t (:foreground \"yellow\"))))\n ;; '(neo-dir-link-face ((t (:foreground \"color-64\"))))\n ;; '(neo-file-link-face ((t (:foreground \"color-244\")))))\n","subject":"Fix question about loading theme on every Emacs startup","message":"Fix question about loading theme on every Emacs startup\n","lang":"Emacs Lisp","license":"unlicense","repos":"schanur\/emacs.d"} {"commit":"41c4a8e2109380b7bc8c4f50867076792933c9a6","old_file":"rc\/emacsclient.el","new_file":"rc\/emacsclient.el","old_contents":";; Define function to shutdown emacs server instance\n;; Can be called from shell with: emacsclient -e '(server-shutdown)'\n(defun server-shutdown ()\n \"Save buffers, Quit, and Shutdown (kill) server\"\n (interactive)\n (save-some-buffers)\n (kill-emacs)\n )\n\n(server-start)\n","new_contents":";; Define function to shutdown emacs server instance\n;; Can be called from shell with: emacsclient -e '(server-shutdown)'\n(defun server-shutdown ()\n \"Save buffers, Quit, and Shutdown (kill) server\"\n (interactive)\n (save-some-buffers)\n (kill-emacs)\n )\n\n;; To start the emacs server, call:\n;; (server-start)\n","subject":"Disable starting the server automatically","message":"Disable starting the server automatically\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"peterhil\/emacs-config"} {"commit":"d9a627ce49ca24e8349da563c4fbf267b81de914","old_file":".emacs.d\/custom.el","new_file":".emacs.d\/custom.el","old_contents":";; custom.el\n(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(tramp-default-method \"ssh\"))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":";; custom.el\n(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(org-hide-emphasis-markers t)\n '(tramp-default-method \"ssh\"))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Hide org markup markers in org files.","message":"Hide org markup markers in org files.\n","lang":"Emacs Lisp","license":"mit","repos":"PurityControl\/config-files,PurityControl\/config-files"} {"commit":"ab4d364a00718987a4b45b243d9da214da33fae5","old_file":"home\/.emacs.d\/lisp\/init-isearch.el","new_file":"home\/.emacs.d\/lisp\/init-isearch.el","old_contents":";;; init-isearch.el -- isearch setup\n\n;;; Commentary:\n;;; use anzu instead of isearch\n\n;;; Code:\n(require 'use-package)\n\n(use-package anzu\n :bind ((\"C-M-%\" . anzu-query-replace-regexp)\n (\"M-%\" . anzu-query-replace)\n (\"C-s\" . isearch-forward-regexp)\n (\"C-r\" . isearch-backward-regexp))\n :defer t\n :diminish anzu-mode\n :init\n (global-anzu-mode 1))\n\n(provide 'init-isearch)\n;;; init-isearch.el ends here\n","new_contents":";;; init-isearch.el -- isearch setup\n\n;;; Commentary:\n;;; use anzu instead of isearch\n\n;;; Code:\n(require 'use-package)\n\n(use-package anzu\n :bind ((\"C-M-%\" . anzu-query-replace-regexp)\n (\"M-%\" . anzu-query-replace)\n (\"C-s\" . isearch-forward-regexp)\n (\"C-r\" . isearch-backward-regexp))\n :defer t\n :diminish anzu-mode\n :init\n (global-anzu-mode 1))\n\n(use-package flx-isearch\n :bind ((\"C-s\" . my\/isearch-forward)\n (\"C-r \" . my\/isearch-backward))\n :config\n (defun my\/isearch-forward (&optional regexp-p no-recursive-edit)\n (interactive \"P\\np\")\n (cond ((equal current-prefix-arg nil) (flx-isearch-forward))\n ((equal current-prefix-arg '(4)) (isearch-forward-regexp))\n (t (isearch-forward))))\n (defun my\/isearch-backward (&optional regexp-p no-recursive-edit)\n (interactive \"P\\np\")\n (cond ((equal current-prefix-arg nil) (flx-isearch-backward))\n ((equal current-prefix-arg '(4)) (isearch-backward-regexp))\n (t (isearch-backward)))))\n\n(provide 'init-isearch)\n;;; init-isearch.el ends here\n","subject":"Use flx-isearch in place of isearch by default","message":"Use flx-isearch in place of isearch by default\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"fc64f14d8dfd04acc6deeacedf44a3623ead1d85","old_file":"elisp\/web-programming.el","new_file":"elisp\/web-programming.el","old_contents":";;; web-programming.el --- Web programming configuration.\n;;; Commentary:\n;;; Code:\n\n(use-package web-mode\n :ensure t\n :commands (web-mode)\n :mode\n ((\"\\\\.phtml\\\\'\" . web-mode)\n (\"\\\\.tpl\\\\.php\\\\'\" . web-mode)\n (\"\\\\.[agj]sp\\\\'\" . web-mode)\n (\"\\\\.as[cp]x\\\\'\" . web-mode)\n (\"\\\\.erb\\\\'\" . web-mode)\n (\"\\\\.mustache\\\\'\" . web-mode)\n (\"\\\\.djhtml\\\\'\" . web-mode)\n (\"\\\\.html?\\\\'\" . web-mode))\n :config\n (progn\n (setq web-mode-css-indent-offset 2)\n (setq web-mode-code-indent-offset 4)\n (setq web-mode-comment-style 2)\n (setq web-mode-script-padding 0)\n (setq web-mode-enable-current-element-highlight t)\n (setq web-mode-engines-alist\n '((\"django\" . \"\\\\.html\\\\'\"))\n )))\n\n(use-package emmet-mode\n :ensure t\n :config\n (progn\n (add-hook 'web-mode-hook 'emmet-mode)))\n\n(provide 'web-programming)\n;;; web-programming.el ends here\n","new_contents":";;; web-programming.el --- Web programming configuration.\n;;; Commentary:\n;;; Code:\n\n(use-package web-mode\n :ensure t\n :commands (web-mode)\n :mode\n ((\"\\\\.phtml\\\\'\" . web-mode)\n (\"\\\\.tpl\\\\.php\\\\'\" . web-mode)\n (\"\\\\.[agj]sp\\\\'\" . web-mode)\n (\"\\\\.as[cp]x\\\\'\" . web-mode)\n (\"\\\\.erb\\\\'\" . web-mode)\n (\"\\\\.mustache\\\\'\" . web-mode)\n (\"\\\\.djhtml\\\\'\" . web-mode)\n (\"\\\\.html?\\\\'\" . web-mode))\n :config\n (progn\n (setq web-mode-css-indent-offset 2)\n (setq web-mode-code-indent-offset 4)\n (setq web-mode-comment-style 2)\n (setq web-mode-script-padding 0)\n (setq web-mode-enable-current-element-highlight t)\n (setq web-mode-engines-alist\n '((\"django\" . \"\\\\.html\\\\'\"))\n )))\n\n;; electric pair and web mode have conflicts.\n;; so, at least for now disable \"{}\" matching for electric pair\n(setq electric-pair-inhibit-predicate\n (lambda (chr)\n (and (equal (format \"%s\" major-mode) \"web-mode\")\n (char-equal chr ?\\{))))\n\n;; Emmet!!!\n(use-package emmet-mode\n :ensure t\n :config\n (progn\n (add-hook 'web-mode-hook 'emmet-mode)))\n\n(provide 'web-programming)\n;;; web-programming.el ends here\n","subject":"Remove `{' electric pair from web mode. This is a temporary change. Will try a way to fix it.","message":"Remove `{' electric pair from web mode.\nThis is a temporary change. Will try a way to fix it.\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"5c9e21814e2907eaaedaed156afc602526af0815","old_file":"modules\/config\/default\/autoload\/deferred.el","new_file":"modules\/config\/default\/autoload\/deferred.el","old_contents":";;; config\/default\/autoload\/deferred.el -*- lexical-binding: t; -*-\n\n;; TODO generalize this\n;;;###autoload\n(defun +default\/lsp-command-map ()\n \"Lazily invoke `lsp-command-map'.\"\n (interactive)\n (require 'lsp-mode)\n (map! :leader \"c l\" lsp-command-map)\n (dolist (leader-key (list doom-leader-key doom-leader-alt-key))\n (let ((lsp-keymap-prefix (concat leader-key \" c l\")))\n (lsp-enable-which-key-integration)))\n (setq prefix-arg current-prefix-arg\n unread-command-events\n (mapcar (lambda (e) (cons t e))\n (vconcat (when evil-this-operator\n (where-is-internal evil-this-operator\n evil-normal-state-map\n t))\n (this-command-keys)))))\n","new_contents":";;; config\/default\/autoload\/deferred.el -*- lexical-binding: t; -*-\n\n;; TODO generalize this\n;;;###autoload\n(defun +default\/lsp-command-map ()\n \"Lazily invoke `lsp-command-map'.\"\n (interactive)\n (require 'lsp-mode)\n (map! :leader \"c l\" lsp-command-map)\n (dolist (leader-key (list doom-leader-key doom-leader-alt-key))\n (let ((lsp-keymap-prefix (concat leader-key \" c l\")))\n (lsp-enable-which-key-integration)))\n (setq prefix-arg current-prefix-arg\n unread-command-events\n (mapcar (lambda (e) (cons t e))\n (vconcat (when (and (fboundp 'evil-this-operator)\n evil-this-operator)\n (where-is-internal evil-this-operator\n evil-normal-state-map\n t))\n (this-command-keys)))))\n","subject":"Fix non evil environment (void variable evil this operator)","message":"Fix non evil environment (void variable evil this operator)","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"3c4edd92783bd878b3ec946867f7684e084c7a0a","old_file":"modes\/markdown-mode-conf.el","new_file":"modes\/markdown-mode-conf.el","old_contents":";;; markdown-conf.el -- Settings for markdown-mode.\n(eval-when-compile (require 'markdown-mode))\n\n(setq markdown-command \"pandoc -f markdown -t html\"\n markdown-follow-wiki-link-on-enter nil)\n\n(defun pjones:markdown-mode-hook ()\n \"Set up key bindings and other crap for markdown-mode.\"\n (local-set-key (kbd \"C-c C-o\") 'markdown-follow-link-at-point)\n\n ;; Files in \/tmp that are *.txt are from my browser and most\n ;; websites don't like it when text you submit has newlines.\n (when (string-match \"^\/tmp\/.*\\\\.txt$\" (buffer-file-name))\n (longlines-mode)))\n\n(add-hook 'markdown-mode-hook 'whitespace-mode)\n(add-hook 'markdown-mode-hook 'pjones:markdown-mode-hook)\n","new_contents":";;; markdown-conf.el -- Settings for markdown-mode.\n(eval-when-compile\n (require 'markdown-mode))\n\n(setq markdown-command \"pandoc -f markdown -t html\"\n markdown-follow-wiki-link-on-enter nil)\n\n(defun pjones:markdown-mode-hook ()\n \"Set up key bindings and other crap for markdown-mode.\"\n (local-set-key (kbd \"C-c C-o\") 'markdown-follow-link-at-point)\n\n ;; Files in \/tmp that are *.txt are from my browser and most\n ;; websites don't like it when text you submit has newlines.\n (when (string-match \"^\/tmp\/.*\\\\.txt$\" (buffer-file-name))\n (visual-line-mode)))\n\n(add-hook 'markdown-mode-hook 'whitespace-mode)\n(add-hook 'markdown-mode-hook 'pjones:markdown-mode-hook)\n","subject":"Use visual-line-mode instead of the deprecated longlines-mode","message":"Emacs: Use visual-line-mode instead of the deprecated longlines-mode\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"202b6239d51d6bcc1aefdc136955f8ba4e374fac","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +prescient +fuzzy)\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n treemacs\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n vc\n\n :tools\n lookup\n eval\n make\n magit\n lsp\n editorconfig\n pdf\n ein\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +lsp)\n (org\n +attach\n +babel\n +export)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp)\n (fsharp +lsp)\n\n :checkers\n spell\n syntax\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n (write ; emacs as a word processor (latex + org + markdown)\n +wordnut ; wordnet (wn) search\n +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n )\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +prescient +fuzzy)\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n treemacs\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n vc\n\n :tools\n lookup\n eval\n make\n magit\n lsp\n editorconfig\n pdf\n ein\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +lsp)\n (org\n +attach\n +babel\n +export)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp)\n (fsharp +lsp)\n\n :checkers\n spell\n syntax\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n )\n","subject":"Disable emacs doom :app write, replaced by :ui zen","message":"Disable emacs doom :app write, replaced by :ui zen\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"81ef1494849501ca12ec1605dea59e101ab22f19","old_file":"standard_emacs_d_init.el","new_file":"standard_emacs_d_init.el","old_contents":";; backup in one place. flat, no tree structure\n;; http:\/\/ergoemacs.org\/emacs\/emacs_set_backup_into_a_directory.html\n(setq backup-directory-alist '((\"\" . \"~\/.emacs.d\/emacs-backup\")))\n\n","new_contents":";; backup in one place. flat, no tree structure\n;; http:\/\/ergoemacs.org\/emacs\/emacs_set_backup_into_a_directory.html\n(setq backup-directory-alist '((\"\" . \"~\/.emacs.d\/emacs-backup\")))\n\n;; setup for installing markdown-mode\n;; https:\/\/jblevins.org\/projects\/markdown-mode\/\n(require 'package)\n(add-to-list 'package-archives\n\t '(\"melpa-stable\"\n\t . \"https:\/\/stable.melpa.org\/packages\/\"))\n(package-initialize)\n","subject":"Add Melpa package repo for markdown-mode installation","message":"Add Melpa package repo for markdown-mode installation\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"philipwilcox\/homedir"} {"commit":"ae11b1848c0d9718ec0c2ca8ccd57234bc0a8258","old_file":"lisp\/init-rails.el","new_file":"lisp\/init-rails.el","old_contents":"(when (maybe-require-package 'projectile-rails)\n (after-load 'projectile\n (add-hook 'projectile-mode-hook 'projectile-rails-on)\n (after-load 'guide-key\n (add-to-list 'guide-key\/guide-key-sequence \"C-c r\"))))\n\n\n(provide 'init-rails)\n","new_contents":"(when (maybe-require-package 'projectile-rails)\n (after-load 'projectile\n (add-hook 'projectile-mode-hook 'projectile-rails-on)\n (after-load 'guide-key\n (add-to-list 'guide-key\/guide-key-sequence \"C-c r\")\n (add-to-list 'guide-key\/guide-key-sequence \"C-c r !\")\n (add-to-list 'guide-key\/guide-key-sequence \"C-c r g\"))))\n\n\n(provide 'init-rails)\n","subject":"Add more guide-key sequences for projectile-rails","message":"Add more guide-key sequences for projectile-rails\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"qianwan\/emacs.d,roxolan\/emacs.d,blueseason\/emacs.d,gsmlg\/emacs.d,braveoyster\/emacs.d,emuio\/emacs.d,kindoblue\/emacs.d,lust4life\/emacs.d,arthurl\/emacs.d,sgarciac\/emacs.d,me020523\/emacs.d,purcell\/emacs.d,wegatron\/emacs.d,cjqw\/emacs.d,blueabysm\/emacs.d,mmqmzk\/emacs.d,baohaojun\/emacs.d,svenyurgensson\/emacs.d,krzysz00\/emacs.d,benkha\/emacs.d,kongfy\/emacs.d,dcorking\/emacs.d"} {"commit":"426b891b0c62a1ec0d29cda512f6ca81cdd932ca","old_file":"setup-files\/setup-nim.el","new_file":"setup-files\/setup-nim.el","old_contents":";; Time-stamp: <2018-05-24 11:56:21 kmodi>\n\n;; Nim\n;; https:\/\/github.com\/nim-lang\/nim-mode\n\n(use-package nim-mode\n :ensure t\n :mode ((\"\\\\.nim\\\\'\" . nim-mode))\n :config\n (progn\n (bind-chords\n :map nim-mode-map\n (\"??\" . devdocs-lookup))\n (with-eval-after-load 'smart-compile\n (add-to-list 'smart-compile-alist\n '(nim-mode . \"nim c --verbosity:0 %f\")))\n\n (when (executable-find \"nimsuggest\")\n (setq nim-nimsuggest-path (executable-find \"nimsuggest\"))\n ;; Currently nimsuggest doesn't support nimscript files, so only nim-mode ..\n ;; nimsuggest will provide hints in the minibuffer using `eldoc-mode'.\n (add-hook 'nim-mode-hook #'nimsuggest-mode)\n ;; (remove-hook 'nim-mode-hook #'nimsuggest-mode)\n )\n\n (use-package ob-nim\n :ensure t\n :config\n (progn\n (with-eval-after-load 'setup-org\n (add-to-list 'modi\/ob-enabled-languages \"nim\" :append))))))\n\n\n(provide 'setup-nim)\n","new_contents":";; Time-stamp: <2018-06-19 12:13:42 kmodi>\n\n;; Nim\n;; https:\/\/github.com\/nim-lang\/nim-mode\n\n(use-package nim-mode\n :ensure t\n :mode ((\"\\\\.nim\\\\'\" . nim-mode))\n :config\n (progn\n (bind-chords\n :map nim-mode-map\n (\"??\" . devdocs-lookup))\n (with-eval-after-load 'smart-compile\n (add-to-list 'smart-compile-alist\n ;; Devel build of nim is needed for --nep1:on\n ;; switch support.\n '(nim-mode . \"nim c --verbosity:0 --nep1:on %f\")))\n\n (when (executable-find \"nimsuggest\")\n (setq nim-nimsuggest-path (executable-find \"nimsuggest\"))\n ;; Currently nimsuggest doesn't support nimscript files, so only nim-mode ..\n ;; nimsuggest will provide hints in the minibuffer using `eldoc-mode'.\n (add-hook 'nim-mode-hook #'nimsuggest-mode)\n ;; (remove-hook 'nim-mode-hook #'nimsuggest-mode)\n )\n\n (use-package ob-nim\n :ensure t\n :config\n (progn\n (with-eval-after-load 'setup-org\n (add-to-list 'modi\/ob-enabled-languages \"nim\" :append))))))\n\n\n(provide 'setup-nim)\n","subject":"Add --nep1:on switch to smart-compile-alist for nim","message":"Add --nep1:on switch to smart-compile-alist for nim\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"b143976cb85a08ea972b1bfb4d0fb4c1e76140e7","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((nil . ((indent-tabs-mode . nil)\n (fill-column . 80)))\n (c++-mode . ((page-delimiter . \"^\/\/\/\")\n (mode . subword)))\n (c-mode . ((page-delimiter . \"^\/\/\/\")\n (mode . subword))))\n","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((nil . ((indent-tabs-mode . nil)\n (fill-column . 80)))\n (c++-mode . ((page-delimiter . \"^\/\/\/\")\n (mode . subword)))\n (c-mode . ((page-delimiter . \"^\/\/\/\")\n (mode . subword)))\n (\"elisp\/runfiles\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path \"..\/..\/\")))))\n (\"examples\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path \"..\/\" \".\/\" \"ext\/\" \"..\/bazel-bin\/\")))))\n (\"tests\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path \"..\/\")))))\n (\"tests\/pkg\/\" . ((emacs-lisp-mode . ((elisp-flymake-byte-compile-load-path . (\"..\/..\/\")))))))\n","subject":"Add necessary load paths to make Flymake work","message":"Add necessary load paths to make Flymake work\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp"} {"commit":"88bf4e8468d320244b71a4ec6dc216da8f5561b9","old_file":".emacs.d\/lisp\/init-ledger.el","new_file":".emacs.d\/lisp\/init-ledger.el","old_contents":";;;; LEDGER SETTINGS\n\n(use-package ledger-mode\n :ensure t)\n\n(add-to-list 'auto-mode-alist '(\"\\\\.ledger$\" . ledger-mode))\n\n(provide 'init-ledger)\n","new_contents":";;;; LEDGER SETTINGS\n\n(use-package ledger-mode\n :ensure t)\n\n(add-to-list 'auto-mode-alist '(\"\\\\.ledger$\" . ledger-mode))\n\n;; Use ISO-8601 date formats, for sh*t's sake\n(setq ledger-use-iso-dates t)\n\n(provide 'init-ledger)\n","subject":"Set ledger-mode's date format to ISO-8601","message":"Set ledger-mode's date format to ISO-8601\n","lang":"Emacs Lisp","license":"mit","repos":"jstamant\/dotfiles,jstamant\/dotfiles"} {"commit":"c165f2fdb9425c681eba3d525eb54157216a8f17","old_file":"init-haskell.el","new_file":"init-haskell.el","old_contents":"(require-package 'haskell-mode)\n\n(add-hook 'haskell-mode-hook\n (lambda ()\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (turn-on-haskell-doc-mode)\n (turn-on-haskell-indent)))\n\n(eval-after-load 'haskell-mode\n '(define-key haskell-mode-map (kbd \"RET\") 'newline))\n\n(require-package 'ghci-completion)\n(add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion)\n\n(require-package 'flymake-hlint)\n(add-hook 'haskell-mode-hook #'flymake-hlint-load)\n\n(provide 'init-haskell)\n","new_contents":"(require-package 'haskell-mode)\n\n(dolist (hook '(haskell-mode-hook inferior-haskell-mode-hook))\n (add-hook hook 'turn-on-haskell-doc-mode))\n\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)\n\n(eval-after-load 'haskell-mode\n '(progn\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (define-key haskell-mode-map (kbd \"RET\") 'newline)))\n\n(require-package 'ghci-completion)\n(add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion)\n\n(require-package 'flymake-hlint)\n(add-hook 'haskell-mode-hook #'flymake-hlint-load)\n\n(provide 'init-haskell)\n","subject":"Enable more functionality in inferior-haskell-mode","message":"Enable more functionality in inferior-haskell-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"Togal\/emacs.d,me020523\/emacs.d,lust4life\/emacs.d,bibaijin\/emacs.d,LittleLmp\/emacs.d,lujianmei\/emacs.d,dhanunjaya\/emacs.d,atreeyang\/emacs.d,emuio\/emacs.d,zhaotai\/.emacs.d,Enzo-Liu\/emacs.d,farzadbekran\/emacs.d,baohaojun\/emacs.d,pairyo\/emacs.d,jkaessens\/emacs.d,wegatron\/emacs.d,jhpx\/emacs.d,46do14\/emacs.d,Werewolflsp\/emacs.d,LKI\/emacs.d,jachinpy\/emacs.d,braveoyster\/emacs.d,ruiyang\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,carlosliu\/emacs.d,mpwang\/emacs.d,Shanicky\/emacs.d,ilove0518\/emacs.d,jthetzel\/emacs.d,hophacker\/emacs.d,zenith-john\/emacs.d,kongfy\/emacs.d,krzysz00\/emacs.d,caoyuanqi\/emacs.d,danfengcao\/emacs.d,mmqmzk\/emacs.d,dcorking\/emacs.d,sgarciac\/emacs.d,cjqw\/emacs.d,whizzzkid\/emacs.d,svenyurgensson\/emacs.d,qianwan\/emacs.d,blueabysm\/emacs.d,cyjia\/emacs.d,wenpincui\/emacs.d,shafayetkhan\/emacs.d,dongdonghu\/.emacs.d,exclamaforte\/emacs.d,haodaivshen\/emacs.d,ernest-dzf\/emacs.d,zhuoyikang\/emacs.d,farzadbekran\/emacs.d,scorpionis\/emacs.d,modkzs\/emcs.d,renatoriccio\/emacs.d,purcell\/emacs.d,gsmlg\/emacs.d,DarkThrone\/emacs.d,kindoblue\/emacs.d,lromang\/emacs.d,arthurl\/emacs.d,jachinpy\/emacs.d,fengxl\/emacs.d,hkcqr\/emacs.d,Guoozz\/emacs.d,farzadbekran\/emacs.d,blueseason\/emacs.d,qinshulei\/emacs.d,benkha\/emacs.d,ruiyang\/emacs.d,Jadecity\/PurcellEmacs.d,roxolan\/emacs.d,alant\/emacs.d,boblannon\/emacs.d"} {"commit":"d2d3eb0bf5ce9d0c1da423fc8db91dee2cfafeb8","old_file":"emacs\/init-files\/js-mode.el","new_file":"emacs\/init-files\/js-mode.el","old_contents":";; JS Mode\n\n(add-to-list 'auto-mode-alist '(\"\\\\.js\\\\'\" . js2-mode))\n","new_contents":";; * JS Mode\n\n(add-to-list 'auto-mode-alist '(\"\\\\.js\\\\'\" . js2-mode))\n\n;; ** Flycheck\n\n(setq js2-strict-missing-semi-warning nil)\n","subject":"Remove JS2 mode missing semicolon warning","message":"[Emacs] Remove JS2 mode missing semicolon warning\n","lang":"Emacs Lisp","license":"cc0-1.0","repos":"lepieru\/myconfig,lepieru\/myconfig,lepieru\/myconfig"} {"commit":"c7103b07ddd7879d21c5cb20370661f7f96a3c6f","old_file":".emacs.d\/lisp\/keybinds.el","new_file":".emacs.d\/lisp\/keybinds.el","old_contents":";;; keybinds.el --- For miscellaneous keybindings that don't fit elsewhere\n\n(setq leader \"SPC\"\n leader-double \"SPC SPC\"\n fallback-leader \"C-c C-d\" ; Fallback used when evil is inactive\n fallback-leader-double \"C-c C-d C-d\")\n\n(defmacro leader-map (&rest maps)\n \"Assign the given maps with prefix leader in evil normal mode and\nfallback-leader elsewhere.\"\n `(progn\n (general-define-key :keymaps 'evil-normal-state-map\n :prefix leader\n ,@maps)\n (general-define-key :prefix fallback-leader\n ,@maps)))\n\n(leader-map \"f\" 'find-file\n \"d\" 'switch-to-buffer)\n\n(global-set-key (kbd \"\") 'base-lib\/echo-major-mode)\n(global-set-key (kbd \"\") 'base-lib\/open-emacs-config)\n(global-set-key (kbd \"\") 'base-lib\/list-packages)\n\n(provide 'keybinds)\n\n;;; keybinds.el ends here\n","new_contents":";;; keybinds.el --- For miscellaneous keybindings that don't fit elsewhere\n\n(setq leader \"SPC\"\n leader-double \"SPC SPC\"\n fallback-leader \"C-c C-d\" ; Fallback used when evil is inactive\n fallback-leader-double \"C-c C-d C-d\")\n\n(defun leader-map (&rest maps)\n \"Assign the given maps with prefix leader in evil normal mode and\nfallback-leader elsewhere.\"\n (apply 'general-define-key\n :keymaps 'evil-normal-state-map\n :prefix leader\n maps)\n (apply 'general-define-key\n :prefix fallback-leader\n maps))\n\n(leader-map \"f\" 'find-file\n \"d\" 'switch-to-buffer)\n\n(global-set-key (kbd \"\") 'base-lib\/echo-major-mode)\n(global-set-key (kbd \"\") 'base-lib\/open-emacs-config)\n(global-set-key (kbd \"\") list-packages)\n\n(provide 'keybinds)\n\n;;; keybinds.el ends here\n","subject":"Make leader-map not a macro; fix misnamed function","message":"Make leader-map not a macro; fix misnamed function\n","lang":"Emacs Lisp","license":"mit","repos":"strburst\/dotfiles"} {"commit":"d7abd0cf82b62bf350505785595d26b132049866","old_file":"modules\/lang\/dart\/config.el","new_file":"modules\/lang\/dart\/config.el","old_contents":";;; lang\/dart\/config.el -*- lexical-binding: t; -*-\n\n(use-package! dart-mode\n :when (featurep! +lsp)\n :hook (dart-mode-local-vars . lsp!)\n :config\n (when (and (featurep! +flutter) IS-LINUX)\n (when-let (path (doom-glob \"\/opt\/flutter\/bin\/cache\/dart-sdk\"))\n (setq flutter-sdk-path path))))\n\n\n(use-package! flutter\n :when (featurep! +flutter)\n :defer t\n :config\n (map! :map dart-mode-map\n :localleader\n \"r\" #'flutter-run-or-hot-reload))\n\n\n(use-package! hover\n :when (featurep! +flutter)\n :defer t\n :config\n (map! :map dart-mode-map\n :localleader\n \"h r\" #'hover-run-or-hot-reload\n \"h R\" #'hover-run-or-hot-restart))\n","new_contents":";;; lang\/dart\/config.el -*- lexical-binding: t; -*-\n\n(use-package! dart-mode\n :when (featurep! +lsp)\n :hook (dart-mode-local-vars . lsp!)\n :config\n (when (and (featurep! +flutter) IS-LINUX)\n (when-let (path (doom-glob \"\/opt\/flutter\/bin\/cache\/dart-sdk\"))\n (setq flutter-sdk-path path)))\n (set-pretty-symbols! '(dart-mode)\n ;; Functional\n :def \"Function\"\n :lambda \"() =>\"\n ;; Types\n :null \"null\"\n :true \"true\" :false \"false\"\n :int \"int\" :float \"double\"\n :str \"String\"\n :bool \"bool\"\n :list \"List\"\n ;; Flow\n :not \"!\"\n :in \"in\"\n :and \"&&\" :or \"||\"\n :for \"for\"\n :return \"return\"\n ;; Other\n :yield \"yield\"))\n\n\n(use-package! flutter\n :when (featurep! +flutter)\n :defer t\n :config\n (map! :map dart-mode-map\n :localleader\n \"r\" #'flutter-run-or-hot-reload))\n\n\n(use-package! hover\n :when (featurep! +flutter)\n :defer t\n :config\n (map! :map dart-mode-map\n :localleader\n \"h r\" #'hover-run-or-hot-reload\n \"h R\" #'hover-run-or-hot-restart))\n","subject":"Set pretty symbols for Dart-mode","message":"Set pretty symbols for Dart-mode","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"2748ee71d2d14b0ef20f96f0428ac72289e81b3f","old_file":"rc\/color-theme.el","new_file":"rc\/color-theme.el","old_contents":";; =============================================================================\n;; Color Theme\n;; -----------------------------------------------------------------------------\n\n;; (if (> (display-color-cells) 256)\n;; (load-theme 'monokai t)\n;; (load-theme 'jazz t))\n\n;; (progn\n;; (add-to-list 'custom-theme-load-path (concat user-emacs-directory \"themes\/color-theme-mgl\"))\n;; (load-theme 'mgl-dark t))\n\n;; (load-theme 'spacegray t)\n;; (load-theme 'spacemacs-light t)\n;; (load-theme 'spacemacs-dark t)\n;; (load-theme 'zerodark t)\n\n(use-package monokai-theme\n :ensure t\n :init\n (load-theme 'monokai t))\n","new_contents":";; =============================================================================\n;; Color Theme\n;; -----------------------------------------------------------------------------\n\n;; (if (> (display-color-cells) 256)\n;; (load-theme 'monokai t)\n;; (load-theme 'jazz t))\n\n;; (progn\n;; (add-to-list 'custom-theme-load-path (concat user-emacs-directory \"themes\/color-theme-mgl\"))\n;; (load-theme 'mgl-dark t))\n\n;; (load-theme 'spacegray t)\n;; (load-theme 'spacemacs-light t)\n;; (load-theme 'spacemacs-dark t)\n;; (load-theme 'zerodark t)\n\n(use-package monokai-theme\n :ensure t\n :init\n (load-theme 'monokai t)\n\n (setq\n ;; foreground and background\n monokai-foreground \"#F8F8F2\"\n monokai-background \"#272822\"\n ;; highlights and comments\n monokai-comments \"#75715E\"\n monokai-emphasis \"#F8F8F0\"\n monokai-highlight \"#49483E\"\n monokai-highlight-alt \"#3E3D31\"\n monokai-highlight-line \"#3C3D37\"\n monokai-line-number \"#8F908A\"\n ;; colours\n monokai-blue \"#66D9EF\"\n monokai-cyan \"#A1EFE4\"\n monokai-green \"#A6E22E\"\n monokai-gray \"#64645E\"\n monokai-violet \"#AE81FF\"\n monokai-red \"#F92672\"\n monokai-orange \"#FD971F\"\n monokai-yellow \"#E6DB74\"\n ))\n","subject":"Add current customisable monokai theme colours into config with their default values","message":"Add current customisable monokai theme colours into config with their default values\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"peterhil\/emacs-config"} {"commit":"c58a4e965c152efb3d338392fc7904f88b172470","old_file":"available-init\/insert-shebang.el","new_file":"available-init\/insert-shebang.el","old_contents":"(req-package insert-shebang\n :init\n (setq insert-shebang-file-types\n '((\"py\" . \"python\")\n (\"sh\" . \"bash\")\n (\"pl\" . \"perl\")\n (\"rb\" . \"ruby\")))\n :config\n (add-hook 'find-file-hook 'insert-shebang))\n","new_contents":"(req-package insert-shebang\n :init\n (setq insert-shebang-file-types\n '((\"py\" . \"python\")\n (\"sh\" . \"bash\")\n (\"pl\" . \"perl\")\n (\"rb\" . \"ruby\")))\n (setq insert-shebang-track-ignored-filename nil)\n :config\n (add-to-list 'find-file-not-found-functions 'insert-shebang))\n","subject":"Insert shebang on new file only","message":"Insert shebang on new file only\n","lang":"Emacs Lisp","license":"mit","repos":"linc01n\/.emacs.d,linc01n\/.emacs.d"} {"commit":"e167d6da450c6c1a9fa9b3b10f658af23c8759bb","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"((c-mode . ((c-file-style . \"GNU\")\n (indent-tabs-mode . nil)\n (c-basic-offset . 8)\n (tab-width . 8)\n (show-trailing-whitespace . t)))\n(vala-mode . ((c-file-style . \"GNU\")\n (indent-tabs-mode . nil)\n (c-basic-offset . 2)\n (tab-width . 2)\n (show-trailing-whitespace . t))))\n","new_contents":"((c-mode . ((c-file-style . \"GNU\")\n (indent-tabs-mode . nil)\n (c-basic-offset . 8)\n (tab-width . 8)\n (show-trailing-whitespace . t)))\n(c++-mode . ((c-file-style . \"GNU\")\n (indent-tabs-mode . nil)\n (c-basic-offset . 8)\n (tab-width . 8)\n (show-trailing-whitespace . t)))\n(vala-mode . ((c-file-style . \"GNU\")\n (indent-tabs-mode . nil)\n (c-basic-offset . 2)\n (tab-width . 2)\n (show-trailing-whitespace . t))))\n","subject":"Adjust settings for C++ mode too","message":"emacs: Adjust settings for C++ mode too\n","lang":"Emacs Lisp","license":"lgpl-2.1","repos":"rvu95\/vte,flaxandteal\/gasket-vte,rvu95\/vte,flaxandteal\/gasket-vte,rvu95\/vte,saitoha\/vte-sixel,flaxandteal\/gasket-vte,rvu95\/vte,saitoha\/vte-sixel,saitoha\/vte-sixel,thestinger\/vte-ng,flaxandteal\/gasket-vte,thestinger\/vte-ng,thestinger\/vte-ng"} {"commit":"ef8ccca8c65c05ff70b2b5d964e4389b8f32bf27","old_file":"emacs\/.emacs.d\/early-init.el","new_file":"emacs\/.emacs.d\/early-init.el","old_contents":";; Make startup faster by reducing the frequency of garbage\n;; collection. The default is 800 kilobytes. Measured in bytes.\n(setq gc-cons-threshold (* 50 1000 1000))\n(defconst emacs-start-time (current-time))\n(require 'package)\n(add-to-list 'package-archives '(\"melpa\" . \"https:\/\/melpa.org\/packages\/\") t)\n(add-to-list 'package-archives '(\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\") t)\n(add-to-list 'package-archives '(\"org\" . \"https:\/\/orgmode.org\/elpa\/\") t)\n","new_contents":";; Make startup faster by reducing the frequency of garbage\n;; collection. The default is 800 kilobytes. Measured in bytes.\n(setq gc-cons-threshold (* 50 1000 1000))\n(defconst emacs-start-time (current-time))\n(require 'package)\n(add-to-list 'package-archives '(\"melpa\" . \"https:\/\/melpa.org\/packages\/\") t)\n; https:\/\/debbugs.gnu.org\/cgi\/bugreport.cgi?bug=34341\n; should be fixed in Emacs 26.3+\n(setq gnutls-algorithm-priority \"NORMAL:-VERS-TLS1.3\")\n(add-to-list 'package-archives '(\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\") t)\n(add-to-list 'package-archives '(\"org\" . \"https:\/\/orgmode.org\/elpa\/\") t)\n","subject":"Add fix for SSL error on elpa","message":"emacs: Add fix for SSL error on elpa\n","lang":"Emacs Lisp","license":"mit","repos":"dmacvicar\/dotfiles"} {"commit":"01993aa69875e2770e9fc38fee8a993a4e19c6b8","old_file":"modules\/lang\/solidity\/config.el","new_file":"modules\/lang\/solidity\/config.el","old_contents":";;; lang\/solidity\/config.el -*- lexical-binding: t; -*-\n\n;;\n;; Plugins\n;;\n\n(def-package! solidity-mode\n :mode \"\\\\.sol$\"\n :init\n (setq solidity-solc-path \"$HOME\/.node_modules\/bin\/solcjs\")\n (setq solidity-solium-path \"$HOME\/.node_modules\/bin\/solium\")\n\n (setq solidity-flycheck-solc-checker-active t)\n (setq solidity-flycheck-solium-checker-active t)\n\n (setq flycheck-solidity-solc-addstd-contracts t)\n :config\n (setq solidity-comment-style 'slash))\n\n(def-package! company-solidity\n :when (featurep! :completion company)\n :after solidity-mode\n :config\n (add-hook 'solidity-mode-hook\n (lambda ()\n (set (make-local-variable 'company-backends)\n (append '((company-solidity company-capf company-dabbrev-code))\n company-backends)))))\n","new_contents":";;; lang\/solidity\/config.el -*- lexical-binding: t; -*-\n\n;;\n;; Plugins\n;;\n\n(def-package! solidity-mode\n :mode \"\\\\.sol$\"\n :init\n (setq solidity-solc-path \"~\/.node_modules\/lib\/node_modules\/solc\/solcjs\")\n (setq solidity-solium-path \"~\/.node_modules\/lib\/node_modules\/solium\/bin\/solium.js\")\n\n (setq solidity-flycheck-solc-checker-active t)\n (setq solidity-flycheck-solium-checker-active t)\n\n (setq flycheck-solidity-solc-addstd-contracts t)\n :config\n (setq solidity-comment-style 'slash))\n\n(def-package! company-solidity\n :when (featurep! :completion company)\n :after solidity-mode\n :config\n (add-hook 'solidity-mode-hook\n (lambda ()\n (set (make-local-variable 'company-backends)\n (append '((company-solidity company-capf company-dabbrev-code))\n company-backends)))))\n","subject":"Fix solc and solium pathes","message":"Fix solc and solium pathes\n\nThe bin files were links to the real thing.\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d"} {"commit":"d2b448f97538d057a14e820fef7faa125c7cbd84","old_file":"user-lisp\/rust-customisations.el","new_file":"user-lisp\/rust-customisations.el","old_contents":"(require 'flycheck)\n(add-hook 'flycheck-mode-hook #'flycheck-rust-setup)\n\n(add-hook 'rust-mode-hook #'flycheck-mode)\n\n(require 'racer)\n(setq racer-rust-src-path \"\/home\/wilfred\/src\/rust\/src\")\n(setq racer-cmd \"\/home\/wilfred\/src\/racer\/target\/release\/racer\")\n\n(add-to-list 'company-backends #'racer-company-complete)\n\n(require 'rust-mode)\n(add-hook 'rust-mode-hook #'racer-turn-on-eldoc)\n(define-key rust-mode-map (kbd \"M-.\") #'racer-find-definition)\n\n(provide 'rust-customisations)\n","new_contents":"(require 'flycheck)\n(add-hook 'flycheck-mode-hook #'flycheck-rust-setup)\n\n(add-hook 'rust-mode-hook #'flycheck-mode)\n\n(require 'racer)\n(setq racer-rust-src-path \"\/home\/wilfred\/src\/rust\/src\")\n(setq racer-cmd \"\/home\/wilfred\/src\/racer\/target\/release\/racer\")\n\n(add-to-list 'company-backends #'racer-company-complete)\n\n(require 'rust-mode)\n(add-hook 'rust-mode-hook #'racer-turn-on-eldoc)\n(define-key rust-mode-map (kbd \"M-.\") #'racer-find-definition)\n\n(defun wh\/rust-toggle-visibility ()\n \"Toggle the public visibility of the function at point.\"\n (interactive)\n (save-excursion\n ;; If we're already at the beginning of the function definition,\n ;; `beginning-of-defun' moves to the previous function, so move elsewhere.\n (end-of-line)\n\n (beginning-of-defun)\n (if (looking-at \"pub \")\n (delete-char 4)\n (insert \"pub \"))))\n\n(define-key rust-mode-map (kbd \"C-c v\") #'wh\/rust-toggle-visibility)\n\n(provide 'rust-customisations)\n","subject":"Allow toggling a function's visibility in Rust.","message":"Allow toggling a function's visibility in Rust.\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"99344750d65a2de46218cd3072285ea1016c5dea","old_file":"setup-files\/setup-magit.el","new_file":"setup-files\/setup-magit.el","old_contents":";; Time-stamp: <2015-06-22 09:40:27 kmodi>\n\n;; magit\n;; https:\/\/github.com\/magit\/magit\n\n(use-package magit\n :commands (magit-status)\n :preface\n (progn\n (setq magit-last-seen-setup-instructions \"1.4.0\"))\n :config\n (progn\n (setq magit-completing-read-function #'magit-ido-completing-read)\n (setq magit-auto-revert-mode nil)\n (setq magit-expand-staged-on-commit nil) ; default = nil\n (setq magit-repo-dirs `( ,user-emacs-directory))\n (setq magit-diff-options nil) ; default\n ;; (setq magit-diff-options '(\"--ignore-space-change\"))\n\n ;; Make diffs not show whitespace difference when calling `magit-show-level-4'\n ;; using the bindings like `4' in magit Status buffer\n (defun modi\/magit-ignore-whitespace-diff (orig-fun &rest args)\n (let ((magit-diff-options '(\"--ignore-space-change\")))\n (apply orig-fun args)))\n (advice-add 'magit-show-level-4 :around #'modi\/magit-ignore-whitespace-diff)\n\n (magit-auto-revert-mode -1)))\n\n\n(provide 'setup-magit)\n\n;; |---------+----------------------------------|\n;; | Binding | Description |\n;; |---------+----------------------------------|\n;; | j n | Jump to Untracked section |\n;; | j u | Jump to Unstaged section |\n;; | j s | Jump to Staged section |\n;; | j p | Jump to Unpushed section |\n;; | M-p | Jump to previous sibling section |\n;; | M-n | Jump to next sibling section |\n;; |---------+----------------------------------|\n\n;; Tip: Adding prefix to above jump commands also expands those sections and\n;; brings that section to the top of the buffer.\n;; So `C-u j s' is analogous to doing `j s C-l C-l 4`\n","new_contents":";; Time-stamp: <2015-07-01 20:49:28 kmodi>\n\n;; magit\n;; https:\/\/github.com\/magit\/magit\n\n(use-package magit\n :commands (magit-status))\n\n\n(provide 'setup-magit)\n\n;; |---------+----------------------------------|\n;; | Binding | Description |\n;; |---------+----------------------------------|\n;; | j n | Jump to Untracked section |\n;; | j u | Jump to Unstaged section |\n;; | j s | Jump to Staged section |\n;; | j p | Jump to Unpushed section |\n;; | M-p | Jump to previous sibling section |\n;; | M-n | Jump to next sibling section |\n;; |---------+----------------------------------|\n\n;; Tip: Adding prefix to above jump commands also expands those sections and\n;; brings that section to the top of the buffer.\n;; So `C-u j s' is analogous to doing `j s C-l C-l 4`\n","subject":"Remove all old magit (v1.x) var customization","message":"Remove all old magit (v1.x) var customization\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"5035e92bd42f8dc333178986422cff0d712b06d7","old_file":".config\/emacs\/remaps.el","new_file":".config\/emacs\/remaps.el","old_contents":";; multiple selection\n(global-set-key (kbd \"M-n\") 'mc\/mark-next-like-this)\n(global-set-key (kbd \"M-p\") 'mc\/mark-previous-like-this)\n\n;; move lines\n(global-set-key (kbd \"M-S-\") 'drag-stuff-up)\n(global-set-key (kbd \"M-S-\") 'drag-stuff-down)\n\n;; move between windows\n(global-set-key (kbd \"M-\") 'windmove-left)\n(global-set-key (kbd \"M-\") 'windmove-right)\n(global-set-key (kbd \"M-\") 'windmove-up)\n(global-set-key (kbd \"M-\") 'windmove-down)\n\n;; comment line or region\n(global-set-key (kbd \"s-\/\") 'comment-line)\n\n;; project structure\n(global-set-key [f3] 'neotree-toggle)\n","new_contents":";; multiple selection\n(global-set-key (kbd \"M-n\") 'mc\/mark-next-like-this)\n(global-set-key (kbd \"M-p\") 'mc\/mark-previous-like-this)\n\n;; move lines\n(global-set-key (kbd \"M-S-\") 'drag-stuff-up)\n(global-set-key (kbd \"M-S-\") 'drag-stuff-down)\n\n;; move between windows\n(global-set-key (kbd \"M-\") 'windmove-left)\n(global-set-key (kbd \"M-\") 'windmove-right)\n(global-set-key (kbd \"M-\") 'windmove-up)\n(global-set-key (kbd \"M-\") 'windmove-down)\n\n;; comment line or region\n(global-set-key (kbd \"s-\/\") 'comment-line)\n\n;; project structure\n(global-set-key [f3] 'neotree-toggle)\n\n;; magit\n(global-set-key (kbd \"C-x g\") 'magit-status)\n","subject":"Add keybinding for magit status","message":"Add keybinding for magit status\n","lang":"Emacs Lisp","license":"mit","repos":"spapanik\/configuration,spapanik\/configuration"} {"commit":"d394af7e9a8e9015e3f5cda9de8080ff3bd09154","old_file":"init-elpa.el","new_file":"init-elpa.el","old_contents":"(eval-after-load \"package\"\n '(progn\n (when (> emacs-major-version 23)\n (add-to-list 'package-archives '(\"tromey\" . \"http:\/\/tromey.com\/elpa\/\")))\n\n (add-to-list 'package-archives '(\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\"))\n (add-to-list 'package-archives '(\"technomancy\" . \"http:\/\/repo.technomancy.us\/emacs\"))\n))\n\n(provide 'init-elpa)\n","new_contents":"(eval-after-load \"package\"\n '(progn\n (when (> emacs-major-version 23)\n (add-to-list 'package-archives '(\"tromey\" . \"http:\/\/tromey.com\/elpa\/\")))\n (add-to-list 'package-archives '(\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\"))\n))\n\n(provide 'init-elpa)\n","subject":"Drop reference to technomancy's defunct elpa archive","message":"Drop reference to technomancy's defunct elpa archive\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"Guoozz\/emacs.d,haodaivshen\/emacs.d,zuoshifan\/emacs.d,exclamaforte\/emacs.d,cjqw\/emacs.d,dhanunjaya\/emacs.d,blueabysm\/emacs.d,farzadbekran\/emacs.d,braveoyster\/emacs.d,Werewolflsp\/emacs.d,danfengcao\/emacs.d,pairyo\/emacs.d,wegatron\/emacs.d,me020523\/emacs.d,ruiyang\/emacs.d,modkzs\/emcs.d,bibaijin\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,emuio\/emacs.d,ilove0518\/emacs.d,purcell\/emacs.d,arthurl\/emacs.d,lromang\/emacs.d,carlosliu\/emacs.d,lust4life\/emacs.d,gsmlg\/emacs.d,wenpincui\/emacs.d,hophacker\/emacs.d,dcorking\/emacs.d,kongfy\/emacs.d,jhpx\/emacs.d,svenyurgensson\/emacs.d,hkcqr\/emacs.d,zhuoyikang\/emacs.d,zuoshifan\/emacs.d,kindoblue\/emacs.d,zuoshifan\/emacs.d,whizzzkid\/emacs.d,fengxl\/emacs.d,zenith-john\/emacs.d,zuoshifan\/emacs.d,atreeyang\/emacs.d,mpwang\/emacs.d,shafayetkhan\/emacs.d,renatoriccio\/emacs.d,LKI\/emacs.d,alant\/emacs.d,zhaotai\/.emacs.d,benkha\/emacs.d,qianwan\/emacs.d,scorpionis\/emacs.d,zuoshifan\/emacs.d,jthetzel\/emacs.d,DarkThrone\/emacs.d,YangXin\/emacs.d,sgarciac\/emacs.d,caoyuanqi\/emacs.d,zuoshifan\/emacs.d,mmqmzk\/emacs.d,krzysz00\/emacs.d,Togal\/emacs.d,Jadecity\/PurcellEmacs.d,qinshulei\/emacs.d,dongdonghu\/.emacs.d,blueseason\/emacs.d,ernest-dzf\/emacs.d,Shanicky\/emacs.d,cyjia\/emacs.d,farzadbekran\/emacs.d,jachinpy\/emacs.d,Enzo-Liu\/emacs.d,farzadbekran\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,baohaojun\/emacs.d,lujianmei\/emacs.d,46do14\/emacs.d,YangXin\/emacs.d,jkaessens\/emacs.d,roxolan\/emacs.d,boblannon\/emacs.d,farzadbekran\/emacs.d,LittleLmp\/emacs.d,ruiyang\/emacs.d"} {"commit":"26484765a99247a436952870f29217d346d6adf9","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +prescient +fuzzy)\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n treemacs\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n vc\n\n :tools\n lookup\n eval\n make\n magit\n lsp\n editorconfig\n pdf\n ein\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +lsp)\n (org\n +attach\n +babel\n +export)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp)\n (fsharp +lsp)\n\n :checkers\n spell\n syntax\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n )\n\n\n;; Needs to be set early so it can't go into config\n(setq evil-respect-visual-line-mode t)\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +prescient +fuzzy)\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n treemacs\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n vc\n\n :tools\n lookup\n eval\n make\n magit\n lsp\n editorconfig\n pdf\n ein\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +lsp)\n (org\n +attach\n +babel\n +export)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp)\n (fsharp +lsp)\n (javascript +lsp)\n rest\n\n :checkers\n spell\n syntax\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n )\n\n\n;; Needs to be set early so it can't go into config\n(setq evil-respect-visual-line-mode t)\n","subject":"Add javascript and rest modules to doom emacs","message":"Add javascript and rest modules to doom emacs\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"58339df268a2aaad3938c91caba388a4fdf4ac5d","old_file":"emacs\/.emacs.d\/packages\/completion.el","new_file":"emacs\/.emacs.d\/packages\/completion.el","old_contents":"(use-package company\n :defer 2\n :diminish company-mode\n :config (global-company-mode t))\n\n;; C\n(use-package irony\n :defer 2\n :diminish irony-mode\n :config\n (add-hook 'c++-mode-hook 'irony-mode)\n (add-hook 'c-mode-hook 'irony-mode)\n (add-hook 'objc-mode-hook 'irony-mode)\n (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)\n\n (add-hook 'c-mode-hook\n (lambda () (local-set-key (kbd \"\") #'company-complete)\n (local-set-key (kbd \"C-SPC\") #'company-complete-selection))))\n\n(use-package company-irony-c-headers\n :defer 2\n :config\n (eval-after-load 'company\n '(add-to-list\n 'company-backends '(company-irony-c-headers company-irony))))\n","new_contents":"(use-package company\n :defer 2\n :diminish company-mode\n :config (global-company-mode t)\n\n (add-hook 'c-mode-hook\n (lambda () (local-set-key (kbd \"\") #'company-complete)\n (local-set-key (kbd \"C-SPC\") #'company-complete-selection))))\n\n;; C\n(use-package irony\n :defer 2\n :diminish irony-mode\n :config\n (add-hook 'c++-mode-hook 'irony-mode)\n (add-hook 'c-mode-hook 'irony-mode)\n (add-hook 'objc-mode-hook 'irony-mode)\n (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options))\n\n(use-package company-irony-c-headers\n :defer 2\n :config\n (eval-after-load 'company\n '(add-to-list\n 'company-backends '(company-irony-c-headers company-irony))))\n","subject":"Configure company-complete keybinding and irony autosetup","message":"Emacs: Configure company-complete keybinding and irony autosetup\n","lang":"Emacs Lisp","license":"mit","repos":"benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles"} {"commit":"8730c82e2cdff8686fec0ffef8a57b50dc6b838c","old_file":"init-haskell.el","new_file":"init-haskell.el","old_contents":"(require-package 'haskell-mode)\n(setq haskell-font-lock-symbols t)\n\n(add-hook 'haskell-mode-hook\n (lambda ()\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (turn-on-haskell-doc-mode)\n (turn-on-haskell-indent)))\n\n\n(provide 'init-haskell)\n","new_contents":"(require-package 'haskell-mode)\n(setq haskell-font-lock-symbols t)\n\n(add-hook 'haskell-mode-hook\n (lambda ()\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (turn-on-haskell-doc-mode)\n (turn-on-haskell-indent)))\n\n(require-package 'flymake-hlint)\n(add-hook 'haskell-mode-hook #'flymake-hlint-init)\n\n(provide 'init-haskell)\n","subject":"Use my new flymake-hlint with haskell source","message":"Use my new flymake-hlint with haskell source\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"qianwan\/emacs.d,Shanicky\/emacs.d,svenyurgensson\/emacs.d,Togal\/emacs.d,zenith-john\/emacs.d,farzadbekran\/emacs.d,kindoblue\/emacs.d,carlosliu\/emacs.d,jthetzel\/emacs.d,Jadecity\/PurcellEmacs.d,blueseason\/emacs.d,cjqw\/emacs.d,jachinpy\/emacs.d,jkaessens\/emacs.d,gsmlg\/emacs.d,krzysz00\/emacs.d,wegatron\/emacs.d,lujianmei\/emacs.d,alant\/emacs.d,arthurl\/emacs.d,lust4life\/emacs.d,braveoyster\/emacs.d,LKI\/emacs.d,sgarciac\/emacs.d,modkzs\/emcs.d,renatoriccio\/emacs.d,farzadbekran\/emacs.d,caoyuanqi\/emacs.d,pairyo\/emacs.d,qinshulei\/emacs.d,hophacker\/emacs.d,scorpionis\/emacs.d,fengxl\/emacs.d,Enzo-Liu\/emacs.d,Guoozz\/emacs.d,zhaotai\/.emacs.d,zhuoyikang\/emacs.d,ruiyang\/emacs.d,LittleLmp\/emacs.d,roxolan\/emacs.d,jhpx\/emacs.d,farzadbekran\/emacs.d,ilove0518\/emacs.d,dongdonghu\/.emacs.d,haodaivshen\/emacs.d,bibaijin\/emacs.d,Werewolflsp\/emacs.d,me020523\/emacs.d,baohaojun\/emacs.d,danfengcao\/emacs.d,jachinpy\/emacs.d,atreeyang\/emacs.d,farzadbekran\/emacs.d,purcell\/emacs.d,ernest-dzf\/emacs.d,farzadbekran\/emacs.d,cyjia\/emacs.d,blueabysm\/emacs.d,dcorking\/emacs.d,whizzzkid\/emacs.d,exclamaforte\/emacs.d,kongfy\/emacs.d,emuio\/emacs.d,DarkThrone\/emacs.d,mpwang\/emacs.d,mmqmzk\/emacs.d,lromang\/emacs.d,boblannon\/emacs.d,46do14\/emacs.d,ruiyang\/emacs.d,dhanunjaya\/emacs.d,hkcqr\/emacs.d,shafayetkhan\/emacs.d,wenpincui\/emacs.d,benkha\/emacs.d"} {"commit":"d942099d3a9f9630ea50eeb8ad26c67480fc7a41","old_file":"modes\/magit-conf.el","new_file":"modes\/magit-conf.el","old_contents":";;; magit-conf.el -- Customizations for magit.\n(eval-when-compile\n (defvar magit-last-seen-setup-instructions)\n (setq magit-last-seen-setup-instructions \"1.4.0\")\n (require 'magit))\n\n(custom-set-variables\n '(magit-popup-use-prefix-argument 'default))\n\n;; Shamelessly stolen from http:\/\/whattheemacsd.com\/.\n(defadvice magit-status (around magit-fullscreen activate)\n (window-configuration-to-register :magit-fullscreen)\n ad-do-it\n (delete-other-windows))\n\n(defun pjones:magit-quit-session ()\n \"Restore the previous window configuration and kill the magit\nbuffer.\"\n (interactive)\n (kill-buffer)\n (jump-to-register :magit-fullscreen))\n\n(define-key magit-status-mode-map (kbd \"q\") 'pjones:magit-quit-session)\n","new_contents":";;; magit-conf.el -- Customizations for magit.\n(eval-when-compile\n (defvar magit-last-seen-setup-instructions)\n (setq magit-last-seen-setup-instructions \"1.4.0\")\n (require 'magit))\n\n(custom-set-variables\n '(magit-popup-use-prefix-argument 'default))\n\n;; Shamelessly stolen from http:\/\/whattheemacsd.com\/.\n;; (defadvice magit-status (around magit-fullscreen activate)\n;; (window-configuration-to-register :magit-fullscreen)\n;; ad-do-it\n;; (delete-other-windows))\n;;\n;; (defun pjones:magit-quit-session ()\n;; \"Restore the previous window configuration and kill the magit\n;; buffer.\"\n;; (interactive)\n;; (kill-buffer)\n;; (jump-to-register :magit-fullscreen))\n;;\n;; (define-key magit-status-mode-map (kbd \"q\") 'pjones:magit-quit-session)\n","subject":"Comment out some older magit advice for now","message":"Comment out some older magit advice for now\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"f3dbbc57f4e0da6fb12fd3511f5fbf8c7dcb69c6","old_file":"lisp\/init-grep.el","new_file":"lisp\/init-grep.el","old_contents":"(setq-default grep-highlight-matches t\n grep-scroll-output t)\n\n(when *is-a-mac*\n (setq-default locate-command \"mdfind\"))\n\n(when (executable-find \"ag\")\n (require-package 'ag)\n (require-package 'wgrep-ag)\n (setq-default ag-highlight-search t)\n (global-set-key (kbd \"M-?\") 'ag-project))\n\n\n(provide 'init-grep)\n","new_contents":"(setq-default grep-highlight-matches t\n grep-scroll-output t)\n\n(when *is-a-mac*\n (setq-default locate-command \"mdfind\"))\n\n(when (and (executable-find \"ag\")\n (maybe-require-package 'ag))\n (require-package 'wgrep-ag)\n (setq-default ag-highlight-search t)\n (global-set-key (kbd \"M-?\") 'ag-project))\n\n(when (and (executable-find \"rg\")\n (maybe-require-package 'rg))\n (global-set-key (kbd \"M-?\") 'rg-project))\n\n\n(provide 'init-grep)\n","subject":"Install rg.el if \"rg\" is available","message":"Install rg.el if \"rg\" is available\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"baohaojun\/emacs.d,sgarciac\/emacs.d,qianwan\/emacs.d,gsmlg\/emacs.d,emuio\/emacs.d,cjqw\/emacs.d,roxolan\/emacs.d,wegatron\/emacs.d,benkha\/emacs.d,kongfy\/emacs.d,purcell\/emacs.d,dcorking\/emacs.d,blueseason\/emacs.d,mmqmzk\/emacs.d,svenyurgensson\/emacs.d,braveoyster\/emacs.d,kindoblue\/emacs.d,lust4life\/emacs.d,arthurl\/emacs.d,krzysz00\/emacs.d,blueabysm\/emacs.d,me020523\/emacs.d"} {"commit":"994ff45fb778b4388c4b6cf9f7a6e189920ae01a","old_file":"home\/.emacs.d\/lisp\/init-coffee.el","new_file":"home\/.emacs.d\/lisp\/init-coffee.el","old_contents":";;; init-coffee.el -- coffeescript setup\n\n;;; Commentary:\n;;; Coffee and related stuff\n\n;;; Code:\n(require 'use-package)\n\n(use-package coffee-mode\n :mode (\"\\\\.coffee\\\\'\" . coffee-mode))\n\n(provide 'init-coffee)\n;;; init-coffee.el ends here\n","new_contents":";;; init-coffee.el -- coffeescript setup\n\n;;; Commentary:\n;;; Coffee and related stuff\n\n;;; Code:\n(require 'use-package)\n\n(defun my\/coffee-evil-previousline-and-indent ()\n \"Fix 'coffee-newline-and-indent' with 'evil-mode'.\"\n (interactive)\n (forward-line -1)\n (my\/coffee-evil-newline-and-indent))\n\n(defun my\/coffee-evil-newline-and-indent ()\n \"Fix 'coffee-newline-and-indent' with 'evil-mode'.\"\n (interactive)\n (end-of-line)\n (coffee-newline-and-indent)\n (evil-insert-state))\n\n(use-package coffee-mode\n :config\n (evil-define-key 'normal coffee-mode-map \"o\" 'my\/coffee-evil-newline-and-indent)\n (evil-define-key 'normal coffee-mode-map \"O\" 'my\/coffee-evil-previousline-and-indent)\n (evil-define-key 'insert coffee-mode-map \"RET\" 'my\/coffee-evil-newline-and-indent)\n :mode (\"\\\\.coffee\\\\'\" . coffee-mode))\n\n(provide 'init-coffee)\n;;; init-coffee.el ends here\n","subject":"Fix coffee-mode indentation in evil-mode","message":"Fix coffee-mode indentation in evil-mode\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"bdb12cb75b530e4ca87fd016a6de4f0a6af53874","old_file":"modules\/tools\/docker\/config.el","new_file":"modules\/tools\/docker\/config.el","old_contents":";;; tools\/docker\/config.el -*- lexical-binding: t; -*-\n\n(after! docker\n (set-evil-initial-state!\n '(docker-container-mode\n docker-image-mode\n docker-network-mode\n docker-volume-mode\n docker-machine-mode)\n 'emacs))\n","new_contents":";;; tools\/docker\/config.el -*- lexical-binding: t; -*-\n\n(after! docker\n (set-docsets! 'dockerfile-mode \"Docker\")\n (set-evil-initial-state!\n '(docker-container-mode\n docker-image-mode\n docker-network-mode\n docker-volume-mode\n docker-machine-mode)\n 'emacs))\n","subject":"Use Docker docset for dockerfile-mode","message":"Use Docker docset for dockerfile-mode\n\nThis patch setups the appropriate docset to use in dockerfile-mode.\nSimilar to how it is done for other major-modes that have associated\ndocsets.\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs"} {"commit":"1c86280f66a3c3fd1659eec1bb79bc76556e6c56","old_file":"Emacs\/emacs-custom.el","new_file":"Emacs\/emacs-custom.el","old_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(global-display-line-numbers-mode t)\n '(ido-create-new-buffer 'always)\n '(ido-enable-flex-matching t)\n '(ido-everywhere t)\n '(ido-mode 'both nil (ido))\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode)))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(global-display-line-numbers-mode t)\n '(ido-create-new-buffer 'always)\n '(ido-enable-flex-matching t)\n '(ido-everywhere t)\n '(ido-mode 'both nil (ido))\n '(indent-tabs-mode nil)\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode))\n '(standard-indent 4)\n '(tab-always-indent 'complete))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Customize indentation behavior in Emacs","message":"Customize indentation behavior in Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"Gosin\/Vim4Gosin"} {"commit":"f76648adadb5f7609787771a5ebc618c4b56e35e","old_file":"layers\/mfa-org\/funcs.el","new_file":"layers\/mfa-org\/funcs.el","old_contents":"(defun mfa-org\/org-index ()\n (interactive)\n (find-file (concat org-directory \"index.org\")))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defun mfa-org\/org-index (prefix)\n \"Open the org index.\nGiving the command a PREFIX arg will open the index in another window.\"\n (interactive \"P\")\n (let ((index (concat org-directory \"index.org\")))\n (if prefix\n (find-file-other-window index)\n (find-file index))))\n","subject":"Add a prefix argument to org-index to open it in a new window","message":"Add a prefix argument to org-index to open it in a new window\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"f1ea7de76da21b2ba6f727138b4aa4a8db62df18","old_file":"modules\/ui\/indent-guides\/config.el","new_file":"modules\/ui\/indent-guides\/config.el","old_contents":";;; ui\/indent-guides\/config.el -*- lexical-binding: t; -*-\n\n(def-package! highlight-indent-guides\n :hook ((prog-mode text-mode conf-mode) . highlight-indent-guides-mode)\n :init\n (setq highlight-indent-guides-method 'character)\n :config\n ;; Don't display first level of indentation\n (defun +indent-guides-for-all-but-first-column (level responsive display)\n (unless (< level 1)\n (highlight-indent-guides--highlighter-default level responsive display)))\n (setq highlight-indent-guides-highlighter-function #'+indent-guides-for-all-but-first-column)\n\n (defun +indent-guides|disable-maybe ()\n (when highlight-indent-guides-mode\n (highlight-indent-guides-mode -1)))\n ;; `highlight-indent-guides' breaks in these modes\n (add-hook 'visual-line-mode-hook #'+indent-guides|disable-maybe)\n (add-hook 'org-indent-mode-hook #'+indent-guides|disable-maybe))\n","new_contents":";;; ui\/indent-guides\/config.el -*- lexical-binding: t; -*-\n\n(def-package! highlight-indent-guides\n :hook ((prog-mode text-mode conf-mode) . highlight-indent-guides-mode)\n :init\n (setq highlight-indent-guides-method 'character)\n :config\n (when (daemonp)\n (highlight-indent-guides-auto-set-faces))\n\n ;; Don't display first level of indentation\n (defun +indent-guides-for-all-but-first-column (level responsive display)\n (unless (< level 1)\n (highlight-indent-guides--highlighter-default level responsive display)))\n (setq highlight-indent-guides-highlighter-function #'+indent-guides-for-all-but-first-column)\n\n (defun +indent-guides|disable-maybe ()\n (when highlight-indent-guides-mode\n (highlight-indent-guides-mode -1)))\n ;; `highlight-indent-guides' breaks in these modes\n (add-hook 'visual-line-mode-hook #'+indent-guides|disable-maybe)\n (add-hook 'org-indent-mode-hook #'+indent-guides|disable-maybe))\n","subject":"Fix color of indent guides in daemon sessions","message":"Fix color of indent guides in daemon sessions\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs"} {"commit":"c32d32edf3850bb5891a04b51f0839100c1f3b6f","old_file":"dotfiles\/emacs.d\/rc\/startup.el","new_file":"dotfiles\/emacs.d\/rc\/startup.el","old_contents":"(setq inhibit-startup-message t) \n(setq initial-scratch-message \";;; S C R A T C H B U F F E R ;;;\")\n\n(menu-bar-mode nil)\n","new_contents":"(setq inhibit-startup-message t) \n(setq initial-scratch-message \";;; S C R A T C H B U F F E R ;;;\n\")\n\n(menu-bar-mode nil)\n","subject":"Fix emacs scratch buffer message","message":"Fix emacs scratch buffer message\n","lang":"Emacs Lisp","license":"mit","repos":"cdlm\/infrastructure,cdlm\/infrastructure,cdlm\/infrastructure,cdlm\/infrastructure"} {"commit":"173534990fc14af123c72508fae0a8d93e429e35","old_file":"init-python-mode.el","new_file":"init-python-mode.el","old_contents":"(autoload 'python-mode \"python-mode\" \"Python editing mode.\" t)\n(autoload 'doctest-mode \"doctest-mode\" \"Python doctest editing mode.\" t)\n\n(setq auto-mode-alist\n (append '((\"\\\\.py$\" . python-mode)\n\t\t(\"SConstruct$\" . python-mode)\n\t\t(\"SConscript$\" . python-mode))\n auto-mode-alist))\n\n(setq interpreter-mode-alist\n (cons '(\"python\" . python-mode) interpreter-mode-alist))\n\n\n;;----------------------------------------------------------------------------\n;; Pymacs and Rope for Python\n;;----------------------------------------------------------------------------\n;; See http:\/\/edward.oconnor.cx\/2008\/02\/ropemacs\n(add-hook 'python-mode-hook\n (lambda ()\n (require 'pymacs)\n (pymacs-load \"ropemacs\" \"rope-\")))\n\n\n;;----------------------------------------------------------------------------\n;; On-the-fly syntax checking via flymake\n;;----------------------------------------------------------------------------\n(setq flymake-python-pyflakes-executable \"pyflakes-2.6\")\n(require 'flymake-python)\n\n(add-hook 'python-mode-hook 'flymake-python-load)\n\n\n\n(provide 'init-python-mode)\n","new_contents":"(autoload 'python-mode \"python-mode\" \"Python editing mode.\" t)\n(autoload 'doctest-mode \"doctest-mode\" \"Python doctest editing mode.\" t)\n\n(setq auto-mode-alist\n (append '((\"\\\\.py$\" . python-mode)\n\t\t(\"SConstruct$\" . python-mode)\n\t\t(\"SConscript$\" . python-mode))\n auto-mode-alist))\n\n(setq interpreter-mode-alist\n (cons '(\"python\" . python-mode) interpreter-mode-alist))\n\n\n;;----------------------------------------------------------------------------\n;; Pymacs and Rope for Python\n;;----------------------------------------------------------------------------\n;; See http:\/\/edward.oconnor.cx\/2008\/02\/ropemacs\n(setq pymacs-load-path\n (list (concat el-get-dir \"ropemacs\")))\n(add-hook 'python-mode-hook\n (lambda ()\n (require 'pymacs)\n (pymacs-load \"ropemacs\" \"rope-\")))\n\n\n;;----------------------------------------------------------------------------\n;; On-the-fly syntax checking via flymake\n;;----------------------------------------------------------------------------\n(setq flymake-python-pyflakes-executable \"pyflakes-2.6\")\n(require 'flymake-python)\n\n(add-hook 'python-mode-hook 'flymake-python-load)\n\n\n\n(provide 'init-python-mode)\n","subject":"Add ropemacs to pymacs-load-path (part-way to fixing up rope-based auto-completion)","message":"Add ropemacs to pymacs-load-path (part-way to fixing up rope-based auto-completion)\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zuoshifan\/emacs.d,farzadbekran\/emacs.d,kindoblue\/emacs.d,lust4life\/emacs.d,boblannon\/emacs.d,danfengcao\/emacs.d,me020523\/emacs.d,cjqw\/emacs.d,qianwan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,LKI\/emacs.d,qinshulei\/emacs.d,zuoshifan\/emacs.d,zhaotai\/.emacs.d,zenith-john\/emacs.d,Togal\/emacs.d,baohaojun\/emacs.d,zuoshifan\/emacs.d,jthetzel\/emacs.d,ruiyang\/emacs.d,dongdonghu\/.emacs.d,alant\/emacs.d,benkha\/emacs.d,farzadbekran\/emacs.d,braveoyster\/emacs.d,ernest-dzf\/emacs.d,pairyo\/emacs.d,gsmlg\/emacs.d,arthurl\/emacs.d,scorpionis\/emacs.d,Werewolflsp\/emacs.d,ilove0518\/emacs.d,Enzo-Liu\/emacs.d,blueabysm\/emacs.d,purcell\/emacs.d,farzadbekran\/emacs.d,LittleLmp\/emacs.d,YangXin\/emacs.d,farzadbekran\/emacs.d,blueseason\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,atreeyang\/emacs.d,renatoriccio\/emacs.d,jkaessens\/emacs.d,modkzs\/emcs.d,wenpincui\/emacs.d,mpwang\/emacs.d,fengxl\/emacs.d,whizzzkid\/emacs.d,lromang\/emacs.d,zhuoyikang\/emacs.d,dhanunjaya\/emacs.d,sgarciac\/emacs.d,exclamaforte\/emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,wegatron\/emacs.d,Guoozz\/emacs.d,46do14\/emacs.d,bibaijin\/emacs.d,jachinpy\/emacs.d,YangXin\/emacs.d,mmqmzk\/emacs.d,hkcqr\/emacs.d,roxolan\/emacs.d,carlosliu\/emacs.d,svenyurgensson\/emacs.d,zuoshifan\/emacs.d,DarkThrone\/emacs.d,kongfy\/emacs.d,cyjia\/emacs.d,caoyuanqi\/emacs.d,jhpx\/emacs.d,dcorking\/emacs.d,shafayetkhan\/emacs.d,zuoshifan\/emacs.d,Jadecity\/PurcellEmacs.d,emuio\/emacs.d,ruiyang\/emacs.d,krzysz00\/emacs.d,lujianmei\/emacs.d,hophacker\/emacs.d,haodaivshen\/emacs.d,Shanicky\/emacs.d"} {"commit":"b53891ffd4ade16e774097c577c60cf2ac554efd","old_file":"emacs\/init.el","new_file":"emacs\/init.el","old_contents":"(load-theme 'base16-oceanicnext-dark t)\n(tool-bar-mode -1)\n","new_contents":"(load-theme 'base16-oceanicnext-dark t)\n(tool-bar-mode -1)\n(set-frame-parameter nil 'fullscreen 'fullboth)\n","subject":"Configure emacs to start in fullscreen mode","message":"Configure emacs to start in fullscreen mode\n","lang":"Emacs Lisp","license":"mit","repos":"MinnSoe\/dotfiles-prov"} {"commit":"fc484278dff6620a7fbfbbd647b881d30e071939","old_file":"emacs\/emacs.d\/my-magit.el","new_file":"emacs\/emacs.d\/my-magit.el","old_contents":"(require 'magit)\n\n(setq magit-save-repository-buffers 'dontask)\n(setq magit-diff-refine-hunk nil)\n(setq magit-display-buffer-function 'magit-display-buffer-same-window-except-diff-v1)\n\n(set-face-attribute 'magit-diff-added-highlight nil :foreground \"#22aa22\")\n\n(add-hook 'magit-log-edit-mode-hook 'turn-on-auto-fill)\n\n(add-hook 'magit-mode-hook\n (lambda ()\n (define-key magit-mode-map (kbd \"1\") 'magit-section-show-level-1-all)\n (define-key magit-mode-map (kbd \"2\") 'magit-section-show-level-2-all)\n (define-key magit-mode-map (kbd \"3\") 'magit-section-show-level-3-all)\n (define-key magit-mode-map (kbd \"4\") 'magit-section-show-level-4-all)))\n","new_contents":"(require 'magit)\n\n(setq magit-save-repository-buffers 'dontask)\n(setq magit-diff-refine-hunk nil)\n(setq magit-display-buffer-function 'magit-display-buffer-same-window-except-diff-v1)\n\n(set-face-attribute 'magit-diff-added-highlight nil :foreground \"#22aa22\")\n\n(add-hook 'magit-log-edit-mode-hook 'turn-on-auto-fill)\n\n(add-hook 'magit-mode-hook\n (lambda ()\n (define-key magit-mode-map (kbd \"C-c C-w\") 'magit-diff-toggle-refine-hunk)\n (define-key magit-mode-map (kbd \"1\") 'magit-section-show-level-1-all)\n (define-key magit-mode-map (kbd \"2\") 'magit-section-show-level-2-all)\n (define-key magit-mode-map (kbd \"3\") 'magit-section-show-level-3-all)\n (define-key magit-mode-map (kbd \"4\") 'magit-section-show-level-4-all)))\n","subject":"Add key to toggle word diff for current diff section","message":"Add key to toggle word diff for current diff section\n","lang":"Emacs Lisp","license":"mit","repos":"sri\/dotfiles,sri\/dotfiles,sri\/dotfiles"} {"commit":"141034f94060b5daa240d53b188ec86d71b60a25","old_file":"Emacs\/init.el","new_file":"Emacs\/init.el","old_contents":";; Gosin's Emacs Configuration 2021\/01\/09\n;; add ELPA and MELPA package repos\n(setq package-archives\n '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t(\"melpa\" . \"http:\/\/melpa.org\/packages\/\")))\n\n;; user solarized dark color theme\n(add-to-list 'custom-theme-load-path \"~\/.emacs.d\/solarized_theme\")\n(set-terminal-parameter nil 'background-mode 'dark)\n(set-frame-parameter nil 'background-mode 'dark)\n(load-theme 'solarized t)\n\n;; define three useful commands(from org guide)\n(global-set-key (kbd \"C-c l\") 'org-store-link)\n(global-set-key (kbd \"C-c a\") 'org-agenda)\n(global-set-key (kbd \"C-c c\") 'org-capture)\n\n(custom-set-variables\n ;; score apropos results by relavance.\n '(apropos-sort-by-scores t)\n ;; show line numbers\n '(global-display-line-numbers-mode t))\n\n;; store backup and autosave files to temporary directories\n(setq backup-directory-alist\n '((\".*\" . ,temporary-file-directory)))\n","new_contents":";; Gosin's Emacs Configuration 2021\/01\/09\n;; add ELPA and MELPA package repos\n(setq package-archives\n '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t(\"melpa\" . \"http:\/\/melpa.org\/packages\/\")))\n\n;; user solarized dark color theme\n(add-to-list 'custom-theme-load-path \"~\/.emacs.d\/solarized_theme\")\n(set-terminal-parameter nil 'background-mode 'dark)\n(set-frame-parameter nil 'background-mode 'dark)\n(load-theme 'solarized t)\n\n;; define three useful commands(from org guide)\n(global-set-key (kbd \"C-c l\") 'org-store-link)\n(global-set-key (kbd \"C-c a\") 'org-agenda)\n(global-set-key (kbd \"C-c c\") 'org-capture)\n\n(custom-set-variables\n ;; score apropos results by relavance.\n '(apropos-sort-by-scores t)\n ;; show line numbers\n '(global-display-line-numbers-mode t))\n","subject":"Remove invalid customization to backup directory","message":"Remove invalid customization to backup directory\n","lang":"Emacs Lisp","license":"mit","repos":"Gosin\/Vim4Gosin"} {"commit":"473354aaf08b861730b128e1c144ad7a5b370c8f","old_file":"init-exec-path.el","new_file":"init-exec-path.el","old_contents":"(defun set-exec-path-from-shell-PATH ()\n (let ((path-from-shell (shell-command-to-string \"$SHELL --login -i -c 'echo $PATH'\")))\n (setenv \"PATH\" path-from-shell)\n (setq exec-path (split-string path-from-shell path-separator))))\n\n(when *is-a-mac*\n (eval-after-load \"woman\"\n '(setq woman-manpath (append (list \"\/opt\/local\/man\") woman-manpath)))\n\n ;; When started from Emacs.app or similar, ensure $PATH\n ;; is the same the user would see in Terminal.app\n (if window-system (set-exec-path-from-shell-PATH)))\n\n\n(provide 'init-exec-path)\n","new_contents":"(defun set-exec-path-from-shell-PATH ()\n (let ((path-from-shell (replace-regexp-in-string\n \"[ \\t\\n]*$\"\n \"\"\n (shell-command-to-string \"$SHELL --login -i -c 'echo $PATH'\"))))\n (setenv \"PATH\" path-from-shell)\n (setq exec-path (split-string path-from-shell path-separator))))\n\n(when *is-a-mac*\n (eval-after-load \"woman\"\n '(setq woman-manpath (append (list \"\/opt\/local\/man\") woman-manpath)))\n\n ;; When started from Emacs.app or similar, ensure $PATH\n ;; is the same the user would see in Terminal.app\n (if window-system (set-exec-path-from-shell-PATH)))\n\n\n(provide 'init-exec-path)\n","subject":"Trim trailing whitespace when querying shell for $PATH","message":"Trim trailing whitespace when querying shell for $PATH\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"Shanicky\/emacs.d,LKI\/emacs.d,blueseason\/emacs.d,carlosliu\/emacs.d,shafayetkhan\/emacs.d,YangXin\/emacs.d,modkzs\/emcs.d,mpwang\/emacs.d,atreeyang\/emacs.d,haodaivshen\/emacs.d,cjqw\/emacs.d,zhuoyikang\/emacs.d,farzadbekran\/emacs.d,Jadecity\/PurcellEmacs.d,ilove0518\/emacs.d,kongfy\/emacs.d,caoyuanqi\/emacs.d,svenyurgensson\/emacs.d,zuoshifan\/emacs.d,Togal\/emacs.d,zenith-john\/emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,arthurl\/emacs.d,zuoshifan\/emacs.d,jachinpy\/emacs.d,LittleLmp\/emacs.d,zuoshifan\/emacs.d,jhpx\/emacs.d,farzadbekran\/emacs.d,Guoozz\/emacs.d,baohaojun\/emacs.d,benkha\/emacs.d,lust4life\/emacs.d,krzysz00\/emacs.d,wegatron\/emacs.d,ruiyang\/emacs.d,jachinpy\/emacs.d,kindoblue\/emacs.d,jthetzel\/emacs.d,me020523\/emacs.d,pairyo\/emacs.d,sgarciac\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,emuio\/emacs.d,blueabysm\/emacs.d,qianwan\/emacs.d,qinshulei\/emacs.d,bibaijin\/emacs.d,mmqmzk\/emacs.d,fengxl\/emacs.d,exclamaforte\/emacs.d,whizzzkid\/emacs.d,alant\/emacs.d,farzadbekran\/emacs.d,lujianmei\/emacs.d,purcell\/emacs.d,wenpincui\/emacs.d,YangXin\/emacs.d,boblannon\/emacs.d,zhaotai\/.emacs.d,ernest-dzf\/emacs.d,zuoshifan\/emacs.d,lromang\/emacs.d,zuoshifan\/emacs.d,ruiyang\/emacs.d,hophacker\/emacs.d,dongdonghu\/.emacs.d,46do14\/emacs.d,danfengcao\/emacs.d,braveoyster\/emacs.d,roxolan\/emacs.d,Enzo-Liu\/emacs.d,gsmlg\/emacs.d,DarkThrone\/emacs.d,renatoriccio\/emacs.d,jkaessens\/emacs.d,dhanunjaya\/emacs.d,dcorking\/emacs.d,zuoshifan\/emacs.d,Werewolflsp\/emacs.d,farzadbekran\/emacs.d,cyjia\/emacs.d,hkcqr\/emacs.d,scorpionis\/emacs.d"} {"commit":"99be43b2815017a33760a42dc95c3253da0e8c72","old_file":"mfa-neotree\/packages.el","new_file":"mfa-neotree\/packages.el","old_contents":"(defconst mfa-neotree-packages '(neotree))\n\n(defun mfa-neotree\/post-init-neotree ()\n ;; Bind neotree-find to a key.\n (spacemacs\/set-leader-keys \"fd\" #'neotree-find)\n\n (with-eval-after-load 'neotree\n ;; Enlarge the NeoTree window.\n (setq neo-window-width 40)\n\n","new_contents":"(defconst mfa-neotree-packages '(all-the-icons neotree))\n\n(defun mfa-neotree\/init-all-the-icons ()\n (use-package all-the-icons\n :defer t\n :config\n ;; Don't waste valuable window real-estate.\n (setq all-the-icons-scale-factor 1.0)))\n\n(defun mfa-neotree\/post-init-neotree ()\n ;; Bind neotree-find to a key.\n (spacemacs\/set-leader-keys \"fd\" #'neotree-find)\n\n (with-eval-after-load 'neotree\n\n ;; Make the tree more fancy.\n (setq neo-theme (if window-system 'icons 'arrow))\n\n ;; Enlarge the NeoTree window.\n (setq neo-window-width 40)))\n","subject":"Add all-the-icons, use it as fancy icon theme for neotree","message":"Add all-the-icons, use it as fancy icon theme for neotree\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"45640cf0329cc3ef2570045ef6fc7ece82bf153d","old_file":"lisp\/init-dash.el","new_file":"lisp\/init-dash.el","old_contents":";;; init-dash.el --- Integrate with the Mac app \"Dash\" -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n;; Support for the http:\/\/kapeli.com\/dash documentation browser\n\n(defun sanityinc\/dash-installed-p ()\n \"Return t if Dash is installed on this machine, or nil otherwise.\"\n (let ((lsregister \"\/System\/Library\/Frameworks\/CoreServices.framework\/Versions\/A\/Frameworks\/LaunchServices.framework\/Versions\/A\/Support\/lsregister\"))\n (and (file-executable-p lsregister)\n (not (string-equal\n \"\"\n (shell-command-to-string\n (concat lsregister \" -dump|grep com.kapeli.dash\")))))))\n\n(when (and *is-a-mac* (not (package-installed-p 'dash-at-point)))\n (message \"Checking whether Dash is installed\")\n (when (sanityinc\/dash-installed-p)\n (require-package 'dash-at-point)))\n\n(when (package-installed-p 'dash-at-point)\n (global-set-key (kbd \"C-c D\") 'dash-at-point))\n\n(provide 'init-dash)\n;;; init-dash.el ends here\n","new_contents":";;; init-dash.el --- Integrate with the Mac app \"Dash\" -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n;; Support for the http:\/\/kapeli.com\/dash documentation browser\n\n(when *is-a-mac*\n (require-package 'dash-at-point)\n (global-set-key (kbd \"C-c D\") 'dash-at-point))\n\n(provide 'init-dash)\n;;; init-dash.el ends here\n","subject":"Install dash-at-point unconditionally on MacOS","message":"Install dash-at-point unconditionally on MacOS\n\nCloses #691\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"cjqw\/emacs.d,gsmlg\/emacs.d,svenyurgensson\/emacs.d,blueabysm\/emacs.d,wegatron\/emacs.d,emuio\/emacs.d,purcell\/emacs.d,kongfy\/emacs.d,benkha\/emacs.d,braveoyster\/emacs.d,mmqmzk\/emacs.d,arthurl\/emacs.d,dcorking\/emacs.d,krzysz00\/emacs.d,sgarciac\/emacs.d,blueseason\/emacs.d,baohaojun\/emacs.d,lust4life\/emacs.d,qianwan\/emacs.d"} {"commit":"4befed18bd91dcd0546d02f24e9bbc975e69405c","old_file":"lisp\/init-rust.el","new_file":"lisp\/init-rust.el","old_contents":";;; init-rust.el --- Support for the Rust language -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(when (maybe-require-package 'rust-mode)\n (when (maybe-require-package 'racer)\n (add-hook 'rust-mode-hook #'racer-mode))\n (when (maybe-require-package 'company)\n (add-hook 'racer-mode-hook #'company-mode)))\n\n(when (maybe-require-package 'flycheck-rust)\n (with-eval-after-load 'rust-mode\n (add-hook 'flycheck-mode-hook #'flycheck-rust-setup)))\n\n(provide 'init-rust)\n;;; init-rust.el ends here\n","new_contents":";;; init-rust.el --- Support for the Rust language -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(when (maybe-require-package 'rust-mode)\n (when (maybe-require-package 'company)\n (add-hook 'racer-mode-hook #'company-mode)))\n\n(when (maybe-require-package 'flycheck-rust)\n (with-eval-after-load 'rust-mode\n (add-hook 'flycheck-mode-hook #'flycheck-rust-setup)))\n\n(provide 'init-rust)\n;;; init-rust.el ends here\n","subject":"Drop racer from rust config","message":"Drop racer from rust config\n\nFixes #806\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"dcorking\/emacs.d,krzysz00\/emacs.d,purcell\/emacs.d,lust4life\/emacs.d,arthurl\/emacs.d"} {"commit":"36ee5de7bea4d5313ea5ef25ca308023d1f1c917","old_file":"setup-files\/setup-diff-hl.el","new_file":"setup-files\/setup-diff-hl.el","old_contents":";; Time-stamp: <2015-02-25 13:45:27 kmodi>\n\n;; Diff-hl\n;; https:\/\/github.com\/dgutov\/diff-hl\n\n(use-package diff-hl\n :config\n (progn\n\n (defvar modi\/diff-hl-mode-hooks '(emacs-lisp-mode-hook)\n \"List of hooks of major modes in which diff-hl-mode should be enabled.\")\n\n (dolist (hook modi\/diff-hl-mode-hooks)\n (add-hook hook #'diff-hl-mode))\n\n (defhydra hydra-diff-hl (:color red)\n \"diff-hl\"\n (\"=\" diff-hl-diff-goto-hunk \"goto hunk\")\n (\"\" diff-hl-diff-goto-hunk \"goto hunk\")\n (\"u\" diff-hl-revert-hunk \"revert hunk\")\n (\"[\" diff-hl-previous-hunk \"prev hunk\")\n (\"p\" diff-hl-previous-hunk \"prev hunk\")\n (\"]\" diff-hl-next-hunk \"next hunk\")\n (\"n\" diff-hl-next-hunk \"next hunk\")\n (\"q\" nil \"cancel\"))\n (bind-key \"s-v\" #'hydra-diff-hl\/body modi-mode-map)\n\n (add-hook 'dired-mode-hook #'diff-hl-dired-mode)))\n\n\n(provide 'setup-diff-hl)\n","new_contents":";; Time-stamp: <2015-04-13 09:49:32 kmodi>\n\n;; Diff-hl\n;; https:\/\/github.com\/dgutov\/diff-hl\n\n(use-package diff-hl\n :config\n (progn\n\n (defvar modi\/diff-hl-mode-hooks '(emacs-lisp-mode-hook\n sh-mode-hook)\n \"List of hooks of major modes in which diff-hl-mode should be enabled.\")\n\n (dolist (hook modi\/diff-hl-mode-hooks)\n (add-hook hook #'diff-hl-mode))\n\n (defhydra hydra-diff-hl (:color red)\n \"diff-hl\"\n (\"=\" diff-hl-diff-goto-hunk \"goto hunk\")\n (\"\" diff-hl-diff-goto-hunk \"goto hunk\")\n (\"u\" diff-hl-revert-hunk \"revert hunk\")\n (\"[\" diff-hl-previous-hunk \"prev hunk\")\n (\"p\" diff-hl-previous-hunk \"prev hunk\")\n (\"]\" diff-hl-next-hunk \"next hunk\")\n (\"n\" diff-hl-next-hunk \"next hunk\")\n (\"q\" nil \"cancel\"))\n (bind-key \"s-v\" #'hydra-diff-hl\/body modi-mode-map)\n\n (add-hook 'dired-mode-hook #'diff-hl-dired-mode)))\n\n\n(provide 'setup-diff-hl)\n","subject":"Enable diff-hl for sh-mode files too","message":"Change: Enable diff-hl for sh-mode files too\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"1a471a7b4a0ba362b7f3aeb1f53242fa3c84e443","old_file":"emacs\/ar\/ar-shell.el","new_file":"emacs\/ar\/ar-shell.el","old_contents":";;; ar-shell.el --- Shell support.\n\n;;; Commentary:\n;; Shell helpers.\n\n(require 'comint)\n\n(defun ar\/shell-cd (dir-path)\n \"Change shell current working directory to DIR-PATH.\n\nLike shell-pop--cd-to-cwd-shell, but without recentering.\"\n (unless (string-equal mode-name \"Shell\")\n (error \"Not in Shell mode\"))\n (message mode-name)\n (goto-char (point-max))\n (comint-kill-input)\n (insert (concat \"cd \" (shell-quote-argument dir-path)))\n (let ((comint-process-echoes t))\n (comint-send-input)))\n\n(provide 'ar-shell)\n\n;;; ar-shell.el ends here\n","new_contents":";;; ar-shell.el --- Shell support.\n\n;;; Commentary:\n;; Shell helpers.\n\n(require 'comint)\n\n(defun ar\/shell-cd (dir-path)\n \"Change shell current working directory to DIR-PATH.\n\nLike shell-pop--cd-to-cwd-shell, but without recentering.\"\n (unless (string-equal mode-name \"Shell\")\n (error \"Not in Shell mode\"))\n (message mode-name)\n (goto-char (point-max))\n (comint-kill-input)\n (insert (concat \"cd \" (shell-quote-argument dir-path)))\n (let ((comint-process-echoes t))\n (comint-send-input)))\n\n(defun ar\/shell-send-command (command)\n \"Send COMMAND to shell mode.\"\n (assert (string-equal mode-name \"Shell\") nil \"Not in Shell mode\")\n (message mode-name)\n (goto-char (point-max))\n (comint-kill-input)\n (insert command)\n (let ((comint-process-echoes t))\n (comint-send-input)))\n\n(provide 'ar-shell)\n\n;;; ar-shell.el ends here\n","subject":"Send command to shell mode","message":"Send command to shell mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"xenodium\/dotsies,xenodium\/dotsies,xenodium\/dotsies"} {"commit":"824dd633b988590674c2570195fc0297dca572f3","old_file":"_spacemacs.d\/config\/aly-org-config.el","new_file":"_spacemacs.d\/config\/aly-org-config.el","old_contents":";;; aly-org-config.el --- My configurations for org-mode\n;; -*- mode: emacs-lisp -*-\n;; vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=lisp:\n;;\n;; Aaron LI\n;; Created: 2016-05-31\n;; Updated: 2016-05-31\n;;\n\n;;; Commentary:\n;; My custom configurations for the `org' of spacemacs.\n;; https:\/\/github.com\/syl20bnr\/spacemacs\/blob\/master\/layers\/org\/README.org\n;;\n\n;;; Code:\n\n;; NOTE:\n;; Spacemacs use the `org' from the ELPA instead of the one shipped with\n;; Emacs. Then, any `org'-related code should NOT be loaded before\n;; `dotspacemacs\/user-config'.\n(with-eval-after-load 'org\n (setq org-agenda-files '(\"~\/org\/todo.org\"\n \"~\/org\/task.org\"\n \"~\/org\/astro.org\"))\n ;; active Babel languages\n (org-babel-do-load-languages\n 'org-babel-load-languages\n '((emacs-lisp . t)\n (sh . t)\n (python . t)\n (ditaa . t)\n ))\n ;; set the path to the `ditaa' program\n (setq org-ditaa-jar-path \"~\/.spacemacs.d\/local\/ditaa\/ditaa.jar\")\n ) ;; with-eval-after-load 'org\n\n\n(provide 'aly-org-config)\n\n;;; aly-org-config.el ends here\n","new_contents":";;; aly-org-config.el --- My configurations for org-mode\n;; -*- mode: emacs-lisp -*-\n;; vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=lisp:\n;;\n;; Aaron LI\n;; Created: 2016-05-31\n;;\n\n;;; Commentary:\n;; My custom configurations for the `org' of spacemacs.\n;; https:\/\/github.com\/syl20bnr\/spacemacs\/blob\/master\/layers\/org\/README.org\n;;\n\n;;; Code:\n\n;; NOTE:\n;; Spacemacs use the `org' from the ELPA instead of the one shipped with\n;; Emacs. Then, any `org'-related code should NOT be loaded before\n;; `dotspacemacs\/user-config'.\n(with-eval-after-load 'org\n (setq org-agenda-files '(\"~\/org\"))\n ;; active Babel languages\n (org-babel-do-load-languages\n 'org-babel-load-languages\n '((emacs-lisp . t)\n (sh . t)\n (python . t)\n (ditaa . t)\n ))\n ;; set the path to the `ditaa' program\n (setq org-ditaa-jar-path \"~\/.spacemacs.d\/local\/ditaa\/ditaa.jar\")\n ) ;; with-eval-after-load 'org\n\n\n(provide 'aly-org-config)\n\n;;; aly-org-config.el ends here\n","subject":"Set \"org-agenda-files\" to be the \"~\/org\" directory","message":"_spacemacs: Set \"org-agenda-files\" to be the \"~\/org\" directory\n","lang":"Emacs Lisp","license":"mit","repos":"liweitianux\/dotfiles,liweitianux\/dotfiles,liweitianux\/dotfiles,liweitianux\/dotfiles"} {"commit":"99e286f2f30da35e505515c64a90fbc844312281","old_file":"site-lisp\/clgc-prodigy.el","new_file":"site-lisp\/clgc-prodigy.el","old_contents":"(require 'prodigy)\n\n(prodigy-define-tag :name 'rails\n :ready-message \"Listening on 0\\\\.0\\\\.0\\\\.0:[0-9]+, CTRL\\\\+C to stop\")\n\n(prodigy-define-tag\n :name 'zeus\n :on-output\n (prodigy-callback (service)\n (let ((poll-zeus \"ps aux | grep -c 'zeus slave:'\"))\n (when (>= (string-to-number (shell-command-to-string poll-zeus)) 6)\n (prodigy-set-status service 'ready)))))\n\n(prodigy-define-tag :name 'resque-pool\n :ready-message \"Starting worker\")\n\n(prodigy-define-tag :name 'resque-scheduler\n :ready-message \"Schedules Loaded\")\n\n;; ansi-color-apply and filter were causing out-of-range errors for zeus\n(setq prodigy-output-filters (remove 'ansi-color-apply prodigy-output-filters))\n\n(provide 'clgc-prodigy)\n","new_contents":"(require 'prodigy)\n\n(prodigy-define-tag :name 'rails\n :ready-message \"Listening on 0\\\\.0\\\\.0\\\\.0:[0-9]+, CTRL\\\\+C to stop\")\n\n(prodigy-define-tag\n :name 'zeus\n :command \"\/bin\/bash\"\n ;; Strip zeus start of color codes to prevent ansi out-of-bound errors\n :args '(\"-c\" \"zeus start | sed \\\"s,\\x1B\\[[0-9;]*[a-zA-Z],,g\\\"\")\n :stop-signal 'sigkill\n :kill-process-buffer-on-stop t\n :on-output\n (prodigy-callback (service)\n (let ((poll-zeus \"ps aux | grep -c 'zeus slave:'\"))\n (when (>= (string-to-number (shell-command-to-string poll-zeus)) 6)\n (prodigy-set-status service 'ready)))))\n\n(prodigy-define-tag :name 'resque-pool\n :ready-message \"Starting worker\")\n\n(prodigy-define-tag :name 'resque-scheduler\n :ready-message \"Schedules Loaded\")\n\n(provide 'clgc-prodigy)\n","subject":"Fix problems with ansi-escape in zeus start","message":"Fix problems with ansi-escape in zeus start\n\nMoves command into tag. Still has a problem on shutdown but I think it's\nin prodigy detecting shutdown correctly, not zeus failing to stop. It\ncleans up after itself at any rate.\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"dgtized\/dotfiles,dgtized\/dotfiles,dgtized\/dotfiles"} {"commit":"383cfb839346646b99958255c974bb29b1251a92","old_file":"emacs\/.emacs.d\/packages\/completion.el","new_file":"emacs\/.emacs.d\/packages\/completion.el","old_contents":"(use-package company\n :defer 2\n :diminish company-mode\n :config (global-company-mode t))\n\n;; C\n(use-package irony\n :defer 2\n :diminish irony-mode\n :config\n (add-hook 'c++-mode-hook 'irony-mode)\n (add-hook 'c-mode-hook 'irony-mode)\n (add-hook 'objc-mode-hook 'irony-mode)\n (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)\n\n (add-hook 'c-mode-hook\n (lambda () (local-set-key (kbd \"\") #'company-complete)\n (local-set-key (kbd \"C-SPC\") #'company-complete-selection))))\n\n(use-package company-c-headers\n :defer 2\n :config\n (add-to-list 'company-backends 'company-c-headers))\n\n\n(use-package company-irony-c-headers\n :defer 2\n :config\n (eval-after-load 'company\n '(add-to-list\n 'company-backends '(company-irony-c-headers company-irony))))\n","new_contents":"(use-package company\n :defer 2\n :diminish company-mode\n :config (global-company-mode t))\n\n;; C\n(use-package irony\n :defer 2\n :diminish irony-mode\n :config\n (add-hook 'c++-mode-hook 'irony-mode)\n (add-hook 'c-mode-hook 'irony-mode)\n (add-hook 'objc-mode-hook 'irony-mode)\n (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)\n\n (add-hook 'c-mode-hook\n (lambda () (local-set-key (kbd \"\") #'company-complete)\n (local-set-key (kbd \"C-SPC\") #'company-complete-selection))))\n\n(use-package company-irony-c-headers\n :defer 2\n :config\n (eval-after-load 'company\n '(add-to-list\n 'company-backends '(company-irony-c-headers company-irony))))\n","subject":"Remove company-c-headers and use irony instead","message":"Emacs: Remove company-c-headers and use irony instead\n","lang":"Emacs Lisp","license":"mit","repos":"benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles"} {"commit":"db45248adfa31f9694c5727f6191854fa86de3ce","old_file":"modules\/editor\/parinfer\/config.el","new_file":"modules\/editor\/parinfer\/config.el","old_contents":";;; lang\/emacs-lisp\/+parinfer.el -*- lexical-binding: t; -*-\n\n\n(def-package! parinfer\n :commands (parinfer-mode)\n :init\n (add-hook! (emacs-lisp-mode\n clojure-mode\n common-lisp-mode\n scheme-mode\n lisp-mode)\n (yas-minor-mode -1)\n (parinfer-mode))\n (setq parinfer-extensions\n '(defaults\n pretty-parens\n smart-tab\n smart-yank))\n (if (featurep! :feature evil)\n (push 'evil parinfer-extensions))\n :config\n (map! :map parinfer-mode-map\n :i \"\" #'parinfer-smart-tab:dwim-right\n :i \"\" #'parinfer-smart-tab:dwim-left\n :localleader\n :nv \"m\" #'parinfer-toggle-mode))\n","new_contents":";;; lang\/emacs-lisp\/+parinfer.el -*- lexical-binding: t; -*-\n\n\n(def-package! parinfer\n :commands (parinfer-mode)\n :init\n (add-hook! (emacs-lisp-mode\n clojure-mode\n common-lisp-mode\n scheme-mode\n lisp-mode)\n (parinfer-mode))\n (setq parinfer-extensions\n '(defaults\n pretty-parens\n smart-tab\n smart-yank))\n (if (featurep! :feature evil)\n (push 'evil parinfer-extensions))\n :config\n (map! :map parinfer-mode-map\n :i \"\" #'parinfer-smart-tab:dwim-right-or-complete\n :i \"\" #'parinfer-smart-tab:dwim-left\n :localleader\n :nv \"m\" #'parinfer-toggle-mode))\n","subject":"Add yasnippet back to parinfer","message":"Add yasnippet back to parinfer\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"9f45977d14e59a3b2e7f1615fe4f343c371ec9ed","old_file":"elfeed-lib.el","new_file":"elfeed-lib.el","old_contents":";;; elfeed-lib.el --- misc functions for elfeed -*- lexical-binding: t; -*-\n\n;; This is free and unencumbered software released into the public domain.\n\n;;; Code:\n\n(defun elfeed-expose (function &rest args)\n \"Return an interactive version of FUNCTION, 'exposing' it to the user.\"\n (lambda () (interactive) (apply function args)))\n\n(defun elfeed-goto-line (n)\n \"Like `goto-line' but for non-interactive use.\"\n (goto-char (point-min))\n (forward-line (1- n)))\n\n(defun elfeed-kill-buffer ()\n \"Kill the current buffer.\"\n (interactive)\n (kill-buffer (current-buffer)))\n\n(provide 'elfeed-lib)\n\n;;; elfeed-lib.el ends here\n","new_contents":";;; elfeed-lib.el --- misc functions for elfeed -*- lexical-binding: t; -*-\n\n;; This is free and unencumbered software released into the public domain.\n\n;;; Code:\n\n(defun elfeed-expose (function &rest args)\n \"Return an interactive version of FUNCTION, 'exposing' it to the user.\"\n (lambda () (interactive) (apply function args)))\n\n(defun elfeed-goto-line (n)\n \"Like `goto-line' but for non-interactive use.\"\n (goto-char (point-min))\n (forward-line (1- n)))\n\n(defun elfeed-kill-buffer ()\n \"Kill the current buffer.\"\n (interactive)\n (kill-buffer (current-buffer)))\n\n(defmacro elfeed-save-excursion (&rest body)\n \"Like `save-excursion', but by line\/column instead of point.\"\n (declare (indent defun))\n `(let ((line (line-number-at-pos))\n (column (current-column)))\n (unwind-protect\n (progn ,@body)\n (elfeed-goto-line line)\n (move-to-column column))))\n\n(defun elfeed-kill-line ()\n \"Clear out the current line without touching anything else.\"\n (beginning-of-line)\n (let ((start (point)))\n (end-of-line)\n (delete-region start (point))))\n\n(provide 'elfeed-lib)\n\n;;; elfeed-lib.el ends here\n","subject":"Add some lib helper functions.","message":"Add some lib helper functions.\n","lang":"Emacs Lisp","license":"unlicense","repos":"abo-abo\/elfeed,holomorph\/elfeed,jinnovation\/elfeed,emacsmirror\/elfeed,daimrod\/elfeed,holomorph\/elfeed,seblemaguer\/elfeed,daimrod\/elfeed,emacsmirror\/elfeed,algernon\/elfeed,skeeto\/elfeed,algernon\/elfeed,seblemaguer\/elfeed,jinnovation\/elfeed,skeeto\/elfeed"} {"commit":"52e9b91a2dd519116b0d2353db075b4b3152a99c","old_file":"emacs\/emacs.d.symlink\/config\/fuzzy-config.el","new_file":"emacs\/emacs.d.symlink\/config\/fuzzy-config.el","old_contents":";;;; Fuzzy finding, auto-complete, fast navigation\n\n(require 'projectile) ; projectile => kinda like ctrl-p but not really?\n(require 'evil)\n(require 'helm-projectile)\n\n(helm-mode t) ; helm is a general matching framework that works on freakin' everything apparently\n(helm-projectile-on) ; use helm stuff for projectile\n(projectile-global-mode t)\n(define-key evil-normal-state-map (kbd \"C-p\") 'helm-projectile)\n(setq projectile-tags-file-name \"etags\")\n\n(provide 'fuzzy-config)\n","new_contents":";;;; Fuzzy finding, auto-complete, fast navigation\n\n(require 'projectile) ; projectile => kinda like ctrl-p but not really?\n(require 'evil)\n(require 'helm-projectile)\n\n(helm-mode t) ; helm is a general matching framework that works on freakin' everything apparently\n(helm-projectile-on) ; use helm stuff for projectile\n(projectile-global-mode t)\n(define-key evil-normal-state-map (kbd \"C-p\") 'helm-projectile)\n(define-key helm-map (kbd \"C-j\") 'helm-next-line)\n(define-key helm-map (kbd \"C-k\") 'helm-previous-line)\n(setq projectile-tags-file-name \"etags\")\n\n(provide 'fuzzy-config)\n","subject":"Make helm movement slightly more like ctrlp","message":"Make helm movement slightly more like ctrlp\n","lang":"Emacs Lisp","license":"mit","repos":"alexkuang\/dotfiles,alexkuang\/dotfiles"} {"commit":"902d303fdf3e9f9bd6552c7e75e20b86f8a88dd9","old_file":"setup-files\/setup-flycheck.el","new_file":"setup-files\/setup-flycheck.el","old_contents":";; Time-stamp: <2017-05-04 09:31:53 kmodi>\n\n;; Flycheck\n;; https:\/\/github.com\/flycheck\/flycheck\n\n(use-package flycheck\n :defer t\n :config\n (progn\n (defconst modi\/flycheck-mode-hooks '(python-mode-hook\n sh-mode-hook\n nim-mode-hook)\n \"List of hooks of major modes in which flycheck mode should be enabled.\")\n\n (defun modi\/turn-on-flycheck-mode ()\n \"Turn on flycheck-mode for the modes in `modi\/flycheck-mode-hooks'.\"\n (interactive)\n (dolist (hook modi\/flycheck-mode-hooks)\n (add-hook hook #'flycheck-mode)))\n\n (defun modi\/turn-off-flycheck-mode ()\n \"Turn off flycheck-mode for the modes in `modi\/flycheck-mode-hooks'.\"\n (interactive)\n (dolist (hook modi\/flycheck-mode-hooks)\n (remove-hook hook #'flycheck-mode)))\n\n (modi\/turn-on-flycheck-mode)))\n\n\n(provide 'setup-flycheck)\n","new_contents":";; Time-stamp: <2018-05-17 14:44:23 kmodi>\n\n;; Flycheck\n;; https:\/\/github.com\/flycheck\/flycheck\n\n(use-package flycheck\n :defer t\n :config\n (progn\n (defconst modi\/flycheck-mode-hooks '(python-mode-hook\n sh-mode-hook\n ;; nim-mode-hook\n )\n \"List of hooks of major modes in which flycheck mode should be enabled.\")\n\n (defun modi\/turn-on-flycheck-mode ()\n \"Turn on flycheck-mode for the modes in `modi\/flycheck-mode-hooks'.\"\n (interactive)\n (dolist (hook modi\/flycheck-mode-hooks)\n (add-hook hook #'flycheck-mode)))\n\n (defun modi\/turn-off-flycheck-mode ()\n \"Turn off flycheck-mode for the modes in `modi\/flycheck-mode-hooks'.\"\n (interactive)\n (dolist (hook modi\/flycheck-mode-hooks)\n (remove-hook hook #'flycheck-mode)))\n\n (modi\/turn-on-flycheck-mode)))\n\n\n(provide 'setup-flycheck)\n","subject":"Disable flycheck for Nim i.e. don't run nimsuggest","message":"Disable flycheck for Nim i.e. don't run nimsuggest\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"7a614ef93be59eb69fa07845420f90323c4de20c","old_file":"setup-files\/setup-shell.el","new_file":"setup-files\/setup-shell.el","old_contents":";; Time-stamp: <2015-01-14 10:57:34 kmodi>\n\n;; Shell Script Mode\n\n(defun my\/tcsh-set-indent-functions ()\n (when (or (string-match \".*\\\\.alias\" (buffer-file-name))\n (string-match \".*\\\\.setup.*\" (buffer-file-name))\n (string-match \".*\\\\.cfg\" (buffer-file-name))\n (string-match \".*csh$\" (file-name-extension (buffer-file-name))))\n (require 'csh-mode) ; https:\/\/github.com\/Tux\/tcsh\/blob\/master\/csh-mode.el\n (setq-local indent-line-function 'csh-indent-line)\n (setq-local indent-region-function 'csh-indent-region)))\n(add-hook 'sh-set-shell-hook #'my\/tcsh-set-indent-functions)\n\n\n(provide 'setup-shell)\n","new_contents":";; Time-stamp: <2015-01-15 13:33:25 kmodi>\n\n;; Shell Script Mode\n\n(defun my\/tcsh-set-indent-functions ()\n (when (or (string-match \".*\\\\.alias\" (buffer-file-name))\n (string-match \".*\\\\.setup.*\" (buffer-file-name))\n (string-match \".*\\\\.gpms\" (buffer-file-name))\n (string-match \".*\\\\.cfg\" (buffer-file-name))\n (string-match \".*csh$\" (file-name-extension (buffer-file-name))))\n (require 'csh-mode) ; https:\/\/github.com\/Tux\/tcsh\/blob\/master\/csh-mode.el\n (setq-local indent-line-function 'csh-indent-line)\n (setq-local indent-region-function 'csh-indent-region)))\n(add-hook 'sh-set-shell-hook #'my\/tcsh-set-indent-functions)\n\n\n(provide 'setup-shell)\n","subject":"Add .gpms as one of the files to be viewed in tcsh mode","message":"Add .gpms as one of the files to be viewed in tcsh mode\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"5b642b26cbfa2cc94c68797556f14213a2c27078","old_file":"custom\/41-org2blog.el","new_file":"custom\/41-org2blog.el","old_contents":";; Org2blog mode\n(require 'org2blog-autoloads)\n\n;; Read password\n(require 'netrc)\n(setq blog (netrc-machine (netrc-parse \"~\/.netrc\") \"2014roundtheworld\" t))\n\n;; Login details for my round the world blog 2014\n(setq org2blog\/wp-blog-alist\n '((\"2014roundtheworld\"\n :url \"http:\/\/2014roundtheworld.wordpress.com\/xmlrpc.php\"\n :username (netrc-get blog \"login\")\n :password (netrc-get blog \"password\"))))\n\n\n","new_contents":";; Org2blog mode\n(require 'org2blog-autoloads)\n\n;; Read password\n(require 'netrc)\n(setq blog (netrc-machine (netrc-parse \"~\/.netrc\") \"2014roundtheworld\" t))\n\n(if (file-exists-p \"~\/.emacs.org2blog.el\")\n (load \"~\/.emacs.org2blog.el\")\n )\n\n;; Example\n;; ;; Login details for my round the world blog 2014\n;; (setq org2blog\/wp-blog-alist\n;; '((\"2014roundtheworld\"\n;; :url \"http:\/\/2014roundtheworld.wordpress.com\/xmlrpc.php\"\n;; :username (netrc-get blog \"login\")\n;; :password (netrc-get blog \"password\"))))\n\n\n","subject":"Move personal org2blog stuff out to a home dir file.","message":"Move personal org2blog stuff out to a home dir file.\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"c728de02b07378ac56eddc1002b86acbfca9caba","old_file":"link\/.emacs.d\/site-lisp\/setup-irony.el","new_file":"link\/.emacs.d\/site-lisp\/setup-irony.el","old_contents":"\n(use-package irony\n :ensure t\n :config\n (add-hook 'c++-mode-hook 'irony-mode)\n (add-hook 'c-mode-hook 'irony-mode)\n (add-hook 'objc-mode-hook 'irony-mode)\n )\n\n;; replace the `completion-at-point' and `complete-symbol' bindings in\n;; irony-mode's buffers by irony-mode's function\n(defun my-irony-mode-hook ()\n (define-key irony-mode-map [remap completion-at-point]\n 'irony-completion-at-point-async)\n (define-key irony-mode-map [remap complete-symbol]\n 'irony-completion-at-point-async))\n\n(use-package company-irony\n :ensure t\n :config\n (add-to-list 'company-backends '(company-irony))\n (add-hook 'irony-mode-hook 'company-irony-setup-begin-commands)\n (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)\n (add-hook 'irony-mode-hook 'my-irony-mode-hook)\n )\n\n(use-package company-irony-c-headers\n :ensure t\n :config (add-to-list 'company-backends '(company-irony-c-headers))\n )\n\n(use-package irony-eldoc\n :ensure t\n (add-hook 'irony-mode-hook 'irony-eldoc)\n )\n\n(provide 'setup-irony)\n","new_contents":"\n(use-package irony\n :ensure t\n :config\n (add-hook 'c++-mode-hook 'irony-mode)\n (add-hook 'c-mode-hook 'irony-mode)\n (add-hook 'objc-mode-hook 'irony-mode)\n )\n\n;; replace the `completion-at-point' and `complete-symbol' bindings in\n;; irony-mode's buffers by irony-mode's function\n(defun my-irony-mode-hook ()\n (define-key irony-mode-map [remap completion-at-point]\n 'irony-completion-at-point-async)\n (define-key irony-mode-map [remap complete-symbol]\n 'irony-completion-at-point-async))\n\n(use-package company-irony\n :ensure t\n :config\n (add-to-list 'company-backends '(company-irony))\n (add-hook 'irony-mode-hook 'company-irony-setup-begin-commands)\n (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)\n (add-hook 'irony-mode-hook 'my-irony-mode-hook)\n )\n\n(use-package company-irony-c-headers\n :ensure t\n :config (add-to-list 'company-backends '(company-irony-c-headers))\n )\n\n(use-package irony-eldoc\n :ensure t\n :config\n (add-hook 'irony-mode-hook 'irony-eldoc)\n )\n\n(provide 'setup-irony)\n","subject":"Fix emacs config error with use-package","message":"Fix emacs config error with use-package\n","lang":"Emacs Lisp","license":"mit","repos":"SteVwonder\/dotfiles,SteVwonder\/dotfiles,SteVwonder\/dotfiles,SteVwonder\/dotfiles"} {"commit":"cf94de80636a4b38f833b4521052a409a2292c95","old_file":"emacs\/config\/init-company-mode.el","new_file":"emacs\/config\/init-company-mode.el","old_contents":"(require-package 'company)\n(require 'company)\n\n(setq company-idle-delay 0.1)\n(setq company-minimum-prefix-length 1)\n(setq company-tooltip-limit 20)\n\n(add-hook 'after-init-hook 'global-company-mode)\n\n(provide 'init-company-mode)\n","new_contents":"(require-package 'company)\n(require 'company)\n\n(setq company-idle-delay 0.1)\n(setq company-minimum-prefix-length 1)\n(setq company-tooltip-limit 20)\n(setq company-global-modes\n '(not\n eshell-mode))\n\n(add-hook 'after-init-hook 'global-company-mode)\n\n(provide 'init-company-mode)\n","subject":"Disable company mode on eshell","message":"Emacs: Disable company mode on eshell\n","lang":"Emacs Lisp","license":"mit","repos":"romanoaugusto88\/dotfiles"} {"commit":"374ef37cdd5aba303149d2feae30d53b83c5a5db","old_file":"home\/.emacs.d\/lisp\/init-javascript.el","new_file":"home\/.emacs.d\/lisp\/init-javascript.el","old_contents":";;; init-javascript.el -- javascript setup\n\n;;; Commentary:\n;;; js2 mode setup and related stuff\n\n;;; Code:\n(require 'use-package)\n\n(use-package js2-mode\n :config\n (setq js-indent-level 2)\n :mode (\"\\\\.js\\\\'\" . js2-mode)\n :init\n (add-hook 'js2-mode-hook #'tern-mode)\n (add-hook 'js2-mode-hook #'js2-refactor-mode)\n :interpreter (\"node\" . js2-mode))\n\n(use-package tern\n :commands (tern-mode)\n :config\n (use-package company-tern)\n (add-to-list 'company-backends 'company-tern))\n\n(use-package js2-refactor\n :config\n (js2r-add-keybindings-with-prefix \"C-c C-r\")\n :commands (js2-refactor-mode)\n :diminish js2-refactor-mode)\n\n(use-package json-mode\n :commands (json-mode)\n :config\n (setq js-indent-level 2\n json-reformat:indent-width 2)\n :init\n (add-to-list 'auto-mode-alist '(\"\\\\.tern-project\\\\'\" . json-mode))\n :mode \"\\\\.json'\")\n\n(provide 'init-javascript)\n;;; init-javascript.el ends here\n","new_contents":";;; init-javascript.el -- javascript setup\n\n;;; Commentary:\n;;; js2 mode setup and related stuff\n\n;;; Code:\n(require 'use-package)\n\n(use-package js2-mode\n :config\n (setq js-indent-level 2\n js2-global-externs '(\"module\" \"require\" \"setTimeout\" \"clearTimeout\"\n \"setInterval\" \"clearInterval\" \"location\"\n \"__dirname\" \"console\" \"JSON\")\n js2-idle-timer-delay 0.1\n js2-concat-multiline-strings 'eol\n js2-mode-show-strict-warnings nil\n js2-mode-show-parse-errors nil)\n :mode (\"\\\\.js\\\\'\" . js2-mode)\n :init\n (add-hook 'js2-mode-hook #'tern-mode)\n (add-hook 'js2-mode-hook #'js2-refactor-mode)\n :interpreter (\"node\" . js2-mode))\n\n(use-package tern\n :commands (tern-mode)\n :config\n (use-package company-tern)\n (add-to-list 'company-backends 'company-tern))\n\n(use-package js2-refactor\n :config\n (js2r-add-keybindings-with-prefix \"C-c C-r\")\n :commands (js2-refactor-mode)\n :diminish js2-refactor-mode)\n\n(use-package json-mode\n :commands (json-mode)\n :config\n (setq js-indent-level 2\n json-reformat:indent-width 2)\n :init\n (add-to-list 'auto-mode-alist '(\"\\\\.tern-project\\\\'\" . json-mode))\n :mode \"\\\\.json'\")\n\n(provide 'init-javascript)\n;;; init-javascript.el ends here\n","subject":"Add some tweaks to js2-mode","message":"Add some tweaks to js2-mode\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"62b17f8bd5dc4d5967b510bee3e7413deb7ab72b","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"((nil . ((compilation-directory . \"\/home\/vava\/area9\/neko\/\")\n\t\t (compilation-command . \"rake\"))\n ))","new_contents":"((c++-mode . ((compilation-directory . \"\/home\/vava\/area9\/neko\/\")\n\t\t (compilation-command . \"rake\"))\n ))\n","subject":"Make sure we turn it on only for cpp files","message":"Make sure we turn it on only for cpp files\n","lang":"Emacs Lisp","license":"lgpl-2.1","repos":"vava\/neko_llvm_jit,vava\/neko_llvm_jit,vava\/neko_llvm_jit,vava\/neko_llvm_jit"} {"commit":"642efaf2b48450ce32c1972e11ef2fac9b47a117","old_file":"modules\/lang\/java\/+lsp.el","new_file":"modules\/lang\/java\/+lsp.el","old_contents":";;; lang\/java\/+lsp.el -*- lexical-binding: t; -*-\n;;;###if (featurep! +lsp)\n\n;;;###autoload\n(defun +java\/update-lsp-server ()\n (interactive)\n (lsp--install-server-internal (gethash 'jdtls lsp-clients) t))\n\n(add-hook! java-mode-local-vars #'lsp!)\n(map! :map java-mode-map\n :localleader\n :desc \"Update the Eclipse LSP server\" \"U\" #'+java\/update-lsp-server)\n\n(use-package! lsp-java\n :after (lsp-clients dap-mode)\n :preface\n (setq lsp-java-server-install-dir (concat doom-etc-dir \"eclipse.jdt.ls\/server\/\")\n lsp-java-workspace-dir (concat doom-etc-dir \"java-workspace\")))\n","new_contents":";;; lang\/java\/+lsp.el -*- lexical-binding: t; -*-\n;;;###if (featurep! +lsp)\n\n(use-package! lsp-java\n :after (lsp-clients dap-mode)\n :preface\n (setq lsp-java-server-install-dir (concat doom-etc-dir \"eclipse.jdt.ls\/server\/\")\n lsp-java-workspace-dir (concat doom-etc-dir \"java-workspace\"))\n (add-hook! java-mode-local-vars #'lsp!)\n :config\n ;; TODO keybinds\n )\n","subject":"Move hook into use-package, remove update-lsp-server","message":"Move hook into use-package, remove update-lsp-server\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom"} {"commit":"e34d4d9b1b6c4fd18e726da1dd5b73f64bb883e9","old_file":"elisp\/shm-reformat.el","new_file":"elisp\/shm-reformat.el","old_contents":";;; shm-reformat.el ---\n\n;; Copyright (c) 2014 Chris Done. All rights reserved.\n\n;; This file is free software; you can redistribute it and\/or modify\n;; it under the terms of the GNU General Public License as published by\n;; the Free Software Foundation; either version 3, or (at your option)\n;; any later version.\n\n;; This file is distributed in the hope that it will be useful,\n;; but WITHOUT ANY WARRANTY; without even the implied warranty of\n;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n;; GNU General Public License for more details.\n\n;; You should have received a copy of the GNU General Public License\n;; along with this program. If not, see .\n\n;;; Code:\n\n(require 'shm-ast)\n(require 'hindent)\n\n(defun shm-reformat-decl ()\n \"Reformat the current declaration with `hindent\/reformat-decl'\nand then jump back to the right node.\"\n (interactive)\n (let* ((current-pair (shm-current-node-pair))\n (index (car current-pair))\n (offset (- (point) (shm-node-start (cdr current-pair)))))\n (structured-haskell-mode -1)\n (hindent\/reformat-decl)\n (structured-haskell-mode 1)\n (shm\/reparse)\n (let ((new-current (elt (shm-decl-ast) index)))\n (goto-char (+ (shm-node-start new-current) offset)))))\n\n(provide 'shm-reformat)\n","new_contents":";;; shm-reformat.el ---\n\n;; Copyright (c) 2014 Chris Done. All rights reserved.\n\n;; This file is free software; you can redistribute it and\/or modify\n;; it under the terms of the GNU General Public License as published by\n;; the Free Software Foundation; either version 3, or (at your option)\n;; any later version.\n\n;; This file is distributed in the hope that it will be useful,\n;; but WITHOUT ANY WARRANTY; without even the implied warranty of\n;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n;; GNU General Public License for more details.\n\n;; You should have received a copy of the GNU General Public License\n;; along with this program. If not, see .\n\n;;; Code:\n\n(require 'shm-ast)\n(require 'hindent)\n\n(defun shm-reformat-decl ()\n \"Reformat the current declaration with `hindent\/reformat-decl'\nand then jump back to the right node.\"\n (interactive)\n (if (region-active-p)\n (call-interactively 'hindent-reformat-region)\n (let* ((current-pair (shm-current-node-pair))\n (index (car current-pair))\n (offset (- (point) (shm-node-start (cdr current-pair)))))\n (structured-haskell-mode -1)\n (hindent\/reformat-decl)\n (structured-haskell-mode 1)\n (shm\/reparse)\n (let ((new-current (elt (shm-decl-ast) index)))\n (goto-char (+ (shm-node-start new-current) offset))))))\n\n(provide 'shm-reformat)\n","subject":"Support only reformatting the selected node","message":"Support only reformatting the selected node\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"ivan-m\/structured-haskell-mode"} {"commit":"7be5319abfb598ced2d56bbff4d362beba861a5a","old_file":"site-lisp\/clgc-org.el","new_file":"site-lisp\/clgc-org.el","old_contents":"(require 'org)\n\n;; Make windmove work in org-mode:\n(add-hook 'org-shiftup-final-hook 'windmove-up)\n(add-hook 'org-shiftleft-final-hook 'windmove-left)\n(add-hook 'org-shiftdown-final-hook 'windmove-down)\n(add-hook 'org-shiftright-final-hook 'windmove-right)\n\n(add-hook 'org-mode-hook 'turn-on-visual-line-mode)\n\n(setq org-completion-use-ido t)\n\n(provide 'clgc-org)\n","new_contents":"(require 'org)\n\n;; Make windmove work in org-mode:\n(add-hook 'org-shiftup-final-hook 'windmove-up)\n(add-hook 'org-shiftleft-final-hook 'windmove-left)\n(add-hook 'org-shiftdown-final-hook 'windmove-down)\n(add-hook 'org-shiftright-final-hook 'windmove-right)\n\n(add-hook 'org-mode-hook 'turn-on-visual-line-mode)\n\n(setq org-directory (expand-file-name \"~\/Dropbox\/org\")\n org-default-notes-file (expand-file-name \"incoming.org\" org-directory)\n org-completion-use-ido t\n org-return-follows-link t\n org-log-done t)\n\n(provide 'clgc-org)\n","subject":"Enable org capture, following links, etc","message":"Enable org capture, following links, etc\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"dgtized\/dotfiles,dgtized\/dotfiles,dgtized\/dotfiles"} {"commit":"9f80cdcbc00207f8fab183d34c52ccc1fff152c4","old_file":"init-package\/init-popwin.el","new_file":"init-package\/init-popwin.el","old_contents":"(use-package popwin\n :init\n (progn\n (popwin-mode 1)\n (push '(\"*grep*\" :dedicated t :position bottom :stick t :noselect t) popwin:special-display-config)\n ;; use popwin with helm\n (push '(\"^\\*helm.+\\*$\" :regexp t :position bottom) popwin:special-display-config)\n (push '(\"^\\*helm-.+\\*$\" :regexp t :position bottom) popwin:special-display-config)))\n","new_contents":"(use-package popwin\n :init\n (progn\n (popwin-mode 1)\n (push '(\"*grep*\" :dedicated t :position bottom :stick t :noselect t) popwin:special-display-config)\n (push '(\"^\\*Flycheck.+\\*$\" :regexp t :dedicated t :position bottom :stick t :noselect t) popwin:special-display-config)\n (push '(\"^\\*helm.+\\*$\" :regexp t :position bottom) popwin:special-display-config)\n (push '(\"^\\*helm-.+\\*$\" :regexp t :position bottom) popwin:special-display-config)))\n","subject":"Make flycheck error window a popup window","message":"Make flycheck error window a popup window\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"470d60d265d64d92374c66c70984f4dae6ea13d2","old_file":".emacs.d\/lisp\/code\/editorconfig-c.el","new_file":".emacs.d\/lisp\/code\/editorconfig-c.el","old_contents":";; Enable EditorConfig mode\n(editorconfig-mode +1)\n\n(provide 'editorconfig-c)\n","new_contents":";; Enable EditorConfig mode\n(editorconfig-mode +1)\n\n(defun kotct\/editorconfig--disable-smart-tabs-if-indent-tabs-mode-disabled (&optional hash)\n \"Disables `smart-tabs-mode' if `indent-tabs-mode' is non-truthy.\"\n (if (not indent-tabs-mode)\n (progn\n (smart-tabs-mode -1))))\n\n(add-hook 'editorconfig-custom-hooks 'kotct\/editorconfig--disable-smart-tabs-if-indent-tabs-mode-disabled)\n\n(provide 'editorconfig-c)\n","subject":"Disable Smart Tabs if indent-tabs-mode is disabled by editorconfig","message":"Disable Smart Tabs if indent-tabs-mode is disabled by editorconfig\n\nThis new function is run as an EditorConfig custom hook, so it only\ntakes place in situations where EditorConfig can be loaded.\n","lang":"Emacs Lisp","license":"mit","repos":"kotct\/dot,kotct\/dot"} {"commit":"bb8bf863cee948e01a303e60acbbda650e052890","old_file":"emacs\/init\/init-evil-leader.el","new_file":"emacs\/init\/init-evil-leader.el","old_contents":"; Evil Leader\n\n(require 'evil-leader)\n(require 'evil-nerd-commenter)\n\n(global-evil-leader-mode)\n\n(evil-leader\/set-leader \",\")\n(evil-leader\/set-key\n \"b\" 'ibuffer\n \"q\" 'delete-window\n \"tt\" 'save-buffer\n \"k\" 'kill-buffer-and-window)\n\n(evil-leader\/set-key\n \"full\" 'toggle-frame-fullscreen)\n\n; Nerd-Commenter\n(evil-leader\/set-key\n \"comm\" 'evilnc-comment-or-uncomment-lines)\n\n(provide 'init-evil-leader)\n","new_contents":"; Evil Leader\n\n(require 'evil-leader)\n(require 'evil-nerd-commenter)\n\n(global-evil-leader-mode)\n\n(evil-leader\/set-leader \",\")\n(evil-leader\/set-key\n \"b\" 'ibuffer\n \"q\" 'delete-window\n \"tt\" 'save-buffer\n \"k\" 'kill-buffer-and-window\n \"m\" 'right-char\n \",\" 'insert-comma)\n\n(evil-leader\/set-key\n \"full\" 'toggle-frame-fullscreen)\n\n; Nerd-Commenter\n(evil-leader\/set-key\n \"comm\" 'evilnc-comment-or-uncomment-lines)\n\n; Mail\n(evil-leader\/set-key\n \"email\" 'mu4e\n \"fetch\" 'mu4e-get-mail-command)\n\n; Allows me to actually type a comma...TODO ability to do this in insert mode.\n(defun insert-comma ()\n (interactive)\n (insert \",\"))\n\n(provide 'init-evil-leader)\n","subject":"Add ability to type , in emacs","message":"Add ability to type , in emacs\n","lang":"Emacs Lisp","license":"mit","repos":"NathanMH\/dotfiles,NathanMH\/dotfiles,NathanMH\/dotfiles,NathanMH\/dotfiles"} {"commit":"d15c6b0e5f6f371597917ec871f30b2daa7d2b90","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n ivy\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n ein\n\n :lang\n agda\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk)\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n (write ; emacs as a word processor (latex + org + markdown)\n +wordnut ; wordnet (wn) search\n +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n ivy\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n pdf\n ein\n\n :lang\n agda\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk)\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n (write ; emacs as a word processor (latex + org + markdown)\n +wordnut ; wordnet (wn) search\n +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","subject":"Enable :tools pdf in doom","message":"Enable :tools pdf in doom\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"06190b1c1e70c92879ff0d3ea9abcf57194277f1","old_file":"modes\/nix-mode-conf.el","new_file":"modes\/nix-mode-conf.el","old_contents":";;; nix-mode-conf.el --- Settings for nix-mode\n;;\n;;; Commentary:\n;;\n;;; Code:\n\n(require 'nix-mode)\n(require 'reformatter)\n\n(custom-set-variables\n '(nix-indent-function #'smie-indent-line))\n\n(reformatter-define nix-format\n :program \"nixpkgs-fmt\"\n :group 'nix-mode)\n\n(defun pjones:nix-mode-hook ()\n \"Configure `nix-mode'.\"\n (pjones:prog-mode-hook)\n (electric-indent-local-mode)\n (nix-format-on-save-mode))\n\n(define-key nix-mode-map (kbd \"\") #'newline-and-indent)\n(add-hook 'nix-mode-hook #'pjones:nix-mode-hook)\n\n;;; nix-mode-conf.el ends here\n","new_contents":";;; nix-mode-conf.el --- Settings for nix-mode\n;;\n;;; Commentary:\n;;\n;;; Code:\n\n(require 'nix-mode)\n(require 'reformatter)\n\n(declare-function pjones:prog-mode-hook \"..\/lisp\/code.el\")\n\n(custom-set-variables\n '(nix-indent-function #'smie-indent-line)\n '(nix-mode-use-smie t))\n\n(reformatter-define nix-format\n :program \"nixpkgs-fmt\"\n :group 'nix-mode)\n\n(defun pjones:nix-mode-hook ()\n \"Configure `nix-mode'.\"\n (pjones:prog-mode-hook)\n (nix-format-on-save-mode))\n\n(define-key nix-mode-map (kbd \"\") #'newline-and-indent)\n(add-hook 'nix-mode-hook #'pjones:nix-mode-hook)\n\n;;; nix-mode-conf.el ends here\n","subject":"Clean up this file, make it clear which indentation function is used","message":"nix: Clean up this file, make it clear which indentation function is used\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"74b831d096d8787309a81e86f98ea48ee6d7375e","old_file":"init-ido.el","new_file":"init-ido.el","old_contents":";; Use C-f during file selection to switch to regular find-file\n(ido-mode t) ; use 'buffer rather than t to use only buffer switching\n(ido-everywhere t)\n(ido-ubiquitous t)\n(setq ido-enable-flex-matching t)\n(setq ido-use-filename-at-point nil)\n(setq ido-auto-merge-work-directories-length 0)\n(setq ido-use-virtual-buffers t)\n\n;; Allow the same buffer to be open in different frames\n(setq ido-default-buffer-method 'selected-window)\n\n(defun steve-ido-choose-from-recentf ()\n \"Use ido to select a recently opened file from the `recentf-list'\"\n (interactive)\n (if (and ido-use-virtual-buffers (fboundp 'ido-toggle-virtual-buffers))\n (ido-switch-buffer)\n (find-file (ido-completing-read \"Open file: \" recentf-list nil t))))\n\n(global-set-key [(meta f11)] 'steve-ido-choose-from-recentf)\n\n\n;;----------------------------------------------------------------------------\n;; ido completion in M-x\n;;----------------------------------------------------------------------------\n(smex-initialize)\n(global-set-key \"\\M-x\" 'smex)\n\n\n(provide 'init-ido)\n","new_contents":";; Use C-f during file selection to switch to regular find-file\n(ido-mode t) ; use 'buffer rather than t to use only buffer switching\n(ido-everywhere t)\n(ido-ubiquitous-mode t)\n(setq ido-enable-flex-matching t)\n(setq ido-use-filename-at-point nil)\n(setq ido-auto-merge-work-directories-length 0)\n(setq ido-use-virtual-buffers t)\n\n;; Allow the same buffer to be open in different frames\n(setq ido-default-buffer-method 'selected-window)\n\n(defun steve-ido-choose-from-recentf ()\n \"Use ido to select a recently opened file from the `recentf-list'\"\n (interactive)\n (if (and ido-use-virtual-buffers (fboundp 'ido-toggle-virtual-buffers))\n (ido-switch-buffer)\n (find-file (ido-completing-read \"Open file: \" recentf-list nil t))))\n\n(global-set-key [(meta f11)] 'steve-ido-choose-from-recentf)\n\n\n;;----------------------------------------------------------------------------\n;; ido completion in M-x\n;;----------------------------------------------------------------------------\n(smex-initialize)\n(global-set-key \"\\M-x\" 'smex)\n\n\n(provide 'init-ido)\n","subject":"Use 'ido-ubiquitous-mode in place of deprecated 'ido-ubiquitous","message":"Use 'ido-ubiquitous-mode in place of deprecated 'ido-ubiquitous\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"Enzo-Liu\/emacs.d,alant\/emacs.d,LittleLmp\/emacs.d,farzadbekran\/emacs.d,krzysz00\/emacs.d,mpwang\/emacs.d,pairyo\/emacs.d,Werewolflsp\/emacs.d,arthurl\/emacs.d,braveoyster\/emacs.d,lujianmei\/emacs.d,mmqmzk\/emacs.d,ilove0518\/emacs.d,lromang\/emacs.d,zuoshifan\/emacs.d,blueabysm\/emacs.d,qianwan\/emacs.d,zuoshifan\/emacs.d,ernest-dzf\/emacs.d,dongdonghu\/.emacs.d,blueseason\/emacs.d,zuoshifan\/emacs.d,hkcqr\/emacs.d,Guoozz\/emacs.d,jkaessens\/emacs.d,kongfy\/emacs.d,scorpionis\/emacs.d,wegatron\/emacs.d,renatoriccio\/emacs.d,cjqw\/emacs.d,modkzs\/emcs.d,me020523\/emacs.d,jachinpy\/emacs.d,exclamaforte\/emacs.d,LKI\/emacs.d,boblannon\/emacs.d,purcell\/emacs.d,caoyuanqi\/emacs.d,Shanicky\/emacs.d,fengxl\/emacs.d,wenpincui\/emacs.d,cyjia\/emacs.d,46do14\/emacs.d,roxolan\/emacs.d,zuoshifan\/emacs.d,svenyurgensson\/emacs.d,jthetzel\/emacs.d,zuoshifan\/emacs.d,zenith-john\/emacs.d,danfengcao\/emacs.d,dhanunjaya\/emacs.d,zuoshifan\/emacs.d,jhpx\/emacs.d,baohaojun\/emacs.d,shafayetkhan\/emacs.d,YangXin\/emacs.d,farzadbekran\/emacs.d,zhuoyikang\/emacs.d,kindoblue\/emacs.d,haodaivshen\/emacs.d,zhaotai\/.emacs.d,farzadbekran\/emacs.d,atreeyang\/emacs.d,bibaijin\/emacs.d,ruiyang\/emacs.d,benkha\/emacs.d,farzadbekran\/emacs.d,whizzzkid\/emacs.d,dcorking\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,DarkThrone\/emacs.d,qinshulei\/emacs.d,Togal\/emacs.d,emuio\/emacs.d,jachinpy\/emacs.d,gsmlg\/emacs.d,zuoshifan\/emacs.d,YangXin\/emacs.d,sgarciac\/emacs.d,hophacker\/emacs.d,lust4life\/emacs.d,carlosliu\/emacs.d,farzadbekran\/emacs.d,ruiyang\/emacs.d,Jadecity\/PurcellEmacs.d"} {"commit":"bff1aae2fb75bb0daa272610e9d0bea9d99549a0","old_file":"emacs\/ar\/ar-helm-projectile.el","new_file":"emacs\/ar\/ar-helm-projectile.el","old_contents":";;; ar-helm-projectile.el --- Helm projectile support.\n\n;;; Commentary:\n;; Helm projectile helpers.\n\n;;; Code:\n\n(require 'ar-shell)\n(require 'cl)\n(require 'helm-projectile)\n(require 'esh-mode)\n\n(defun ar\/helm-projectile-shell-cd ()\n \"Change shell current working directory using helm projectile.\"\n (interactive)\n (assert (or (string-equal mode-name \"EShell\")\n (string-equal mode-name \"Shell\")) nil \"Not in (E)Shell mode\")\n (let ((helm-dir-source (copy-tree helm-source-projectile-directories-list)))\n (add-to-list 'helm-dir-source (cons 'action (if (string-equal mode-name \"EShell\")\n (lambda (path)\n (insert (format \"cd %s\" path))\n (eshell-send-input))\n 'ar\/shell-cd)))\n (add-to-list 'helm-dir-source '(keymap . nil))\n (add-to-list 'helm-dir-source '(header-line . \"cd to directory...\"))\n (helm :sources helm-dir-source\n :buffer \"*helm-dirs*\"\n :candidate-number-limit 10000)))\n\n(provide 'ar-helm-projectile)\n\n;;; ar-helm-projectile.el ends here\n","new_contents":";;; ar-helm-projectile.el --- Helm projectile support.\n\n;;; Commentary:\n;; Helm projectile helpers.\n\n;;; Code:\n\n(require 'ar-shell)\n(require 'cl)\n(require 'helm-projectile)\n(require 'esh-mode)\n\n(defun ar\/helm-projectile-shell-cd ()\n \"Change shell current working directory using helm projectile.\"\n (interactive)\n (assert (or (equal major-mode 'eshell-mode)\n (equal major-mode 'shell-mode)) nil \"Not in (E)Shell mode\")\n (let ((helm-dir-source (copy-tree helm-source-projectile-directories-list)))\n (add-to-list 'helm-dir-source (cons 'action (if (string-equal mode-name \"EShell\")\n (lambda (path)\n (insert (format \"cd %s\" path))\n (eshell-send-input))\n 'ar\/shell-cd)))\n (add-to-list 'helm-dir-source '(keymap . nil))\n (add-to-list 'helm-dir-source '(header-line . \"cd to directory...\"))\n (helm :sources helm-dir-source\n :buffer \"*helm-dirs*\"\n :candidate-number-limit 10000)))\n\n(provide 'ar-helm-projectile)\n\n;;; ar-helm-projectile.el ends here\n","subject":"Use major-mode when checking for shell (instead of mode-name)","message":"Use major-mode when checking for shell (instead of mode-name)\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"xenodium\/dotfiles,xenodium\/dotfiles"} {"commit":"cdf279830f6eec64d75093af14699aa23ee73cb6","old_file":"lisp\/init-which-key.el","new_file":"lisp\/init-which-key.el","old_contents":";; Which Key\n;; https:\/\/github.com\/justbur\/emacs-which-key\n\n(require-package 'which-key)\n\n(which-key-mode)\n\n(provide 'init-which-key)\n","new_contents":";; init-which-key.el --- Which Key setup\n\n;;; Commentary:\n;; https:\/\/github.com\/justbur\/emacs-which-key\n\n;;; Code:\n(use-package which-key\n :diminish which-key-mode\n :init\n (which-key-mode))\n\n(provide 'init-which-key)\n;;; init-which-key ends here\n","subject":"Update which-key configuration to use use-package","message":"Update which-key configuration to use use-package\n","lang":"Emacs Lisp","license":"mit","repos":"gilesp\/emacs.d"} {"commit":"c4676d4f1b125796296c31d61b401434063fce8e","old_file":"layers\/my-dtrt-indent\/config.el","new_file":"layers\/my-dtrt-indent\/config.el","old_contents":";; -*- lexical-binding: t -*-\n\n(defvar dtrt-indent-mode-whitelist '(prog-mode text-mode)\n \"A list of major modes in which to enable `dtrt-indent' mode.\n\nAlso see `dtrt-indent-mode-blacklist'.\")\n\n(defvar dtrt-indent-mode-blacklist '()\n \"A list of major modes in which not to enable the `dtrt-indent' minor mode.\n\nThe blacklist takes precedence over the whitelist. `dtrt-indent' mode will be\nenabled in all modes listed in `dtrt-indent-mode-whitelist' as well as modes\nderived from them, except in modes listed in `dtrt-indent-mode-blacklist' or\nmodes derived from them.\")\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defvar dtrt-indent-mode-whitelist '(conf-mode prog-mode text-mode)\n \"A list of major modes in which to enable `dtrt-indent' mode.\n\nAlso see `dtrt-indent-mode-blacklist'.\")\n\n(defvar dtrt-indent-mode-blacklist '()\n \"A list of major modes in which not to enable the `dtrt-indent' minor mode.\n\nThe blacklist takes precedence over the whitelist. `dtrt-indent' mode will be\nenabled in all modes listed in `dtrt-indent-mode-whitelist' as well as modes\nderived from them, except in modes listed in `dtrt-indent-mode-blacklist' or\nmodes derived from them.\")\n","subject":"Enable dtrt-indent in conf-mode as well","message":"Enable dtrt-indent in conf-mode as well\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"327d1320c95c071c93bf974d83373b0943afaa56","old_file":"init-package\/init-auto-highlight-symbol.el","new_file":"init-package\/init-auto-highlight-symbol.el","old_contents":"(use-package auto-highlight-symbol\n :commands auto-highlight-symbol-mode\n :init\n (add-to-hooks\n 'auto-highlight-symbol-mode '(prog-mode-hook\n erlang-mode-hook\n org-mode-hook\n ))\n :config\n (custom-set-variables\n '(ahs-case-fold-search nil)\n '(ahs-default-range (quote ahs-range-whole-buffer))\n '(ahs-idle-interval 0.5)))\n\n\n","new_contents":"(use-package auto-highlight-symbol\n :commands auto-highlight-symbol-mode\n :init\n (add-to-hooks\n 'auto-highlight-symbol-mode '(erlang-mode-hook\n prog-mode-hook\n org-mode-hook\n markdown-mode-hook\n ))\n :config\n (custom-set-variables\n '(ahs-case-fold-search nil)\n '(ahs-default-range (quote ahs-range-whole-buffer))\n '(ahs-idle-interval 0.5)))\n\n\n","subject":"Add auto highlight symbol mode to markdown mode hook","message":"Add auto highlight symbol mode to markdown mode hook\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"816dfe1adc568e405d251ae245d17f39a2320ffc","old_file":"config\/color_theme.el","new_file":"config\/color_theme.el","old_contents":"(set-face-foreground 'mode-line \"black\")\n(set-face-background 'mode-line \"purple\")\n(set-face-background 'mode-line-inactive \"blue\")\n(set-face-background 'modeline-inactive \"red\")\n","new_contents":";; (set-face-foreground 'mode-line \"black\")\n;; (set-face-background 'mode-line \"purple\")\n;; (set-face-background 'mode-line-inactive \"blue\")\n;; (set-face-background 'modeline-inactive \"red\")\n\n;; (load-theme 'hipster)\n","subject":"Add some color settings ehoch are currently disabled","message":"Add some color settings ehoch are currently disabled\n","lang":"Emacs Lisp","license":"unlicense","repos":"schanur\/emacs.d"} {"commit":"3fec00a5341fdc0a4b3fc92cf06a7cc83e3aff3e","old_file":"modules\/editor\/parinfer\/config.el","new_file":"modules\/editor\/parinfer\/config.el","old_contents":";;; lang\/emacs-lisp\/+parinfer.el -*- lexical-binding: t; -*-\n\n\n(def-package! parinfer\n :commands (parinfer-mode)\n :init\n (add-hook! (emacs-lisp-mode\n clojure-mode\n common-lisp-mode\n scheme-mode\n lisp-mode)\n (yas-minor-mode -1)\n (parinfer-mode))\n (setq parinfer-extensions\n '(defaults\n pretty-parens\n smart-tab\n smart-yank))\n (if (featurep! :feature evil)\n (push 'evil parinfer-extensions))\n :config\n (map! :map emacs-lisp-mode-map\n :i \"\" #'parinfer-smart-tab:dwim-right\n :i \"\" #'parinfer-smart-tab:dwim-left\n :localleader\n :nv \"m\" #'parinfer-toggle-mode))\n","new_contents":";;; lang\/emacs-lisp\/+parinfer.el -*- lexical-binding: t; -*-\n\n\n(def-package! parinfer\n :commands (parinfer-mode)\n :init\n (add-hook! (emacs-lisp-mode\n clojure-mode\n common-lisp-mode\n scheme-mode\n lisp-mode)\n (yas-minor-mode -1)\n (parinfer-mode))\n (setq parinfer-extensions\n '(defaults\n pretty-parens\n smart-tab\n smart-yank))\n (if (featurep! :feature evil)\n (push 'evil parinfer-extensions))\n :config\n (map! :map parinfer-mode-map\n :i \"\" #'parinfer-smart-tab:dwim-right\n :i \"\" #'parinfer-smart-tab:dwim-left\n :localleader\n :nv \"m\" #'parinfer-toggle-mode))\n","subject":"Swap from emacs-lisp-mode-map to parinfer-mode-map","message":"Swap from emacs-lisp-mode-map to parinfer-mode-map\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom"} {"commit":"04b7f5e5c6d621cf0433f20386ba5b70717b0f08","old_file":".emacs.d\/lisp\/packages\/org-cfg.el","new_file":".emacs.d\/lisp\/packages\/org-cfg.el","old_contents":";;; org-cfg.el --- Note taking and todo list (builtin package)\n;;; Commentary:\n;;; Code:\n\n(use-package org\n :config\n (setq org-completion-use-ido t)\n\n (setq org-todo-keywords '(\"TODO\" \"WAITING\" \"NEVER\" \"DONE\"))\n\n (setq org-startup-folded nil ; Headings are unfolded when file is opened\n org-startup-indented t ; Display sections\/outlines indented\n org-startup-truncated nil) ; Wrap long lines instead of truncating\n\n (setq org-M-RET-may-split-line nil)) ; Make new heading after current heading\n\n(require 'evil-core)\n(use-package evil-org\n :config\n ;; Unbind some evil keys that evil-org overrides\n (evil-define-key 'normal evil-org-mode-map\n \"g j\" nil\n \"g k\" nil\n \"o\" nil\n \"O\" nil\n \"J\" nil\n \"K\" nil)\n\n ;; Now bind our own keys\n (evil-define-key 'normal evil-org-mode-map\n \"[\" 'outline-previous-visible-heading\n \"]\" 'outline-next-visible-heading))\n\n(provide 'org-cfg)\n\n;;; org-cfg.el ends here\n","new_contents":";;; org-cfg.el --- Note taking and todo list (builtin package)\n;;; Commentary:\n;;; Code:\n\n(use-package org\n :config\n (setq org-completion-use-ido t)\n\n (setq org-startup-folded nil ; Headings are unfolded when file is opened\n org-startup-indented t ; Display sections\/outlines indented\n org-startup-truncated nil) ; Wrap long lines instead of truncating\n\n (setq org-pretty-entities t)\n\n (setq org-M-RET-may-split-line nil)) ; Make new heading after current heading\n\n(require 'evil-core)\n(use-package evil-org\n :config\n ;; Unbind some evil keys that evil-org overrides\n (evil-define-key 'normal evil-org-mode-map\n \"g j\" nil\n \"g k\" nil\n \"o\" nil\n \"O\" nil\n \"J\" nil\n \"K\" nil)\n\n ;; Now bind our own keys\n (evil-define-key 'normal evil-org-mode-map\n \"[\" 'outline-previous-visible-heading\n \"]\" 'outline-next-visible-heading))\n\n(provide 'org-cfg)\n\n;;; org-cfg.el ends here\n","subject":"Make minor updates to org-mode config","message":"Make minor updates to org-mode config\n","lang":"Emacs Lisp","license":"mit","repos":"strburst\/dotfiles"} {"commit":"4d0cd34f6bef6e575171f09720e64b84d08dba31","old_file":"init-growl.el","new_file":"init-growl.el","old_contents":"(require 'todochiku) ;; growl notifications when compilation finishes\n(setq todochiku-icons-directory (expand-file-name \"~\/.emacs.d\/site-lisp\/todochiku-icons\"))\n\n(provide 'init-growl)\n","new_contents":"(require 'todochiku) ;; growl notifications when compilation finishes\n(setq todochiku-icons-directory (expand-file-name \"~\/.emacs.d\/site-lisp\/todochiku-icons\"))\n\n\n;;----------------------------------------------------------------------------\n;; Use terminal-notifier in OS X Mountain Lion\n;; https:\/\/github.com\/alloy\/terminal-notifier (Install in \/Applications)\n;;----------------------------------------------------------------------------\n(setq terminal-notifier-path\n \"\/Applications\/terminal-notifier.app\/Contents\/MacOS\/terminal-notifier\")\n\n(defadvice todochiku-get-arguments (around todochiku-nc)\n (setq ad-return-value\n (list \"-title\" title \"-message\" message \"-activate\" \"org.gnu.Emacs\")))\n\n(when (file-executable-p terminal-notifier-path)\n (setq todochiku-command terminal-notifier-path)\n (ad-activate 'todochiku-get-arguments))\n\n\n(provide 'init-growl)\n","subject":"Add support for \"Notification Center\" in OS X Mountain Lion using terminal-notifier","message":"Add support for \"Notification Center\" in OS X Mountain Lion using terminal-notifier\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zhuoyikang\/emacs.d,caoyuanqi\/emacs.d,kongfy\/emacs.d,jthetzel\/emacs.d,benkha\/emacs.d,farzadbekran\/emacs.d,roxolan\/emacs.d,braveoyster\/emacs.d,pairyo\/emacs.d,kindoblue\/emacs.d,wegatron\/emacs.d,LittleLmp\/emacs.d,ruiyang\/emacs.d,krzysz00\/emacs.d,fengxl\/emacs.d,modkzs\/emcs.d,zuoshifan\/emacs.d,svenyurgensson\/emacs.d,lujianmei\/emacs.d,zuoshifan\/emacs.d,jachinpy\/emacs.d,qinshulei\/emacs.d,Jadecity\/PurcellEmacs.d,YangXin\/emacs.d,carlosliu\/emacs.d,46do14\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,me020523\/emacs.d,jhpx\/emacs.d,farzadbekran\/emacs.d,sgarciac\/emacs.d,emuio\/emacs.d,DarkThrone\/emacs.d,baohaojun\/emacs.d,renatoriccio\/emacs.d,LKI\/emacs.d,hophacker\/emacs.d,danfengcao\/emacs.d,jkaessens\/emacs.d,cyjia\/emacs.d,zuoshifan\/emacs.d,dongdonghu\/.emacs.d,Enzo-Liu\/emacs.d,Guoozz\/emacs.d,dcorking\/emacs.d,Shanicky\/emacs.d,YangXin\/emacs.d,shafayetkhan\/emacs.d,lust4life\/emacs.d,zuoshifan\/emacs.d,lromang\/emacs.d,whizzzkid\/emacs.d,arthurl\/emacs.d,atreeyang\/emacs.d,gsmlg\/emacs.d,hkcqr\/emacs.d,bibaijin\/emacs.d,mmqmzk\/emacs.d,zuoshifan\/emacs.d,dhanunjaya\/emacs.d,qianwan\/emacs.d,ruiyang\/emacs.d,haodaivshen\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,Werewolflsp\/emacs.d,zuoshifan\/emacs.d,exclamaforte\/emacs.d,scorpionis\/emacs.d,zhaotai\/.emacs.d,ilove0518\/emacs.d,blueabysm\/emacs.d,boblannon\/emacs.d,farzadbekran\/emacs.d,purcell\/emacs.d,farzadbekran\/emacs.d,ernest-dzf\/emacs.d,blueseason\/emacs.d,zenith-john\/emacs.d,cjqw\/emacs.d,Togal\/emacs.d,alant\/emacs.d,mpwang\/emacs.d,wenpincui\/emacs.d"} {"commit":"d35295dc650520e2fc4f07cd2c21041b28c053e6","old_file":"mocha.el","new_file":"mocha.el","old_contents":";;; Package --- Summary:\n\n;;; Summary:\n\n;;; Commentary:\n\n;;; Code:\n(defvar mocha-command \"mocha\")\n\n(defvar mocha-environment-variables nil)\n\n(defvar mocha-reporter \"dot\")\n\n(defvar mocha-options nil)\n\n(defvar mocha-project-test-directory nil)\n\n(defun mocha-test-project ()\n \"Test the current project.\"\n nil)\n\n(defun mocha-test-file ()\n \"Test the current file.\"\n nil)\n\n(defun mocha-test-at-point ()\n \"Test the current innermost 'it' or 'describe' or the file if none is found.\"\n nil)\n\n(provide 'mocha)\n;;; mocha.el ends here\n","new_contents":";;; mocha.el --- Mocha testing for Emacs:\n\n;; Copyright (C) 2016 Al Scott \n;; Author: Al Scott\n;; URL: http:\/\/github.com\/pezra\/scottaj\/mocha-mode\n;; Created: 2016\n;; Version: 0.1\n;; Keywords: javascript mocha jasmine\n;; Package-Requires: ()\n\n;; This file is NOT part of GNU Emacs.\n;;\n;;; Commentary:\n;;\n;; This mode provides the ability to run Mocha or Jasmine tests from within Emacs\n\n;;; Code:\n(defvar mocha-which-node \"node\")\n\n(defvar mocha-command \"mocha\")\n\n(defvar mocha-environment-variables nil)\n\n(defvar mocha-options nil)\n\n(defvar mocha-project-test-directory nil)\n\n(defun mocha-command ()\n \"The test command to run.\"\n (concat mocha-environment-variables \" \" mocha-which-node \" \" mocha-command \" \" mocha-options \" \" mocha-project-test-directory))\n\n(defun mocha-test-project ()\n \"Test the current project.\"\n (interactive)\n (compile (mocha-command)))\n\n(defun mocha-test-file ()\n \"Test the current file.\"\n (interactive)\n nil)\n\n(defun mocha-test-at-point ()\n \"Test the current innermost 'it' or 'describe' or the file if none is found.\"\n (interactive)\n nil)\n\n(provide 'mocha-mode)\n;;; mocha.el ends here\n","subject":"Add ability to run tests on whole directory.","message":"Add ability to run tests on whole directory.\n","lang":"Emacs Lisp","license":"mit","repos":"scottaj\/mocha.el"} {"commit":"e197ff0d9c8016e5bd30e27e9634a434499d5d4a","old_file":"init-python-mode.el","new_file":"init-python-mode.el","old_contents":"\n\n(autoload 'doctest-mode \"doctest-mode\" \"Python doctest editing mode.\" t)\n\n(setq auto-mode-alist\n (append '((\"SConstruct\\\\'\" . python-mode)\n\t\t(\"SConscript\\\\'\" . python-mode))\n auto-mode-alist))\n\n\n;;----------------------------------------------------------------------------\n;; On-the-fly syntax checking via flymake\n;;----------------------------------------------------------------------------\n(require-package 'flymake-python-pyflakes)\n(add-hook 'python-mode-hook 'flymake-python-pyflakes-load)\n\n\n(provide 'init-python-mode)\n","new_contents":"(setq auto-mode-alist\n (append '((\"SConstruct\\\\'\" . python-mode)\n\t\t(\"SConscript\\\\'\" . python-mode))\n auto-mode-alist))\n\n\n;;----------------------------------------------------------------------------\n;; On-the-fly syntax checking via flymake\n;;----------------------------------------------------------------------------\n(require-package 'flymake-python-pyflakes)\n(add-hook 'python-mode-hook 'flymake-python-pyflakes-load)\n\n\n(provide 'init-python-mode)\n","subject":"Remove defunct autoload for doctest-mode","message":"Remove defunct autoload for doctest-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"dcorking\/emacs.d,LittleLmp\/emacs.d,kindoblue\/emacs.d,scorpionis\/emacs.d,fengxl\/emacs.d,bibaijin\/emacs.d,ruiyang\/emacs.d,dongdonghu\/.emacs.d,LKI\/emacs.d,dhanunjaya\/emacs.d,lust4life\/emacs.d,kongfy\/emacs.d,hkcqr\/emacs.d,atreeyang\/emacs.d,alant\/emacs.d,benkha\/emacs.d,cjqw\/emacs.d,ernest-dzf\/emacs.d,Enzo-Liu\/emacs.d,danfengcao\/emacs.d,zhuoyikang\/emacs.d,wenpincui\/emacs.d,baohaojun\/emacs.d,shafayetkhan\/emacs.d,carlosliu\/emacs.d,Shanicky\/emacs.d,farzadbekran\/emacs.d,ruiyang\/emacs.d,lujianmei\/emacs.d,Guoozz\/emacs.d,renatoriccio\/emacs.d,jkaessens\/emacs.d,qianwan\/emacs.d,jthetzel\/emacs.d,farzadbekran\/emacs.d,gsmlg\/emacs.d,me020523\/emacs.d,haodaivshen\/emacs.d,blueseason\/emacs.d,lromang\/emacs.d,farzadbekran\/emacs.d,caoyuanqi\/emacs.d,whizzzkid\/emacs.d,zenith-john\/emacs.d,cyjia\/emacs.d,exclamaforte\/emacs.d,jachinpy\/emacs.d,roxolan\/emacs.d,krzysz00\/emacs.d,jachinpy\/emacs.d,qinshulei\/emacs.d,Jadecity\/PurcellEmacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,sgarciac\/emacs.d,mmqmzk\/emacs.d,blueabysm\/emacs.d,Togal\/emacs.d,hophacker\/emacs.d,Werewolflsp\/emacs.d,arthurl\/emacs.d,modkzs\/emcs.d,svenyurgensson\/emacs.d,mpwang\/emacs.d,boblannon\/emacs.d,pairyo\/emacs.d,DarkThrone\/emacs.d,emuio\/emacs.d,wegatron\/emacs.d,46do14\/emacs.d,braveoyster\/emacs.d,purcell\/emacs.d,jhpx\/emacs.d,zhaotai\/.emacs.d,ilove0518\/emacs.d"} {"commit":"062ff525062b2b0ccbfc92de2520a68e17794335","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"((sh-mode . ((indent-tabs-mode . nil)\n (sh-indentation . 2)\n (sh-basic-offset . 2))))\n","new_contents":"((sh-mode . ((indent-tabs-mode . nil)\n (sh-indentation . 2)\n (sh-basic-offset . 2)))\n (c-mode . ((indent-tabs-mode . nil)\n (c-basic-offset . 2))))\n","subject":"Add Emacs configuration for C","message":"Add Emacs configuration for C\n","lang":"Emacs Lisp","license":"lgpl-2.1","repos":"groonga\/groonga,naoa\/groonga,komainu8\/groonga,groonga\/groonga,kenhys\/groonga,kenhys\/groonga,komainu8\/groonga,kenhys\/groonga,naoa\/groonga,komainu8\/groonga,kenhys\/groonga,naoa\/groonga,komainu8\/groonga,groonga\/groonga,groonga\/groonga,kenhys\/groonga,groonga\/groonga,naoa\/groonga,komainu8\/groonga,kenhys\/groonga,groonga\/groonga,groonga\/groonga,groonga\/groonga,kenhys\/groonga,komainu8\/groonga,komainu8\/groonga,naoa\/groonga,naoa\/groonga,komainu8\/groonga,naoa\/groonga,naoa\/groonga,kenhys\/groonga"} {"commit":"004d33beeb2d4f5f816b3d792c14c689f5bb4daf","old_file":"doc\/auto\/documentation.el","new_file":"doc\/auto\/documentation.el","old_contents":"(TeX-add-style-hook \"documentation\"\n (lambda ()\n (LaTeX-add-environments\n \"theorem\"\n \"lemma\"\n \"example\"\n \"remark\")\n (LaTeX-add-labels\n \"chap:requirements\")\n (TeX-run-style-hooks\n \"amssymb\"\n \"amsmath\"\n \"latex2e\"\n \"rep10\"\n \"report\"\n \"a4paper\")))\n\n","new_contents":"(TeX-add-style-hook \"documentation\"\n (lambda ()\n (LaTeX-add-environments\n \"theorem\"\n \"lemma\"\n \"example\"\n \"remark\")\n (LaTeX-add-labels\n \"chap:requirements\")\n (TeX-run-style-hooks\n \"amssymb\"\n \"amsmath\"\n \"microtype\"\n \"charter\"\n \"fontenc\"\n \"T1\"\n \"latex2e\"\n \"memoir10\"\n \"memoir\"\n \"a4paper\")))\n\n","subject":"Update tex helper emacs .el's","message":"Update tex helper emacs .el's\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"jlouis\/etorrent,beni55\/etorrent"} {"commit":"4df3cd89c44d3275b987c00aff8f4314d613a1e6","old_file":"setup-files\/setup-visual-regexp.el","new_file":"setup-files\/setup-visual-regexp.el","old_contents":";; Time-stamp: <2013-12-02 17:08:32 kmodi>\n\n;; Visual Regular Expression search\/replace\n\n(require 'visual-regexp)\n\n;;\n\n\n(setq setup-visual-regexp-loaded t)\n(provide 'setup-visual-regexp)\n","new_contents":";; Time-stamp: <2014-04-07 10:08:55 kmodi>\n\n;; Visual Regular Expression search\/replace\n\n(require 'visual-regexp)\n(require 'visual-regexp-steroids)\n\n;;\n\n\n(setq setup-visual-regexp-loaded t)\n(provide 'setup-visual-regexp)\n","subject":"Use visual_regexp_steroids to be able to use non-escaped regex when do regex search(\/replace)","message":"Use visual_regexp_steroids to be able to use non-escaped regex when do\nregex search(\/replace)\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"cc674715a9dacf126dec3802747d718b6640578e","old_file":"elisp\/js-programming.el","new_file":"elisp\/js-programming.el","old_contents":";;; js-programming.el --- Javascript programming relevant stuff.\n;;; Commentary:\n;;; Code:\n\n(use-package js2-mode\n :ensure t\n :pin gnu\n :commands (js2-mode js2-jsx-mode)\n :mode ((\"\\\\.js\\\\'\" . js2-mode)\n (\"\\\\.jsx?\\\\'\" . js2-jsx-mode))\n :config\n (add-to-list 'interpreter-mode-alist '(\"node\" . js2-jsx-mode)))\n\n(use-package tern\n :ensure t\n :config\n (add-hook 'js2-mode-hook (lambda () (tern-mode t))))\n\n(use-package company-tern\n :ensure t\n :after (company tern js2-mode)\n :config\n (defun my\/add-tern-company ()\n (setq-local company-backends company-backends)\n (add-to-list 'company-backends 'company-tern))\n (add-hook 'js2-mode-hook #'my\/add-tern-company))\n\n\n;; Been using this one for work lately\n(use-package json-reformat\n :ensure t)\n\n(provide 'js-programming)\n;;; js-programming.el ends here\n","new_contents":";;; js-programming.el --- Javascript programming relevant stuff.\n;;; Commentary:\n;;; Code:\n\n(use-package js2-mode\n :ensure t\n :pin gnu\n :commands (js2-mode js2-jsx-mode)\n :mode ((\"\\\\.js\\\\'\" . js2-mode)\n (\"\\\\.jsx?\\\\'\" . js2-jsx-mode))\n :config\n (setq js2-basic-offset 2)\n (setq-default js2-mode-show-parse-errors nil\n js2-mode-show-strict-warnings nil)\n (add-to-list 'interpreter-mode-alist '(\"node\" . js2-jsx-mode)))\n\n(use-package tern\n :ensure t\n :config\n (add-hook 'js2-mode-hook (lambda () (tern-mode t))))\n\n(use-package company-tern\n :ensure t\n :after (company tern js2-mode)\n :config\n (defun my\/add-tern-company ()\n (setq-local company-backends company-backends)\n (add-to-list 'company-backends 'company-tern))\n (add-hook 'js2-mode-hook #'my\/add-tern-company))\n\n\n;; Been using this one for work lately\n(use-package json-reformat\n :ensure t)\n\n(provide 'js-programming)\n;;; js-programming.el ends here\n","subject":"Change js2 basic indent offset to 2 and ignore js2 error checking","message":"Change js2 basic indent offset to 2 and ignore js2 error checking\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"ee88438636c3f0c0ebd8c05e45b9696cdd7409e6","old_file":".emacs.d\/lisp\/packages\/org-use.el","new_file":".emacs.d\/lisp\/packages\/org-use.el","old_contents":";;; org-use.el --- Note taking and todo list (builtin package)\n;;; Commentary:\n;;; Code:\n\n(use-package org\n :config\n (setq org-completion-use-ido t)\n\n (setq org-startup-folded nil ; Headings are unfolded when file is opened\n org-startup-indented t ; Display sections\/outlines indented\n org-startup-truncated nil)) ; Wrap long lines instead of truncating\n\n(require 'evil-core)\n(use-package evil-org\n :config\n ;; Unbind some evil keys that evil-org overrides\n (evil-define-key 'normal evil-org-mode-map\n \"g j\" nil\n \"g k\" nil\n \"o\" nil\n \"O\" nil\n \"J\" nil\n \"K\" nil)\n\n ;; Now bind our own keys\n (evil-define-key 'normal evil-org-mode-map\n \"[\" 'outline-previous-visible-heading\n \"]\" 'outline-next-visible-heading))\n\n(provide 'org-use)\n\n;;; org-use.el ends here\n","new_contents":";;; org-use.el --- Note taking and todo list (builtin package)\n;;; Commentary:\n;;; Code:\n\n(use-package org\n :config\n (setq org-completion-use-ido t)\n\n (setq org-todo-keywords '(\"TODO\" \"WAITING\" \"NEVER\" \"DONE\"))\n\n (setq org-startup-folded nil ; Headings are unfolded when file is opened\n org-startup-indented t ; Display sections\/outlines indented\n org-startup-truncated nil)) ; Wrap long lines instead of truncating\n\n(require 'evil-core)\n(use-package evil-org\n :config\n ;; Unbind some evil keys that evil-org overrides\n (evil-define-key 'normal evil-org-mode-map\n \"g j\" nil\n \"g k\" nil\n \"o\" nil\n \"O\" nil\n \"J\" nil\n \"K\" nil)\n\n ;; Now bind our own keys\n (evil-define-key 'normal evil-org-mode-map\n \"[\" 'outline-previous-visible-heading\n \"]\" 'outline-next-visible-heading))\n\n(provide 'org-use)\n\n;;; org-use.el ends here\n","subject":"Add more org mode todo keywords","message":"Add more org mode todo keywords\n","lang":"Emacs Lisp","license":"mit","repos":"strburst\/dotfiles"} {"commit":"feb75751bfe50b137ad7012c9f7b05dff97207d3","old_file":"modules\/lang\/clojure\/config.el","new_file":"modules\/lang\/clojure\/config.el","old_contents":";;; lang\/clojure\/config.el -*- lexical-binding: t; -*-\n\n(def-package! clojure-mode\n :mode ((\"\\\\.clj$\" . clojure-mode)\n (\"\\\\.cljs$\". clojurescript-mode))\n :commands (clojure-mode clojurescript-mode) ;; this might not be necessary\n :config\n (map! :map clojure-mode-map\n (:localleader\n \"'\" #'cider-jack-in\n \"\\\"\" #'cider-jack-in-clojurescript\n \"b\" #'cider-switch-to-repl-buffer\n \"n\" #'cider-repl-switch-ns\n \"r\" #'cider-eval-region)))\n\n(def-package! cider\n :commands (cider-jack-in cider-mode cider-jack-in-clojurescript)\n :config\n (setq nrepl-hide-special-buffers t))\n","new_contents":";;; lang\/clojure\/config.el -*- lexical-binding: t; -*-\n\n(def-package! clojure-mode\n :mode ((\"\\\\.clj$\" . clojure-mode)\n (\"\\\\.cljs$\". clojurescript-mode))\n :commands (clojure-mode clojurescript-mode) ;; this might not be necessary?\n :config\n (map! :map clojure-mode-map\n (:localleader\n \"'\" #'cider-jack-in\n \"\\\"\" #'cider-jack-in-clojurescript\n \"b\" #'cider-switch-to-repl-buffer\n \"n\" #'cider-repl-set-ns\n \"r\" #'cider-eval-region)))\n\n\n(def-package! cider\n ;; BUG: if you don't have an org directory set (the dir doesn't exist), cider jack in won't work.\n :commands (cider-jack-in cider-mode cider-jack-in-clojurescript)\n :config\n (setq nrepl-hide-special-buffers t)\n\n ;; TODO: figure out how to set cider to the right window rather than shackle window (https:\/\/github.com\/hlissner\/doom-emacs\/issues\/171)\n ;; (set! :popup \"^\\\\*cider-.*\" :align 'left :noesc t) ;; no luck\n\n ;; Setup cider for clojurescript \/ figwheel dev.\n (setq cider-cljs-lein-repl\n \"(do (require 'figwheel-sidecar.repl-api)\n (figwheel-sidecar.repl-api\/start-figwheel!)\n (figwheel-sidecar.repl-api\/cljs-repl))\"))\n","subject":"Add figwheel settings + try and unshackle the repl (no luck yet!)","message":"Add figwheel settings + try and unshackle the repl (no luck yet!)\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,aminb\/.emacs.d,aminb\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,aminb\/.emacs.d,hlissner\/.emacs.d,aminb\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,aminb\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom"} {"commit":"092de0198e3aefbf24fae670197303611ef939dc","old_file":"user-lisp\/go-customisations.el","new_file":"user-lisp\/go-customisations.el","old_contents":"(use-package go-mode\n :config\n (define-key go-mode-map (kbd \"M-.\") #'godef-jump))\n\n(add-hook 'go-mode-hook #'flycheck-mode)\n\n;; Go is indented with tabs, so set the tab size in those buffers.\n(defun wh\/set-go-tab-width ()\n (setq tab-width 4))\n\n(add-hook 'go-mode-hook #'wh\/set-go-tab-width)\n\n(add-hook 'go-mode-hook #'go-eldoc-setup)\n\n(require 'go-mode)\n\n(setq gofmt-command \"~\/go\/bin\/goimports\")\n;; Using -s with goimports is not supported with upstream goimports.\n;; See https:\/\/github.com\/golang\/go\/issues\/8759 . Instead, use\n;; $ go get github.com\/jzelinskie\/tools\/cmd\/goimports\n(setq gofmt-args (list \"-s\"))\n\n;; TODO: send PR for this.\n(defun wh\/gofmt-before-save ()\n (set (make-local-variable 'before-save-hook)\n (append before-save-hook (list #'gofmt-before-save))))\n\n(add-hook 'go-mode-hook #'wh\/gofmt-before-save)\n\n(setq godef-command \"~\/go\/bin\/godef\")\n(provide 'go-customisations)\n","new_contents":"(use-package go-mode\n :config\n ;; Jump to definitions.\n (setq godef-command \"~\/go\/bin\/godef\")\n (define-key go-mode-map (kbd \"M-.\") #'godef-jump)\n\n ;; Run flycheck as you type.\n (add-hook 'go-mode-hook #'flycheck-mode)\n\n ;; Go is indented with tabs, so set the tab size in those buffers.\n (defun wh\/set-go-tab-width ()\n (setq tab-width 4))\n (add-hook 'go-mode-hook #'wh\/set-go-tab-width)\n\n ;; Show type of variable at point in the minibuffer.\n (add-hook 'go-mode-hook #'go-eldoc-setup)\n\n ;; Using -s with goimports is not supported with upstream goimports.\n ;; See https:\/\/github.com\/golang\/go\/issues\/8759. Instead, use\n ;; $ go get github.com\/jzelinskie\/tools\/cmd\/goimports\n (setq gofmt-command \"~\/go\/bin\/goimports\")\n (setq gofmt-args (list \"-s\"))\n\n ;; TODO: send PR for this.\n (defun wh\/gofmt-before-save ()\n (set (make-local-variable 'before-save-hook)\n (append before-save-hook (list #'gofmt-before-save))))\n (add-hook 'go-mode-hook #'wh\/gofmt-before-save))\n\n(provide 'go-customisations)\n","subject":"Move go configuration into the use-package block","message":"Move go configuration into the use-package block\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"7b529aee4d32cbf01f3adb519a96b4b05b5fbdd1","old_file":"doom-emacs\/.config\/doom\/packages.el","new_file":"doom-emacs\/.config\/doom\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; packages.el\n\n(package! org-super-agenda)\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; packages.el\n\n;; Disabled packages\n(package! vi-tilde-fringe :disable t)\n\n(package! org-super-agenda)\n","subject":"Remove ugly vi tilde fringes","message":"Remove ugly vi tilde fringes\n","lang":"Emacs Lisp","license":"mit","repos":"JingYenLoh\/dotfiles"} {"commit":"1344180b45caacf8c7a1dffdc89155a429b5554d","old_file":"contrib\/lang\/go\/packages.el","new_file":"contrib\/lang\/go\/packages.el","old_contents":"(defvar go-packages\n '(\n go-mode\n )\n \"List of all packages to install and\/or initialize. Built-in packages\nwhich require an initialization must be listed explicitly in the list.\")\n\n(defun go\/init-go-mode()\n (use-package go-mode\n :defer t\n :init\n (progn\n (evil-leader\/set-key\n \"mdp\" 'godoc-at-point\n \"mig\" 'go-goto-imports\n \"mia\" 'go-import-add\n \"mir\" 'go-remove-unused-imports\n \"mpb\" 'go-play-buffer\n \"mpr\" 'go-play-region\n \"mpd\" 'go-download-play\n )\n )\n :config\n (add-hook 'before-save-hook 'gofmt-before-save)\n )\n )\n\n","new_contents":"(defvar go-packages\n '(\n go-mode\n )\n \"List of all packages to install and\/or initialize. Built-in packages\nwhich require an initialization must be listed explicitly in the list.\")\n\n(defun go\/init-go-mode()\n (use-package go-mode\n :defer t\n :init\n (progn\n (evil-leader\/set-key\n \"mdp\" 'godoc-at-point\n \"mig\" 'go-goto-imports\n \"mia\" 'go-import-add\n \"mir\" 'go-remove-unused-imports\n \"mpb\" 'go-play-buffer\n \"mpr\" 'go-play-region\n \"mpd\" 'go-download-play\n )\n )\n :config\n (add-hook 'before-save-hook 'gofmt-before-save)\n (add-hook 'go-mode-hook 'flycheck-mode)\n )\n )\n\n","subject":"Add flycheck-mode to go layer","message":"Add flycheck-mode to go layer\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"450bb540fc196acd6be1c2cf9ed5aaab03855c90","old_file":"modes\/puni-conf.el","new_file":"modes\/puni-conf.el","old_contents":";;; puni-conf.el -- Settings for `puni' -*- lexical-binding: t -*-\n;;\n;;; Commentary:\n;;\n;;; Code:\n\n(require 'puni)\n\n(let ((mode puni-mode-map))\n (define-key mode (kbd \"C-w\") nil))\n\n;;; puni-conf.el ends here\n","new_contents":";;; puni-conf.el -- Settings for `puni' -*- lexical-binding: t -*-\n;;\n;;; Commentary:\n;;\n;;; Code:\n\n(require 'puni)\n\n(defun pjones:puni-squeeze-splice (arg)\n \"Perform a squeeze.\nIf ARG is non-nil then perform a splice.\"\n (interactive \"P\")\n (if arg (puni-splice)\n (puni-squeeze)))\n\n(let ((map puni-mode-map))\n ;; I can't deal with my editor preventing me from deleting\n ;; delimiters:\n (define-key map (kbd \"DEL\") nil)\n (define-key map (kbd \"C-d\") nil)\n (define-key map (kbd \"C-w\") nil)\n (define-key map (kbd \"C-M-\/\") #'puni-split)\n (define-key map (kbd \"C-M-k\") #'pjones:puni-squeeze-splice)\n (define-key map (kbd \"C-M-t\") #'puni-transpose))\n\n;;; puni-conf.el ends here\n","subject":"Allow me to break syntax, expose more key bindings","message":"puni: Allow me to break syntax, expose more key bindings\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"7b614c9dc8249f66e57324242e05482b78943f5e","old_file":"init-ido.el","new_file":"init-ido.el","old_contents":";; Use C-f during file selection to switch to regular find-file\n(ido-mode t) ; use 'buffer rather than t to use only buffer switching\n(ido-everywhere t)\n(setq ido-enable-flex-matching t)\n(setq ido-use-filename-at-point nil)\n(setq ido-auto-merge-work-directories-length 0)\n\n(defun steve-ido-choose-from-recentf ()\n \"Use ido to select a recently opened file from the `recentf-list'\"\n (interactive)\n (find-file (ido-completing-read \"Open file: \" recentf-list nil t)))\n(global-set-key [(meta f11)] 'steve-ido-choose-from-recentf)\n\n\n;;----------------------------------------------------------------------------\n;; ido completion in M-x\n;;----------------------------------------------------------------------------\n(require 'smex)\n(smex-initialize)\n(global-set-key \"\\M-x\" 'smex)\n\n\n(provide 'init-ido)\n","new_contents":";; Use C-f during file selection to switch to regular find-file\n(ido-mode t) ; use 'buffer rather than t to use only buffer switching\n(ido-everywhere t)\n(setq ido-enable-flex-matching t)\n(setq ido-use-filename-at-point nil)\n(setq ido-auto-merge-work-directories-length 0)\n\n;; Allow the same buffer to be open in different frames\n(setq ido-default-buffer-method 'selected-window)\n\n(defun steve-ido-choose-from-recentf ()\n \"Use ido to select a recently opened file from the `recentf-list'\"\n (interactive)\n (find-file (ido-completing-read \"Open file: \" recentf-list nil t)))\n(global-set-key [(meta f11)] 'steve-ido-choose-from-recentf)\n\n\n;;----------------------------------------------------------------------------\n;; ido completion in M-x\n;;----------------------------------------------------------------------------\n(require 'smex)\n(smex-initialize)\n(global-set-key \"\\M-x\" 'smex)\n\n\n(provide 'init-ido)\n","subject":"Allow the same buffer to be open in different frames when using IDO","message":"Allow the same buffer to be open in different frames when using IDO\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zuoshifan\/emacs.d,ruiyang\/emacs.d,me020523\/emacs.d,qinshulei\/emacs.d,wegatron\/emacs.d,haodaivshen\/emacs.d,Guoozz\/emacs.d,hkcqr\/emacs.d,danfengcao\/emacs.d,renatoriccio\/emacs.d,dcorking\/emacs.d,zenith-john\/emacs.d,Enzo-Liu\/emacs.d,zuoshifan\/emacs.d,caoyuanqi\/emacs.d,cjqw\/emacs.d,shafayetkhan\/emacs.d,jachinpy\/emacs.d,carlosliu\/emacs.d,Shanicky\/emacs.d,ilove0518\/emacs.d,alant\/emacs.d,Werewolflsp\/emacs.d,kongfy\/emacs.d,YangXin\/emacs.d,farzadbekran\/emacs.d,46do14\/emacs.d,Jadecity\/PurcellEmacs.d,qianwan\/emacs.d,ruiyang\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,scorpionis\/emacs.d,emuio\/emacs.d,benkha\/emacs.d,cyjia\/emacs.d,lujianmei\/emacs.d,farzadbekran\/emacs.d,gsmlg\/emacs.d,jhpx\/emacs.d,zuoshifan\/emacs.d,hophacker\/emacs.d,sgarciac\/emacs.d,svenyurgensson\/emacs.d,modkzs\/emcs.d,kindoblue\/emacs.d,boblannon\/emacs.d,braveoyster\/emacs.d,zhaotai\/.emacs.d,zuoshifan\/emacs.d,bibaijin\/emacs.d,dhanunjaya\/emacs.d,whizzzkid\/emacs.d,zuoshifan\/emacs.d,Togal\/emacs.d,DarkThrone\/emacs.d,zuoshifan\/emacs.d,jachinpy\/emacs.d,mpwang\/emacs.d,LKI\/emacs.d,blueabysm\/emacs.d,YangXin\/emacs.d,dongdonghu\/.emacs.d,krzysz00\/emacs.d,farzadbekran\/emacs.d,mmqmzk\/emacs.d,zuoshifan\/emacs.d,roxolan\/emacs.d,purcell\/emacs.d,ernest-dzf\/emacs.d,blueseason\/emacs.d,jthetzel\/emacs.d,lromang\/emacs.d,LittleLmp\/emacs.d,wenpincui\/emacs.d,lust4life\/emacs.d,arthurl\/emacs.d,zhuoyikang\/emacs.d,fengxl\/emacs.d,jkaessens\/emacs.d,baohaojun\/emacs.d,atreeyang\/emacs.d,exclamaforte\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,pairyo\/emacs.d"} {"commit":"6adb68405998718c8dab5b31544f35bb636c845c","old_file":"lisp\/init-rails.el","new_file":"lisp\/init-rails.el","old_contents":"(require-package 'rinari)\n(after-load 'rinari\n (diminish 'rinari-minor-mode \"Rin\"))\n(global-rinari-mode)\n\n(defun update-rails-ctags ()\n (interactive)\n (let ((default-directory (or (rinari-root) default-directory)))\n (shell-command (concat \"ctags -a -e -f \" rinari-tags-file-name \" --tag-relative -R app lib vendor test\"))))\n\n(when (maybe-require-package 'projectile-rails)\n (add-hook 'projectile-mode-hook 'projectile-rails-on)\n (after-load 'guide-key\n (add-to-list 'guide-key\/guide-key-sequence \"C-c r\")))\n\n\n(provide 'init-rails)\n","new_contents":"(require-package 'rinari)\n(after-load 'rinari\n (diminish 'rinari-minor-mode \"Rin\"))\n(global-rinari-mode)\n\n(defun update-rails-ctags ()\n (interactive)\n (let ((default-directory (or (rinari-root) default-directory)))\n (shell-command (concat \"ctags -a -e -f \" rinari-tags-file-name \" --tag-relative -R app lib vendor test\"))))\n\n(when (maybe-require-package 'projectile-rails)\n (after-load 'projectile\n (add-hook 'projectile-mode-hook 'projectile-rails-on)\n (after-load 'guide-key\n (add-to-list 'guide-key\/guide-key-sequence \"C-c r\"))))\n\n\n(provide 'init-rails)\n","subject":"Enable projectile-rails only after projectile is loaded","message":"Enable projectile-rails only after projectile is loaded\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zenith-john\/emacs.d,qianwan\/emacs.d,arthurl\/emacs.d,me020523\/emacs.d,mmqmzk\/emacs.d,Werewolflsp\/emacs.d,fengxl\/emacs.d,Shanicky\/emacs.d,dcorking\/emacs.d,sgarciac\/emacs.d,wegatron\/emacs.d,baohaojun\/emacs.d,cyjia\/emacs.d,roxolan\/emacs.d,blueseason\/emacs.d,svenyurgensson\/emacs.d,cjqw\/emacs.d,gsmlg\/emacs.d,jhpx\/emacs.d,Enzo-Liu\/emacs.d,kindoblue\/emacs.d,benkha\/emacs.d,krzysz00\/emacs.d,braveoyster\/emacs.d,kongfy\/emacs.d,purcell\/emacs.d,blueabysm\/emacs.d,lust4life\/emacs.d,emuio\/emacs.d"} {"commit":"d0761f9240eb3a446b479d8b0757c604ad1a3ce9","old_file":"setup-clojure-mode.el","new_file":"setup-clojure-mode.el","old_contents":"(require 'clojure-mode)\n\n(define-key clojure-mode-map (kbd \"C-c C-j\") 'clj-jump-to-other-file)\n(define-key clojure-mode-map (kbd \"C-c M-j\") 'clj-jump-to-other-file-other-window)\n\n(defadvice clojure-test-run-tests (before save-first activate)\n (save-buffer))\n\n(provide 'setup-clojure-mode)\n","new_contents":"(require 'clojure-mode)\n\n(define-key clojure-mode-map (kbd \"C-c C-j\") 'clj-jump-to-other-file)\n(define-key clojure-mode-map (kbd \"C-c M-j\") 'clj-jump-to-other-file-other-window)\n\n(defadvice clojure-test-run-tests (before save-first activate)\n (save-buffer))\n\n(eval-after-load \"nrepl\"\n '(progn\n (define-key nrepl-mode-map (kbd \"C-,\") 'complete-symbol)\n (define-key nrepl-interaction-mode-map (kbd \"C-,\") 'complete-symbol)))\n\n(provide 'setup-clojure-mode)\n","subject":"Use C-, to complete command in nrepl-modes.","message":"Use C-, to complete command in nrepl-modes.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"b694251b033e4da91fa23e9e872a3cbcf49f547c","old_file":"init-haskell.el","new_file":"init-haskell.el","old_contents":"(require-package 'haskell-mode)\n\n(add-hook 'haskell-mode-hook\n (lambda ()\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (turn-on-haskell-doc-mode)\n (turn-on-haskell-indent)))\n\n(eval-after-load 'haskell-mode\n '(define-key haskell-mode-map (kbd \"RET\") 'newline))\n\n(require-package 'ghci-completion)\n(add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion)\n\n(require-package 'flymake-hlint)\n(add-hook 'haskell-mode-hook #'flymake-hlint-load)\n\n(provide 'init-haskell)\n","new_contents":"(require-package 'haskell-mode)\n\n(dolist (hook '(haskell-mode-hook inferior-haskell-mode-hook))\n (add-hook hook 'turn-on-haskell-doc-mode))\n\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)\n\n(eval-after-load 'haskell-mode\n '(progn\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (define-key haskell-mode-map (kbd \"RET\") 'newline)))\n\n(require-package 'ghci-completion)\n(add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion)\n\n(require-package 'flymake-hlint)\n(add-hook 'haskell-mode-hook #'flymake-hlint-load)\n\n(provide 'init-haskell)\n","subject":"Enable more functionality in inferior-haskell-mode","message":"Enable more functionality in inferior-haskell-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"3f7dcb43bb162ffabc7baed24f21d2de1e058780","old_file":"modes\/haskell-mode-conf.el","new_file":"modes\/haskell-mode-conf.el","old_contents":";;; haskell-mode-conf.el -- Settings for Haskell mode.\n(eval-when-compile (require 'haskell-mode))\n(pjones:add-programming-hook 'haskell-mode-hook)\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)\n","new_contents":";;; haskell-mode-conf.el -- Settings for Haskell mode.\n(eval-when-compile\n (load \"..\/lisp\/code.el\")\n (require 'haskell-mode))\n\n(pjones:add-programming-hook 'haskell-mode-hook)\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)\n","subject":"Fix a compile error with my Haskell settings in Emacs","message":"Fix a compile error with my Haskell settings in Emacs\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"71c2932786a79877e7037512eb2a9d5acbe685a1","old_file":"modules\/lang\/json\/config.el","new_file":"modules\/lang\/json\/config.el","old_contents":";;; lang\/json\/config.el -*- lexical-binding: t; -*-\n\n(use-package! json-mode\n :mode \"\\\\.js\\\\(?:on\\\\|[hl]int\\\\(?:rc\\\\)?\\\\)\\\\'\"\n :init\n (when (featurep! +lsp)\n (add-hook 'json-mode-local-vars-hook #'lsp!))\n :config\n (set-electric! 'json-mode :chars '(?\\n ?: ?{ ?}))\n\n (map! :after json-mode\n :map json-mode-map\n :localleader\n \"p\" #'jsons-print-path))\n\n\n\n(when (featurep! :completion ivy)\n (use-package! counsel-jq\n :defer t\n :init\n (map! :after json-mode\n :map json-mode-map\n :localleader\n \"s\" #'counsel-jq)))\n","new_contents":";;; lang\/json\/config.el -*- lexical-binding: t; -*-\n\n(use-package! json-mode\n :mode \"\\\\.js\\\\(?:on\\\\|[hl]int\\\\(?:rc\\\\)?\\\\)\\\\'\"\n :init\n (when (featurep! +lsp)\n (add-hook 'json-mode-local-vars-hook #'lsp!))\n :config\n (set-electric! 'json-mode :chars '(?\\n ?: ?{ ?}))\n\n (map! :after json-mode\n :map json-mode-map\n :localleader\n \"p\" #'jsons-print-path))\n\n\n\n(use-package! counsel-jq\n :when (featurep! :completion ivy)\n :defer t\n :init\n (map! :after json-mode\n :map json-mode-map\n :localleader\n \"s\" #'counsel-jq))\n","subject":"Use :when instead of (when ...)","message":"Use :when instead of (when ...)\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs"} {"commit":"d9cc44c917018e3367f5568af5e44cecc2ded2e2","old_file":"settings\/setup-package.el","new_file":"settings\/setup-package.el","old_contents":"(require 'package)\n(require 'dash)\n\n;; Add melpa to package repos\n(add-to-list 'package-archives '(\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\") t)\n\n(package-initialize)\n\n(unless (file-exists-p \"~\/.emacs.d\/elpa\/archives\/melpa\")\n (package-refresh-contents))\n\n(defun packages-install (packages)\n (--each packages\n (when (not (package-installed-p it))\n (package-install it)))\n (delete-other-windows))\n\n;;; On-demand installation of packages\n\n(defun require-package (package &optional min-version no-refresh)\n \"Install given PACKAGE, optionally requiring MIN-VERSION.\nIf NO-REFRESH is non-nil, the available package lists will not be\nre-downloaded in order to locate PACKAGE.\"\n (if (package-installed-p package min-version)\n t\n (if (or (assoc package package-archive-contents) no-refresh)\n (package-install package)\n (progn\n (package-refresh-contents)\n (require-package package min-version t)))))\n\n(provide 'setup-package)\n","new_contents":"(require 'package)\n(require 'dash)\n\n;; Add melpa to package repos\n(add-to-list 'package-archives '(\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\") t)\n(add-to-list 'package-archives '(\"melpa-stable\" . \"http:\/\/stable.melpa.org\/packages\/\") t)\n\n(package-initialize)\n\n(unless (file-exists-p \"~\/.emacs.d\/elpa\/archives\/melpa\")\n (package-refresh-contents))\n\n(defun packages-install (packages)\n (--each packages\n (when (not (package-installed-p it))\n (package-install it)))\n (delete-other-windows))\n\n;;; On-demand installation of packages\n\n(defun require-package (package &optional min-version no-refresh)\n \"Install given PACKAGE, optionally requiring MIN-VERSION.\nIf NO-REFRESH is non-nil, the available package lists will not be\nre-downloaded in order to locate PACKAGE.\"\n (if (package-installed-p package min-version)\n t\n (if (or (assoc package package-archive-contents) no-refresh)\n (package-install package)\n (progn\n (package-refresh-contents)\n (require-package package min-version t)))))\n\n(provide 'setup-package)\n","subject":"Add melpa-stable to package archives","message":"Add melpa-stable to package archives\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"a6d45faba0cc82106b22ba512f656faf2080cf1f","old_file":"contrib\/iedit\/extensions.el","new_file":"contrib\/iedit\/extensions.el","old_contents":"(defvar iedit-post-extensions '(evil-iedit-state))\n\n(defun iedit\/init-evil-iedit-state ()\n (spacemacs\/defface-state-color 'iedit \"IndianRed1\")\n (spacemacs\/defface-state-color 'iedit-insert \"IndianRed1\")\n (defun iedit\/\/lazy-load ()\n (require 'evil-iedit-state)\n (setq evil-iedit-state-cursor `(,(spacemacs\/state-color 'iedit) box)) \n (setq evil-iedit-insert-state-cursor `((spacemacs\/state-color 'iedit-insert) (bar . 2)))\n (evil-leader\/set-key \"se\" 'evil-iedit-state\/iedit-mode)\n ;; override the basic edit mode from ahs everywhere\n (eval-after-load 'auto-highlight-symbol\n '(progn\n (evil-leader\/set-key \"se\" 'evil-iedit-state\/iedit-mode)\n (defalias 'ahs-edit-mode 'evil-iedit-state\/iedit-mode))))\n (add-to-hooks 'iedit\/\/lazy-load '(prog-mode-hook markdown-mode-hook)))\n\n\n \n","new_contents":"(defvar iedit-post-extensions '(evil-iedit-state))\n\n(defun iedit\/init-evil-iedit-state ()\n (spacemacs\/defface-state-color 'iedit \"IndianRed1\")\n (spacemacs\/defface-state-color 'iedit-insert \"IndianRed1\")\n (defun iedit\/\/lazy-load ()\n (require 'evil-iedit-state)\n (setq evil-iedit-state-cursor `(,(spacemacs\/state-color 'iedit) box)) \n (setq evil-iedit-insert-state-cursor `((spacemacs\/state-color 'iedit-insert) (bar . 2)))\n (evil-leader\/set-key \"se\" 'evil-iedit-state\/iedit-mode)\n (when (and (boundp 'evil-escape-mode)\n (symbol-value evil-escape-mode))\n (key-chord-define evil-iedit-state-map\n evil-escape-key-sequence\n 'evil-iedit-state\/quit-iedit-mode)\n (key-chord-define evil-iedit-insert-state-map\n evil-escape-key-sequence\n 'evil-iedit-state\/quit-iedit-mode)))\n ;; override the basic edit mode from ahs everywhere\n (eval-after-load 'auto-highlight-symbol\n '(progn\n (evil-leader\/set-key \"se\" 'evil-iedit-state\/iedit-mode)\n (defalias 'ahs-edit-mode 'evil-iedit-state\/iedit-mode)))\n (add-to-hooks 'iedit\/\/lazy-load '(prog-mode-hook markdown-mode-hook)))\n\n\n \n","subject":"Enable evil-escape `fd` in iedit states to exit to `normal state`","message":"Enable evil-escape `fd` in iedit states to exit to `normal state`\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"48bcca9234987a1f83b8dab768d1cc0aa9ecff8f","old_file":"files\/dotfiles\/.spacemacs.d\/elisp\/my-window-functions.el","new_file":"files\/dotfiles\/.spacemacs.d\/elisp\/my-window-functions.el","old_contents":"(defun my\/new-workspace-with-current-window ()\n (interactive)\n (let* ((default-tag (buffer-name))\n (workspace-tag-from-user (read-from-minibuffer (concat \"Tag for new workspace (\" default-tag \"): \")))\n (workspace-tag (if (string-empty-p workspace-tag-from-user) default-tag workspace-tag-from-user))\n (eyebrowse-new-workspace (buffer-name)))\n (eyebrowse-create-window-config)\n (eyebrowse-rename-window-config (eyebrowse--get 'current-slot) workspace-tag)))\n\n(defun my\/close-window-or-workspace ()\n (interactive)\n (cond ((> (list-length (window-list)) 1)\n (delete-window))\n ((> (list-length (eyebrowse--get 'window-configs)) 1)\n (eyebrowse-close-window-config))\n ((y-or-n-p \"This is the last workspace. Close the perspective? \") (spacemacs\/layouts-ts-close))))\n\n(provide 'my-window-functions)\n","new_contents":"(defun my\/new-workspace-with-current-window ()\n (interactive)\n (let* ((default-tag (buffer-name))\n (workspace-tag-from-user (read-from-minibuffer (concat \"Tag for new workspace (\" default-tag \"): \")))\n (workspace-tag (if (string-empty-p workspace-tag-from-user) default-tag workspace-tag-from-user))\n (eyebrowse-new-workspace (buffer-name)))\n (delete-window)\n (eyebrowse-create-window-config)\n (eyebrowse-rename-window-config (eyebrowse--get 'current-slot) workspace-tag)))\n\n(defun my\/close-window-or-workspace ()\n (interactive)\n (cond ((> (list-length (window-list)) 1)\n (delete-window))\n ((> (list-length (eyebrowse--get 'window-configs)) 1)\n (eyebrowse-close-window-config))\n ((y-or-n-p \"This is the last workspace. Close the perspective? \") (spacemacs\/layouts-ts-close))))\n\n(provide 'my-window-functions)\n","subject":"Delete the window from the last workspace when running C-w T","message":"Spacemacs: Delete the window from the last workspace when running C-w T\n","lang":"Emacs Lisp","license":"mit","repos":"akirak\/user-admin,akirak\/user-admin"} {"commit":"b4c81f0302b167e12393c991ced1b9d260f0f4b0","old_file":"setup-files\/setup-magit.el","new_file":"setup-files\/setup-magit.el","old_contents":";; Time-stamp: <2014-03-07 15:13:15 kmodi>\n\n;; magit\n;; Source: https:\/\/github.com\/magit\/magit\n\n(require 'magit)\n\n(setq magit-completing-read-function 'magit-ido-completing-read\n magit-auto-revert-mode nil\n magit-repo-dirs '( \"~\/.emacs.d\"\n )\n )\n\n\n(setq setup-magit-loaded t)\n(provide 'setup-magit)\n","new_contents":";; Time-stamp: <2014-03-09 00:53:22 kmodi>\n\n;; magit\n;; Source: https:\/\/github.com\/magit\/magit\n\n(require 'magit)\n\n(setq magit-completing-read-function 'magit-ido-completing-read\n magit-auto-revert-mode nil\n magit-repo-dirs '( \"~\/.emacs.d\"\n )\n )\n\n(magit-auto-revert-mode -1) ;; Disable magit auto revert\n\n(setq setup-magit-loaded t)\n(provide 'setup-magit)\n","subject":"Disable magit auto revert mode.","message":"Disable magit auto revert mode.\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"9a9bcb04edbcd5c2265b246b987fdb7a869c813d","old_file":"modes\/js-conf.el","new_file":"modes\/js-conf.el","old_contents":";;; js-conf.el -- Configuration options for js-mode (JavaScript).\n(eval-when-compile (require 'js))\n(setq js-indent-level 2 js-flat-functions t)\n","new_contents":";;; js-conf.el -- Configuration options for js-mode (JavaScript).\n(eval-when-compile (require 'js))\n\n;; JavaScript mode settings\n(setq js-indent-level 2\n js-flat-functions t)\n\n(defvar pjones:js-keywords\n '((\"\\\\(function *\\\\)(\"\n (0 (progn (compose-region (match-beginning 1)\n (match-end 1) \"\\u0192\") nil))))\n \"Extra keywords to add to JavaScript buffers.\nThe Unicode anonymous function code was stolen from\nhttps:\/\/github.com\/technomancy\/emacs-starter-kit\")\n\n(defun pjones:js-add-extra-keywords ()\n \"Add some extra keywords to JavaScript buffers.\"\n (interactive)\n (font-lock-add-keywords 'js-mode pjones:js-keywords)\n (font-lock-fontify-buffer))\n\n(defun pjones:js-rm-extra-keywords ()\n \"Remove some extra keywords from JavaScript buffers.\"\n (interactive)\n (let ((modified (buffer-modified-p)))\n (font-lock-remove-keywords 'js-mode pjones:js-keywords)\n (remove-text-properties (point-min) (point-max) '(composition nil))\n (set-buffer-modified-p modified)))\n\n(defun pjones:js-mode-hook ()\n \"Configure JS mode and key bindings.\"\n (local-set-key (kbd \"C-c C-k\") 'pjones:js-rm-extra-keywords)\n (local-set-key (kbd \"C-c C-S-k\") 'pjones:js-add-extra-keywords))\n(add-hook 'js-mode-hook 'pjones:js-mode-hook)\n\n;; Set up the cool extra keywords right away!\n(pjones:js-add-extra-keywords)\n","subject":"Add some extra keywords to JavaScript buffers with functions to toggle them","message":"Add some extra keywords to JavaScript buffers with functions to toggle them\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"dd4f93429042447252452f1fc3f8b2e2bd2d3814","old_file":"modules\/my-git.el","new_file":"modules\/my-git.el","old_contents":";;; my-git.el --- Git settings -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(use-package magit\n :config\n (setq vc-handled-backends (delq 'Git vc-handled-backends))\n :bind\n (\"C-x g\" . magit-status))\n\n(provide 'my-git)\n\n;;; my-git.el ends here\n\n","new_contents":";;; my-git.el --- Git settings -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(use-package magit\n :config\n (setq vc-handled-backends (delq 'Git vc-handled-backends))\n :bind\n (\"C-x g\" . magit-status))\n\n;; full screen magit-status\n;; from http:\/\/whattheemacsd.com\/setup-magit.el-01.html\n\n(defadvice magit-status (around magit-fullscreen activate)\n \"Open magit status as a fullscreen buffer.\"\n (window-configuration-to-register :magit-fullscreen)\n ad-do-it\n (delete-other-windows))\n\n(defun magit-quit-session ()\n \"Restore the previous window configuration and kill the magit buffer.\"\n (interactive)\n (kill-buffer)\n (jump-to-register :magit-fullscreen))\n\n(define-key magit-status-mode-map (kbd \"q\") 'magit-quit-session)\n\n(provide 'my-git)\n\n;;; my-git.el ends here\n\n","subject":"Make magit buffer fullscreen to minimise window-jumping","message":"Make magit buffer fullscreen to minimise window-jumping\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"timanin\/emacs.d"} {"commit":"4407667dfdc40dc8ff4cc4ce50fbdad7534a7a22","old_file":"modes\/w3m-conf.el","new_file":"modes\/w3m-conf.el","old_contents":";;; w3m-conf.el --- Settings for w3m.\n;;\n;;; Commentary:\n;;\n;;; Code:\n(require 'w3m)\n(require 'evil-leader)\n\n(custom-set-variables\n '(w3m-use-tab nil)\n '(w3m-pop-up-windows nil)\n '(w3m-pop-up-frames nil)\n '(w3m-display-mode 'plain))\n\n(evil-leader\/set-key-for-mode 'w3m-mode\n \"DEL r\" #'pjones:w3m-rename-buffer)\n\n(defun pjones:w3m-rename-buffer ()\n \"Rename the current `w3m' buffer to include its title.\"\n (interactive)\n (let ((name (concat \"*w3m: \" w3m-current-title \"*\")))\n (rename-buffer name t)))\n\n;;; w3m-conf.el ends here\n","new_contents":";;; w3m-conf.el --- Settings for w3m.\n;;\n;;; Commentary:\n;;\n;;; Code:\n(require 'w3m)\n(require 'evil-leader)\n\n(custom-set-variables\n '(w3m-use-tab nil)\n '(w3m-pop-up-windows nil)\n '(w3m-pop-up-frames nil)\n '(w3m-display-mode 'plain)\n '(w3m-use-header-line t)\n '(w3m-use-header-line-title t)\n '(w3m-make-new-session t))\n\n(evil-leader\/set-key-for-mode 'w3m-mode\n \"DEL r\" #'pjones:w3m-rename-buffer)\n\n(defun pjones:w3m-rename-buffer ()\n \"Rename the current `w3m' buffer to include its title.\"\n (interactive)\n (let ((name (concat \"*w3m: \" w3m-current-title \"*\")))\n (rename-buffer name t)))\n\n;;; w3m-conf.el ends here\n","subject":"Use the header line to show the page title","message":"w3m: Use the header line to show the page title\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"b4862630705095bc53a9e573aad9a561e4290ef1","old_file":"init-ibuffer.el","new_file":"init-ibuffer.el","old_contents":"(require 'ibuffer)\n\n(require 'ibuffer-vc)\n\n(defun ibuffer-set-up-preferred-filters ()\n (ibuffer-vc-set-filter-groups-by-vc-root)\n (ibuffer-do-sort-by-filename\/process))\n(add-hook 'ibuffer-mode-hook 'ibuffer-set-up-preferred-filters)\n\n\n\n\n;; Use human readable Size column instead of original one\n(define-ibuffer-column size-h\n (:name \"Size\" :inline t)\n (cond\n ((> (buffer-size) 1000000) (format \"%7.1fM\" (\/ (buffer-size) 1000000.0)))\n ((> (buffer-size) 1000) (format \"%7.1fk\" (\/ (buffer-size) 1000.0)))\n (t (format \"%8d\" (buffer-size)))))\n\n\n;; Modify the default ibuffer-formats\n(setq ibuffer-formats\n '((mark modified read-only vc-status-mini \" \"\n (name 18 18 :left :elide)\n \" \"\n (size-h 9 -1 :right)\n \" \"\n (mode 16 16 :left :elide)\n \" \"\n (vc-status 16 16 :left)\n \" \"\n filename-and-process)))\n\n(setq ibuffer-filter-group-name-face 'font-lock-doc-face)\n\n(global-set-key (kbd \"C-x C-b\") 'ibuffer)\n\n(provide 'init-ibuffer)\n","new_contents":"(require 'ibuffer)\n\n(require 'ibuffer-vc)\n\n(defun ibuffer-set-up-preferred-filters ()\n (ibuffer-vc-set-filter-groups-by-vc-root)\n (ibuffer-do-sort-by-filename\/process))\n\n(add-hook 'ibuffer-hook 'ibuffer-set-up-preferred-filters)\n\n\n\n\n;; Use human readable Size column instead of original one\n(define-ibuffer-column size-h\n (:name \"Size\" :inline t)\n (cond\n ((> (buffer-size) 1000000) (format \"%7.1fM\" (\/ (buffer-size) 1000000.0)))\n ((> (buffer-size) 1000) (format \"%7.1fk\" (\/ (buffer-size) 1000.0)))\n (t (format \"%8d\" (buffer-size)))))\n\n\n;; Modify the default ibuffer-formats\n(setq ibuffer-formats\n '((mark modified read-only vc-status-mini \" \"\n (name 18 18 :left :elide)\n \" \"\n (size-h 9 -1 :right)\n \" \"\n (mode 16 16 :left :elide)\n \" \"\n (vc-status 16 16 :left)\n \" \"\n filename-and-process)))\n\n(setq ibuffer-filter-group-name-face 'font-lock-doc-face)\n\n(global-set-key (kbd \"C-x C-b\") 'ibuffer)\n\n(provide 'init-ibuffer)\n","subject":"Use ibuffer-hook instead of ibuffer-mode-hook","message":"Use ibuffer-hook instead of ibuffer-mode-hook\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"farzadbekran\/emacs.d,jthetzel\/emacs.d,zuoshifan\/emacs.d,zhaotai\/.emacs.d,cyjia\/emacs.d,farzadbekran\/emacs.d,mpwang\/emacs.d,gsmlg\/emacs.d,emuio\/emacs.d,baohaojun\/emacs.d,haodaivshen\/emacs.d,me020523\/emacs.d,hophacker\/emacs.d,braveoyster\/emacs.d,danfengcao\/emacs.d,zhuoyikang\/emacs.d,blueabysm\/emacs.d,LKI\/emacs.d,jkaessens\/emacs.d,svenyurgensson\/emacs.d,kindoblue\/emacs.d,roxolan\/emacs.d,mmqmzk\/emacs.d,caoyuanqi\/emacs.d,ilove0518\/emacs.d,lust4life\/emacs.d,dongdonghu\/.emacs.d,blueseason\/emacs.d,exclamaforte\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,boblannon\/emacs.d,wenpincui\/emacs.d,dcorking\/emacs.d,sgarciac\/emacs.d,zuoshifan\/emacs.d,benkha\/emacs.d,YangXin\/emacs.d,jhpx\/emacs.d,Jadecity\/PurcellEmacs.d,DarkThrone\/emacs.d,cjqw\/emacs.d,krzysz00\/emacs.d,dhanunjaya\/emacs.d,46do14\/emacs.d,zuoshifan\/emacs.d,purcell\/emacs.d,zuoshifan\/emacs.d,qinshulei\/emacs.d,kongfy\/emacs.d,Shanicky\/emacs.d,farzadbekran\/emacs.d,Werewolflsp\/emacs.d,zenith-john\/emacs.d,zuoshifan\/emacs.d,qianwan\/emacs.d,zuoshifan\/emacs.d,ruiyang\/emacs.d,hkcqr\/emacs.d,carlosliu\/emacs.d,YangXin\/emacs.d,jachinpy\/emacs.d,pairyo\/emacs.d,jachinpy\/emacs.d,whizzzkid\/emacs.d,fengxl\/emacs.d,Enzo-Liu\/emacs.d,Guoozz\/emacs.d,farzadbekran\/emacs.d,Togal\/emacs.d,scorpionis\/emacs.d,zuoshifan\/emacs.d,lujianmei\/emacs.d,ernest-dzf\/emacs.d,bibaijin\/emacs.d,lromang\/emacs.d,renatoriccio\/emacs.d,modkzs\/emcs.d,atreeyang\/emacs.d,ruiyang\/emacs.d,wegatron\/emacs.d,alant\/emacs.d,shafayetkhan\/emacs.d,LittleLmp\/emacs.d,arthurl\/emacs.d,farzadbekran\/emacs.d"} {"commit":"fb4f5efb0166b96a640295506c8f42c1fededb2a","old_file":"modules\/lang\/nim\/config.el","new_file":"modules\/lang\/nim\/config.el","old_contents":";;; lang\/nim\/config.el -*- lexical-binding: t; -*-\n\n(after! nim-mode\n (add-hook! 'nim-mode-hook\n (defun +nim-init-nimsuggest-mode-h ()\n \"Conditionally load `nimsuggest-mode', instead of clumsily erroring out if\nnimsuggest isn't installed.\"\n (unless (stringp nimsuggest-path)\n (setq nimsuggest-path (executable-find \"nimsuggest\")))\n (when (and nimsuggest-path (file-executable-p nimsuggest-path))\n (nimsuggest-mode))))\n\n (when IS-WINDOWS\n ;; TODO File PR\/report upstream (https:\/\/github.com\/nim-lang\/nim-mode)\n (defadvice! +nim--suggest-get-temp-file-name-a (path)\n \"Removes invalid characters from the temp file path, including the unicode\ncharacter that colon is replaced with, which is known to cause issues on\nwindows.\"\n :filter-return #'nimsuggest--get-temp-file-name\n (replace-regexp-in-string \"[꞉* |<>\\\"?*]\" \"\" path)))\n\n (map! :localleader\n :map nim-mode-map\n \"b\" #'nim-compile))\n\n\n(use-package! flycheck-nim\n :when (featurep! :checkers syntax)\n :after nim-mode)\n\n","new_contents":";;; lang\/nim\/config.el -*- lexical-binding: t; -*-\n\n(after! nim-mode\n :init\n (add-hook! 'nim-mode-hook\n (defun +nim-init-nimsuggest-mode-h ()\n \"Conditionally load `nimsuggest-mode', instead of clumsily erroring out if\nnimsuggest isn't installed.\"\n (unless (stringp nimsuggest-path)\n (setq nimsuggest-path (executable-find \"nimsuggest\")))\n (when (and nimsuggest-path (file-executable-p nimsuggest-path))\n (nimsuggest-mode))))\n\n (when IS-WINDOWS\n ;; TODO File PR\/report upstream (https:\/\/github.com\/nim-lang\/nim-mode)\n (defadvice! +nim--suggest-get-temp-file-name-a (path)\n \"Removes invalid characters from the temp file path, including the unicode\ncharacter that colon is replaced with, which is known to cause issues on\nwindows.\"\n :filter-return #'nimsuggest--get-temp-file-name\n (replace-regexp-in-string \"[꞉* |<>\\\"?*]\" \"\" path)))\n\n :config\n (set-lookup-handlers! '(nim-mode nimsuggest-mode)\n :definition #'+nimsuggest-find-definition\n :documentation #'nimsuggest-show-doc)\n\n (map! :localleader\n :map nim-mode-map\n \"b\" #'nim-compile\n \"h\" #'nimsuggest-show-doc\n \"d\" #'nimsuggest-find-definition))\n\n\n(use-package! flycheck-nim\n :when (featurep! :checkers syntax)\n :after nim-mode)\n\n","subject":"Add definition and documentation keybindings","message":"Add definition and documentation keybindings\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d"} {"commit":"9589f6e37294f7d95be8f7f85793bbe8f0eab649","old_file":"modules\/ui\/hydra\/config.el","new_file":"modules\/ui\/hydra\/config.el","old_contents":";;; ui\/hydra\/config.el -*- lexical-binding: t; -*-\n\n;;;###package hydra\n(setq lv-use-seperator t)\n","new_contents":";;; ui\/hydra\/config.el -*- lexical-binding: t; -*-\n\n(use-package! hydra-examples\n :commands (hydra-move-splitter-up\n hydra-move-splitter-down\n hydra-move-splitter-right\n hydra-move-splitter-left))\n\n;;;###package hydra\n(setq lv-use-seperator t)\n","subject":"Load hydra examples without using example hydras.","message":"Load hydra examples without using example hydras.\n\n`+hydra\/window-nav` uses functions from `hydra-examples.el` but the file\nis never loaded. Adding this does not actually define any hydras (this\nwould require `hydra-examples-verbatim` to be `t`), it just load the\nutility functions to make the hydras defined in doom work.\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"a5a56b1758f4094c6003948f5d0cd326986dc1e9","old_file":"settings\/setup-magit.el","new_file":"settings\/setup-magit.el","old_contents":";; full screen magit-status\n\n(defun magit-status-fullscreen (prefix)\n (interactive \"P\")\n (magit-status)\n (unless prefix\n (delete-other-windows)))\n\n;; don't prompt me\n\n(set-default 'magit-unstage-all-confirm nil)\n(set-default 'magit-stage-all-confirm nil)\n(set-default 'magit-push-always-verify nil)\n(set-default 'magit-revert-buffers 'silent)\n\n;; full screen vc-annotate\n\n(defun vc-annotate-quit ()\n \"Restores the previous window configuration and kills the vc-annotate buffer\"\n (interactive)\n (kill-buffer)\n (jump-to-register :vc-annotate-fullscreen))\n\n(eval-after-load \"vc-annotate\"\n '(progn\n (defadvice vc-annotate (around fullscreen activate)\n (window-configuration-to-register :vc-annotate-fullscreen)\n ad-do-it\n (delete-other-windows))\n\n (define-key vc-annotate-mode-map (kbd \"q\") 'vc-annotate-quit)))\n\n(provide 'setup-magit)\n","new_contents":";; full screen magit-status\n\n(defun magit-status-fullscreen (prefix)\n (interactive \"P\")\n (magit-status)\n (unless prefix\n (delete-other-windows)))\n\n;; don't prompt me\n\n(set-default 'magit-unstage-all-confirm nil)\n(set-default 'magit-stage-all-confirm nil)\n(set-default 'magit-push-always-verify nil)\n(set-default 'magit-revert-buffers 'silent)\n\n;; move cursor into position when entering commit message\n\n(defun my\/magit-cursor-fix ()\n (beginning-of-buffer)\n (when (looking-at \"#\")\n (forward-line 2)))\n\n(add-hook 'git-commit-mode-hook 'my\/magit-cursor-fix)\n\n;; full screen vc-annotate\n\n(defun vc-annotate-quit ()\n \"Restores the previous window configuration and kills the vc-annotate buffer\"\n (interactive)\n (kill-buffer)\n (jump-to-register :vc-annotate-fullscreen))\n\n(eval-after-load \"vc-annotate\"\n '(progn\n (defadvice vc-annotate (around fullscreen activate)\n (window-configuration-to-register :vc-annotate-fullscreen)\n ad-do-it\n (delete-other-windows))\n\n (define-key vc-annotate-mode-map (kbd \"q\") 'vc-annotate-quit)))\n\n(provide 'setup-magit)\n","subject":"Move cursor into position when entering commit msg","message":"Move cursor into position when entering commit msg\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"26f8a7551d4c5fae4ea602f3ba286c84be8eb7f4","old_file":"layers\/my-python\/packages.el","new_file":"layers\/my-python\/packages.el","old_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-python-packages '(python treemacs))\n\n(defun my-python\/post-init-python ()\n (with-eval-after-load 'python\n (modify-syntax-entry ?_ \"w\" python-mode-syntax-table)\n (autoload 'pyvenv-track-virtualenv \"pyvenv\")\n (add-hook 'python-mode-local-vars-hook #'pyvenv-track-virtualenv)))\n\n(defun my-python\/post-init-treemacs ()\n (with-eval-after-load 'treemacs\n (add-to-list 'treemacs-ignored-file-predicates\n #'my-python\/\/treemacs-ignored-file-predicates)))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-python-packages '(python treemacs))\n\n;; TODO: this is global, can this be made buffer-local?\n;; maybe use `pyvenv-mode' vs `pyvenv-tracking-mode'?\n(defun my-python\/\/activate-virtualenv()\n (pyvenv-track-virtualenv)\n (when pyvenv-virtual-env\n (setq lsp-clients-python-library-directories (list \"\/usr\/\" pyvenv-virtual-env))))\n\n(defun my-python\/post-init-python ()\n (with-eval-after-load 'python\n (modify-syntax-entry ?_ \"w\" python-mode-syntax-table)\n (autoload 'pyvenv-track-virtualenv \"pyvenv\")\n (add-hook 'python-mode-local-vars-hook #'my-python\/\/activate-virtualenv)))\n\n(defun my-python\/post-init-treemacs ()\n (with-eval-after-load 'treemacs\n (add-to-list 'treemacs-ignored-file-predicates\n #'my-python\/\/treemacs-ignored-file-predicates)))\n","subject":"Make \"go to definition in library\" work with lsp in python projects","message":"Make \"go to definition in library\" work with lsp in python projects\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"26a0e0d3272e812df9a4eded5aa5438aa878bc93","old_file":"emacs.d\/tj-go.el","new_file":"emacs.d\/tj-go.el","old_contents":"(require 'go-mode)\n\n(setq gofmt-command \"goimports\")\n(add-to-list 'load-path \"\/home\/you\/goroot\/misc\/emacs\/\")\n(add-hook 'before-save-hook 'gofmt-before-save)\n\n(provide 'tj-go)\n","new_contents":"(require 'go-mode)\n\n(setq gofmt-command \"goimports\")\n(add-to-list 'load-path \"\/home\/you\/goroot\/misc\/emacs\/\")\n(add-hook 'before-save-hook 'gofmt-before-save)\n\n(defun go-test ()\n \"Runs tests for package in current buffer\"\n (interactive)\n (compile (concat \"ginkgo \" (file-name-directory (buffer-file-name)))))\n\n(provide 'tj-go)\n","subject":"Add a function to run go tests","message":"Add a function to run go tests\n","lang":"Emacs Lisp","license":"mit","repos":"tjarratt\/dotfiles,tjarratt\/dotfiles"} {"commit":"c794564d951b92f300b3b14363480af0c91d7603","old_file":"setup-files\/setup-python.el","new_file":"setup-files\/setup-python.el","old_contents":";; Time-stamp: <2017-06-07 14:24:47 kmodi>\n\n;; Python\n\n;; Emacs built-in `python' mode\n(use-package python\n :mode ((\"\\\\.py\\\\'\" . python-mode))\n :bind (:map python-mode-map\n (\"\" . python-shell-send-buffer))\n :config\n (progn\n (defvar modi\/python-use-ipython t\n \"When non-nil, use Ipython as the python interpreter instead of python3.\")\n\n ;; Don't warn if guessing the indention fails, just set it to the value\n ;; of `python-indent-offset'.\n (setq python-indent-guess-indent-offset-verbose nil)\n\n (if modi\/python-use-ipython\n (progn\n (setq python-shell-buffer-name \"Ipython\")\n (setq python-shell-interpreter \"ipython\")\n ;; https:\/\/emacs.stackexchange.com\/q\/24453\/115\n ;; https:\/\/debbugs.gnu.org\/cgi\/bugreport.cgi?bug=25306\n (setq python-shell-interpreter-args \"--simple-prompt -i\"))\n (setq python-shell-interpreter \"python3\")))) ;Default to python 3.x\n\n\n(provide 'setup-python)\n\n;; | C-c C-p | Start the python shell |\n;; | C-c C-c | Send current buffer to python |\n","new_contents":";; Time-stamp: <2017-06-08 08:24:50 kmodi>\n\n;; Python\n\n;; Emacs built-in `python' mode\n(use-package python\n :mode ((\"\\\\.py\\\\'\" . python-mode))\n :bind (:map python-mode-map\n (\"\" . python-shell-send-buffer))\n :config\n (progn\n (defvar modi\/python-use-ipython t\n \"When non-nil, use Ipython as the python interpreter instead of python3.\")\n\n ;; Don't warn if guessing the indention fails, just set it to the value\n ;; of `python-indent-offset'.\n (setq python-indent-guess-indent-offset-verbose nil)\n\n (if (and (executable-find \"ipython\")\n modi\/python-use-ipython)\n (progn\n (setq python-shell-buffer-name \"Ipython\")\n (setq python-shell-interpreter \"ipython\")\n ;; https:\/\/emacs.stackexchange.com\/q\/24453\/115\n ;; https:\/\/debbugs.gnu.org\/cgi\/bugreport.cgi?bug=25306\n (setq python-shell-interpreter-args \"--simple-prompt -i\"))\n (setq python-shell-interpreter \"python3\")))) ;Default to python 3.x\n\n\n(provide 'setup-python)\n\n;; | C-c C-p | Start the python shell |\n;; | C-c C-c | Send current buffer to python |\n","subject":"Check if ipython executable is available","message":"Check if ipython executable is available\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"30567ea0f715b8706a86992ce2bede1723a09372","old_file":"modules\/lang\/web\/packages.el","new_file":"modules\/lang\/web\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; lang\/web\/packages.el\n\n;; requires js-beautify stylelint stylelint-scss\n\n(package! rainbow-mode)\n(package! web-beautify)\n(when (featurep! :completion ivy)\n (package! counsel-css :recipe (:fetcher github :repo \"hlissner\/emacs-counsel-css\")))\n\n;; +html.el\n(package! company-web)\n(package! emmet-mode)\n(package! haml-mode)\n(package! pug-mode)\n(package! web-mode)\n\n;; +css.el\n(package! less-css-mode)\n(package! sass-mode)\n(package! stylus-mode)\n\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; lang\/web\/packages.el\n\n;; requires js-beautify stylelint stylelint-scss\n\n(package! rainbow-mode)\n(package! web-beautify)\n(when (featurep! :completion ivy)\n (package! counsel-css :recipe (:fetcher github :repo \"hlissner\/emacs-counsel-css\")))\n\n;; +html.el\n(package! emmet-mode)\n(package! haml-mode)\n(package! pug-mode)\n(package! web-mode)\n(when (featurep! :completion company)\n (package! company-web))\n\n;; +css.el\n(package! less-css-mode)\n(package! sass-mode)\n(package! stylus-mode)\n\n","subject":"Install company-web only if company is active","message":"Install company-web only if company is active\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,aminb\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,aminb\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,aminb\/.emacs.d,hlissner\/.emacs.d"} {"commit":"0ec1af4c96af97e094d6e6f9881584618710b903","old_file":"emacs.d\/pmade-server.el","new_file":"emacs.d\/pmade-server.el","old_contents":"(defun pmade-server-start ()\n (when window-system\n (add-hook 'server-visit-hook 'save-place-find-file-hook)\n (server-start)))\n\n(setq server-use-tcp t\n server-host (if (string= \"hawkins.pmade.com\" system-name)\n \"10.0.1.10\" system-name))\n\n(add-hook 'after-init-hook 'pmade-server-start)\n","new_contents":"(defun pmade-server-start ()\n (when window-system\n (add-hook 'server-visit-hook 'save-place-find-file-hook)\n (server-start)))\n\n(setq server-use-tcp t\n server-host (if (string= \"hawkins\" system-name)\n \"10.0.1.10\" system-name))\n\n(add-hook 'after-init-hook 'pmade-server-start)\n","subject":"Make up your mind emacs, what does system-name return?","message":"Make up your mind emacs, what does system-name return?\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"37ba24be9dc8408b87cc4ee1c7ada2ec817cb258","old_file":"init-package\/init-popwin.el","new_file":"init-package\/init-popwin.el","old_contents":"(use-package popwin\n :init\n (progn\n (setq display-buffer-function 'popwin:display-buffer)\n ;; use popwin with helm\n (push '(\"^\\*helm.+\\*$\" :regexp t) popwin:special-display-config)\n (push '(\"^\\*helm-.+\\*$\" :regexp t) popwin:special-display-config)))\n","new_contents":"(use-package popwin\n :init\n (progn\n (popwin-mode 1)\n (push '(\"*grep*\" :dedicated t :position bottom :stick t :noselect t) popwin:special-display-config)\n ;; use popwin with helm\n (push '(\"^\\*helm.+\\*$\" :regexp t :position bottom) popwin:special-display-config)\n (push '(\"^\\*helm-.+\\*$\" :regexp t :position bottom) popwin:special-display-config)))\n","subject":"Add popwin rule for *grep*","message":"Add popwin rule for *grep*\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"12355dd92ff7e0b9aa2753a34fb575ae9ca18c7c","old_file":"emacs.d\/tj-go.el","new_file":"emacs.d\/tj-go.el","old_contents":"(require 'go-mode)\n\n(setq gofmt-command \"goimports\")\n(add-to-list 'load-path \"\/home\/you\/goroot\/misc\/emacs\/\")\n(add-hook 'before-save-hook 'gofmt-before-save)\n\n(defun go-test ()\n \"Runs tests for package in current buffer\"\n (interactive)\n (compile (concat \"ginkgo \" (file-name-directory (buffer-file-name)))))\n\n(provide 'tj-go)\n","new_contents":"(require 'go-mode)\n\n(setq gofmt-command \"goimports\")\n(add-to-list 'load-path \"\/home\/you\/goroot\/misc\/emacs\/\")\n(add-hook 'before-save-hook 'gofmt-before-save)\n\n(defun go-test ()\n \"Runs tests for package in current buffer\"\n (interactive)\n (compile (concat \"ginkgo \" (file-name-directory (buffer-file-name)))))\n\n(define-key tj-map (kbd \"r t\") 'go-test)\n\n(provide 'tj-go)\n","subject":"Add key binding for 'go test'","message":"Add key binding for 'go test'\n","lang":"Emacs Lisp","license":"mit","repos":"tjarratt\/dotfiles,tjarratt\/dotfiles"} {"commit":"212718d6191b4a43c710a7979e566dbbb4123585","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"((nil . ((indent-tabs-mode . nil)\n (tab-width . 8)\n (c-basic-offset . 4)))\n)\n","new_contents":"((nil\n (indent-tabs-mode . nil)\n (tab-width . 8)\n (c-basic-offset . 4)\n (c-file-style . \"stroustrup\")\n (eval . (progn\n\t (c-set-offset 'innamespace '0)\n\t (c-set-offset 'inline-open '0)))\n )\n )\n","subject":"Improve the indention in emacs just a bit.","message":"Improve the indention in emacs just a bit.\n\nBy default emacs offsets both the inline and in-namespaces, lets\nfix that.\n","lang":"Emacs Lisp","license":"mit","repos":"schulmar\/apitrace,joshua5201\/apitrace,tuanthng\/apitrace,tuanthng\/apitrace,PeterLValve\/apitrace,apitrace\/apitrace,surround-io\/apitrace,PeterLValve\/apitrace,PeterLValve\/apitrace,surround-io\/apitrace,schulmar\/apitrace,swq0553\/apitrace,trtt\/apitrace,trtt\/apitrace,joshua5201\/apitrace,apitrace\/apitrace,surround-io\/apitrace,EoD\/apitrace,EoD\/apitrace,trtt\/apitrace,joshua5201\/apitrace,trtt\/apitrace,tuanthng\/apitrace,schulmar\/apitrace,schulmar\/apitrace,swq0553\/apitrace,swq0553\/apitrace,apitrace\/apitrace,EoD\/apitrace,tuanthng\/apitrace,surround-io\/apitrace,joshua5201\/apitrace,swq0553\/apitrace,PeterLValve\/apitrace,tuanthng\/apitrace,trtt\/apitrace,surround-io\/apitrace,EoD\/apitrace,joshua5201\/apitrace,apitrace\/apitrace,schulmar\/apitrace,EoD\/apitrace,swq0553\/apitrace"} {"commit":"9c085c0553450084a96f7c4ccf83c90d63331ca8","old_file":"modules\/lang\/haskell\/+lsp.el","new_file":"modules\/lang\/haskell\/+lsp.el","old_contents":";;; lang\/haskell\/+lsp.el -*- lexical-binding: t; -*-\n\n(def-package! lsp-haskell\n :after haskell-mode\n :init (add-hook 'haskell-mode-hook #'+lsp|init)\n :config\n ;; Does some strange indentation if it pastes in the snippet\n (setq yas-indent-line 'fixed))\n","new_contents":";;; lang\/haskell\/+lsp.el -*- lexical-binding: t; -*-\n\n(def-package! lsp-haskell\n :after haskell-mode\n :init (add-hook 'haskell-mode-hook #'+lsp|init)\n :config\n ;; Does some strange indentation if it pastes in the snippet\n (setq-hook! 'haskell-mode-hook yas-indent-line 'fixed))\n","subject":"Set yas-indent-line only in haskell-mode","message":"Set yas-indent-line only in haskell-mode","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d"} {"commit":"d076fe6fead38c72a6e0d5b897aba1c82495def6","old_file":"nixpkgs\/emacs\/site-lisp\/init-avy.el","new_file":"nixpkgs\/emacs\/site-lisp\/init-avy.el","old_contents":";;; init-avy.el --- init file for avy\n\n;;; Commentary:\n\n;; Use `C-:` to jump to any position by entering 1 character and\n;; use `C-'` to jump to any position by entering 2 characters.\n\n;;; Code:\n\n(use-package avy\n :bind\n (\"C-\\\"\" . avy-goto-char)\n (\"C-'\" . avy-goto-char-2)\n (\"M-g f\" . avy-goto-line))\n\n(provide 'init-avy)\n\n;;; init-avy.el ends here\n","new_contents":";;; init-avy.el --- init file for avy\n\n;;; Commentary:\n\n;; Use `C-c SPC` to jump to any position by entering 1 character and\n;; use `C-c C-SPC` to jump to any position by entering 2 characters.\n\n;;; Code:\n\n(use-package avy\n :bind\n (\"C-c SPC\" . avy-goto-char)\n (\"C-c C-SPC\" . avy-goto-char-2)\n (\"M-g f\" . avy-goto-line))\n\n(provide 'init-avy)\n\n;;; init-avy.el ends here\n","subject":"Update key bindings for avo","message":"Update key bindings for avo\n","lang":"Emacs Lisp","license":"mit","repos":"hongchangwu\/dotfiles,hongchangwu\/dotfiles"} {"commit":"5f698d4030137c8e8b85333529b3ea9818a56426","old_file":"home\/.emacs.d\/lisp\/init-vc.el","new_file":"home\/.emacs.d\/lisp\/init-vc.el","old_contents":";;; init-vc.el -- init version control setup\n\n;;; Commentary:\n;;; git setup\n\n;;; Code:\n(require 'use-package)\n\n(use-package git-timemachine\n :commands (git-timemachine))\n(use-package gitattributes-mode)\n(use-package gitconfig-mode)\n(use-package gitignore-mode)\n(use-package magit\n :bind (\"C-x g\" . magit-status))\n\n(provide 'init-vc)\n;;; init-vc.el ends here\n","new_contents":";;; init-vc.el -- init version control setup\n\n;;; Commentary:\n;;; git setup\n\n;;; Code:\n(require 'use-package)\n\n(use-package diff-hl\n :commands (diff-hl-dired-mode\n diff-hl-margin-mode\n diff-hl-amend-mode\n diff-hl-flydiff-mode)\n :config\n (set-face-attribute 'diff-hl-change nil\n :foreground \"blue3\"\n :background \"#5656ff\")\n (set-face-attribute 'diff-hl-delete nil\n :foreground \"red\"\n :background \"red\")\n (set-face-attribute 'diff-hl-insert nil\n :foreground \"#098d07\"\n :background \"#ddffdf\")\n (setq diff-hl-side 'right)\n :init\n (add-hook 'prog-mode-hook 'diff-hl-mode)\n (add-hook 'prog-mode-hook 'diff-hl-flydiff-mode)\n (add-hook 'dired-mode-hook 'diff-hl-dired-mode)\n (add-hook 'dired-mode-hook 'diff-hl-flydiff-mode)\n (add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh))\n\n(use-package git-timemachine\n :commands (git-timemachine))\n\n(use-package gitattributes-mode)\n\n(use-package gitconfig-mode)\n\n(use-package gitignore-mode)\n\n(use-package magit\n :bind (\"C-x g\" . magit-status))\n\n(provide 'init-vc)\n;;; init-vc.el ends here\n","subject":"Add diff-hl mode to Emacs","message":"Add diff-hl mode to Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"0dbca26dea39150e520893ef1bf48ae9b2c4a951","old_file":".emacs.d\/lib\/my-prog-config.el","new_file":".emacs.d\/lib\/my-prog-config.el","old_contents":"(use-package cider\n :ensure t)\n(use-package paredit\n :ensure t)\n\n(add-hook 'emacs-lisp-mode-hook 'paredit-mode)\n(add-hook 'clojure-mode-hook 'paredit-mode)\n(setq linum-format \"%d \")\n(add-hook 'prog-mode-hook 'linum-mode)\n\n(use-package helm\n :ensure t\n :bind ((\"C-c i\" . helm-imenu)\n (\"C-c C-i\" . helm-imenu)))\n\n(use-package helm-ag\n :ensure t\n :bind (\"C-c a\" . helm-ag))\n(use-package helm-projectile\n :ensure t\n :config\n (projectile-mode)\n (setq projectile-completion-system 'helm)\n (helm-projectile-on))\n","new_contents":"(use-package cider\n :ensure t)\n(use-package paredit\n :ensure t)\n\n(add-hook 'emacs-lisp-mode-hook 'paredit-mode)\n(add-hook 'clojure-mode-hook 'paredit-mode)\n(setq linum-format \"%d \")\n(add-hook 'prog-mode-hook 'linum-mode)\n\n(use-package helm\n :ensure t\n :bind ((\"C-c i\" . helm-imenu)\n (\"C-c C-i\" . helm-imenu)\n (\"M-x\" . helm-M-x)))\n\n(use-package helm-ag\n :ensure t\n :bind (\"C-c a\" . helm-ag))\n\n(use-package helm-projectile\n :ensure t\n :config\n (projectile-mode)\n (setq projectile-completion-system 'helm)\n (helm-projectile-on))\n","subject":"Use helm for M-x completion.","message":"Use helm for M-x completion.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"pjstadig\/dotfiles,pjstadig\/dotfiles"} {"commit":"050bfb72f24be13c8a84bed05f5b7c5d893077a0","old_file":"elisp\/setup-mail.el","new_file":"elisp\/setup-mail.el","old_contents":";;; setup-mail.el --- Mail conf file.\n;;; Commentary:\n;;; Code:\n\n(maybe-load-file \"~\/Dropbox\/elisp\/mail.el\")\n\n;; The following settings are ~\/elisp\/mail.el examples.\n;; (setq user-full-name \"John Doe.\"\n;; user-mail-address \"example@example.org\"\n;; smtpmail-smtp-server \"example.org\"\n;; smtpmail-smtp-service 587\n;; send-mail-function 'smtpmail-send-it)\n\n\n\n(provide 'setup-mail)\n;;; setup-mail.el ends here\n","new_contents":";;; setup-mail.el --- Mail conf file.\n;;; Commentary:\n;;; Code:\n\n(maybe-load-file \"~\/Dropbox\/elisp\/mail.el\")\n\n;; The following settings are ~\/elisp\/mail.el examples.\n;; (setq user-full-name \"John Doe.\"\n;; user-mail-address \"example@example.org\"\n;; smtpmail-smtp-server \"example.org\"\n;; smtpmail-smtp-service 587\n;; send-mail-function 'smtpmail-send-it)\n\n(require 'mu4e)\n\n;; default\n(setq mu4e-maildir (expand-file-name \"~\/Mail\"))\n\n(setq mu4e-drafts-folder \"\/[Gmail].Drafts\")\n(setq mu4e-sent-folder \"\/[Gmail].Sent Mail\")\n(setq mu4e-trash-folder \"\/[Gmail].Trash\")\n\n;; don't save message to Sent Messages, GMail\/IMAP will take care of this\n(setq mu4e-sent-messages-behavior 'delete)\n\n;; setup some handy shortcuts\n(setq mu4e-maildir-shortcuts\n '((\"\/INBOX\" . ?i)\n (\"\/[Gmail].Sent Mail\" . ?s)\n (\"\/[Gmail].Trash\" . ?t)))\n\n;; allow for updating mail using 'U' in the main view:\n;; (setq mu4e-get-mail-command \"offlineimap\")\n\n(setq message-citation-line-format \"On %D %I:%M %p, %N wrote:\"\n mail-from-style 'angles\n message-cite-style 'message-cite-style-gmail\n message-citation-line-function 'message-insert-formatted-citation-line)\n\n;; sending mail -- replace USERNAME with your gmail username\n;; also, make sure the gnutls command line utils are installed\n;; package 'gnutls-bin' in Debian\/Ubuntu, 'gnutls' in Archlinux.\n\n(require 'smtpmail)\n\n(setq message-send-mail-function 'smtpmail-send-it\n starttls-use-gnutls t\n smtpmail-starttls-credentials\n '((\"smtp.gmail.com\" 587 nil nil))\n smtpmail-auth-credentials\n (expand-file-name \"~\/.authinfo.gpg\")\n smtpmail-default-smtp-server \"smtp.gmail.com\"\n smtpmail-smtp-server \"smtp.gmail.com\"\n smtpmail-smtp-service 587\n smtpmail-debug-info t)\n\n(provide 'setup-mail)\n;;; setup-mail.el ends here\n","subject":"Drop notmuch in favor of mu4e","message":"Drop notmuch in favor of mu4e\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"d04982b4f27677bc15ae6b82c32f43e7c66fd444","old_file":"emacs\/.emacs.d\/lisp\/ds-sql.el","new_file":"emacs\/.emacs.d\/lisp\/ds-sql.el","old_contents":"\n(require 'use-package)\n\n(use-package sqlup-mode\n :ensure t\n :config\n (add-hook 'sql-mode-hook #'sqlup-mode))\n","new_contents":"\n(require 'use-package)\n\n(use-package sqlup-mode\n :ensure t\n :config\n (add-hook 'sql-mode-hook #'sqlup-mode t))\n","subject":"Fix sqlup mode not working on startup","message":"Fix sqlup mode not working on startup\n","lang":"Emacs Lisp","license":"cc0-1.0","repos":"davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles"} {"commit":"ee840f4a060b0fbb2430f6d0e7b23666148ae566","old_file":"init-python-mode.el","new_file":"init-python-mode.el","old_contents":"\n\n(autoload 'doctest-mode \"doctest-mode\" \"Python doctest editing mode.\" t)\n\n(setq auto-mode-alist\n (append '((\"SConstruct\\\\'\" . python-mode)\n\t\t(\"SConscript\\\\'\" . python-mode))\n auto-mode-alist))\n\n\n;;----------------------------------------------------------------------------\n;; On-the-fly syntax checking via flymake\n;;----------------------------------------------------------------------------\n(require-package 'flymake-python-pyflakes)\n(add-hook 'python-mode-hook 'flymake-python-pyflakes-load)\n\n\n(provide 'init-python-mode)\n","new_contents":"(setq auto-mode-alist\n (append '((\"SConstruct\\\\'\" . python-mode)\n\t\t(\"SConscript\\\\'\" . python-mode))\n auto-mode-alist))\n\n\n;;----------------------------------------------------------------------------\n;; On-the-fly syntax checking via flymake\n;;----------------------------------------------------------------------------\n(require-package 'flymake-python-pyflakes)\n(add-hook 'python-mode-hook 'flymake-python-pyflakes-load)\n\n\n(provide 'init-python-mode)\n","subject":"Remove defunct autoload for doctest-mode","message":"Remove defunct autoload for doctest-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"a4bf293bc2b8e51b348235bbed143cdff2e58c10","old_file":"contrib\/evil-snipe\/packages.el","new_file":"contrib\/evil-snipe\/packages.el","old_contents":"(defvar evil-snipe-packages '(evil-snipe)\n \"List of all packages to install and\/or initialize. Built-in packages\nwhich require an initialization must be listed explicitly in the list.\")\n\n(defvar evil-snipe-excluded-packages '()\n \"List of packages to exclude.\")\n\n(defun evil-snipe\/init-evil-snipe ()\n (require 'evil-snipe)\n (global-evil-snipe-mode t)\n\n (setq evil-snipe-scope 'whole-buffer\n evil-snipe-enable-highlight t\n evil-snipe-enable-incremental-highlight t\n evil-snipe-enable-half-cursor nil\n evil-snipe-show-prompt nil\n evil-snipe-smart-case t)\n\n (when evil-snipe-enable-alternate-f-and-t-behaviors\n (setq evil-snipe-repeat-scope 'whole-buffer\n evil-snipe-override-evil t)))\n","new_contents":"(defvar evil-snipe-packages '(evil-snipe)\n \"List of all packages to install and\/or initialize. Built-in packages\nwhich require an initialization must be listed explicitly in the list.\")\n\n(defvar evil-snipe-excluded-packages '()\n \"List of packages to exclude.\")\n\n(defun evil-snipe\/init-evil-snipe ()\n (use-package evil-snipe\n :diminish evil-snipe-mode\n :init\n (setq evil-snipe-scope 'whole-buffer\n evil-snipe-enable-highlight t\n evil-snipe-enable-incremental-highlight t\n evil-snipe-enable-half-cursor nil\n evil-snipe-show-prompt nil\n evil-snipe-smart-case t)\n (when evil-snipe-enable-alternate-f-and-t-behaviors\n (setq evil-snipe-repeat-scope 'whole-buffer\n evil-snipe-override-evil t))\n :config\n (global-evil-snipe-mode t)))\n","subject":"Refactor evil-snipe layer to use use-package.","message":"Refactor evil-snipe layer to use use-package.\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"aacf19f2c42e375c37c6006d3be6ef86e251c2d9","old_file":".emacs.d\/lisp\/pjs-stardica.el","new_file":".emacs.d\/lisp\/pjs-stardica.el","old_contents":";;; pjs-stardica.el --- Stardica code and config -*- lexical-binding: t; -*-\n;;; Commentary:\n;;; Code:\n(require 'pjs)\n(setq pjs-inhibit-clojure-align-on-save 't)\n(setq pjs-inhibit-cleanup-on-save 't)\n(setq default-directory \"~\/\")\n\n(require 'org)\n(require 'projectile)\n(setq projectile-project-root-files nil)\n\n(add-to-list 'org-agenda-files \"~\/clubhouse\/clubhouse.org\" t)\n\n(remove-hook 'prog-mode-hook 'whitespace-mode)\n\n(use-package clubhouse-backend\n :load-path \"~\/src\/backend\/elisp\"\n :if (file-exists-p \"~\/src\/backend\/elisp\")\n :hook (clojure-mode . clubhouse-backend-font-lock)\n :commands (clubhouse-backend-jack-in-dev-system)\n :bind ((\"C-c C-r\" . clubhouse-backend-goto-defresource)))\n\n(provide 'pjs-stardica)\n;;; pjs-stardica.el ends here\n","new_contents":";;; pjs-stardica.el --- Stardica code and config -*- lexical-binding: t; -*-\n;;; Commentary:\n;;; Code:\n(require 'pjs)\n(setq pjs-inhibit-clojure-align-on-save 't)\n(setq pjs-inhibit-cleanup-on-save 't)\n(setq default-directory \"~\/\")\n\n(require 'org)\n(require 'projectile)\n(setq projectile-project-root-files nil)\n\n(add-to-list 'org-agenda-files \"~\/clubhouse\/clubhouse.org\" t)\n\n(remove-hook 'prog-mode-hook 'whitespace-mode)\n\n(use-package clubhouse-backend\n :load-path \"~\/src\/backend\/elisp\"\n :if (file-exists-p \"~\/src\/backend\/elisp\")\n :init\n (unbind-key \"s-c\")\n :hook (clojure-mode . clubhouse-backend-font-lock)\n :bind ((\"s-c r\" . clubhouse-backend-goto-defresource)\n (\"s-c j\" . clubhouse-backend-jack-in-dev-system)\n (\"s-c a\" . clubhouse-backend-insert-co-authored-by)))\n\n(provide 'pjs-stardica)\n;;; pjs-stardica.el ends here\n","subject":"Add prefix for clubhouse backend commands.","message":"Add prefix for clubhouse backend commands.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"pjstadig\/dotfiles,pjstadig\/dotfiles"} {"commit":"678f971eca3938096d97b4680754d144814c4579","old_file":"emacs\/ar\/ar-helm-projectile.el","new_file":"emacs\/ar\/ar-helm-projectile.el","old_contents":";;; ar-helm-projectile.el --- Helm projectile support.\n\n;;; Commentary:\n;; Helm projectile helpers.\n\n;;; Code:\n\n(require 'ar-shell)\n(require 'helm-projectile)\n\n(defun ar\/helm-projectile-shell-cd ()\n \"Change shell current working directory using helm projectile.\"\n (interactive)\n (unless (string-equal mode-name \"Shell\")\n (error \"Not in Shell mode\"))\n (let ((helm-dir-source (copy-tree helm-source-projectile-directories-list)))\n (add-to-list 'helm-dir-source '(action . ar\/shell-cd))\n (add-to-list 'helm-dir-source '(keymap . nil))\n (add-to-list 'helm-dir-source '(header-line . \"cd to directory...\"))\n (helm :sources helm-dir-source\n :buffer \"*helm-dirs*\"\n :candidate-number-limit 10000)))\n\n(provide 'ar-helm-projectile)\n\n;;; ar-helm-projectile.el ends here\n","new_contents":";;; ar-helm-projectile.el --- Helm projectile support.\n\n;;; Commentary:\n;; Helm projectile helpers.\n\n;;; Code:\n\n(require 'ar-shell)\n(require 'cl)\n(require 'helm-projectile)\n\n(defun ar\/helm-projectile-shell-cd ()\n \"Change shell current working directory using helm projectile.\"\n (interactive)\n (assert (string-equal mode-name \"Shell\") nil \"Not in Shell mode\")\n (let ((helm-dir-source (copy-tree helm-source-projectile-directories-list)))\n (add-to-list 'helm-dir-source '(action . ar\/shell-cd))\n (add-to-list 'helm-dir-source '(keymap . nil))\n (add-to-list 'helm-dir-source '(header-line . \"cd to directory...\"))\n (helm :sources helm-dir-source\n :buffer \"*helm-dirs*\"\n :candidate-number-limit 10000)))\n\n(provide 'ar-helm-projectile)\n\n;;; ar-helm-projectile.el ends here\n","subject":"Use assert instead of unless and error.","message":"Use assert instead of unless and error.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"xenodium\/dotsies,xenodium\/dotsies,xenodium\/dotsies"} {"commit":"a23ab955f042d931ab9478e802d4ee6b12c33a5f","old_file":"config\/tramp.el","new_file":"config\/tramp.el","old_contents":";; When saving small files, emacs tries to copy files with uuencode\n;; and base64 instead of copying wihth an extra scp session. This\n;; fails on machines without uuencode\/base64 support. We want to use\n;; scp always.\n(setq tramp-copy-size-limit nil)\n","new_contents":";; When saving small files, emacs tries to copy files with uuencode\n;; and base64 instead of copying wihth an extra scp session. This\n;; fails on machines without uuencode\/base64 support. We want to use\n;; scp always.\n(setq tramp-copy-size-limit nil)\n\n\n;; Use login credentials strore.\n(setq auth-source '(\"~\/.authinfo.pgp\" \"~\/.authinfo\" \"~\/.authinfo\"))\n","subject":"Use passwords for encrypted file instead of key store","message":"Use passwords for encrypted file instead of key store\n","lang":"Emacs Lisp","license":"unlicense","repos":"schanur\/emacs.d"} {"commit":"4b96e587ac559e6cf818315c01a414400177b802","old_file":"settings\/setup-package.el","new_file":"settings\/setup-package.el","old_contents":"(require 'package)\n(require 'dash)\n\n;; Add melpa to package repos\n(add-to-list 'package-archives '(\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\") t)\n(add-to-list 'package-archives '(\"melpa-stable\" . \"http:\/\/stable.melpa.org\/packages\/\") t)\n\n(package-initialize)\n\n(unless (file-exists-p \"~\/.emacs.d\/elpa\/archives\/melpa\")\n (package-refresh-contents))\n\n(defun packages-install (packages)\n (--each packages\n (when (not (package-installed-p it))\n (package-install it)))\n (delete-other-windows))\n\n;;; On-demand installation of packages\n\n(defun require-package (package &optional min-version no-refresh)\n \"Install given PACKAGE, optionally requiring MIN-VERSION.\nIf NO-REFRESH is non-nil, the available package lists will not be\nre-downloaded in order to locate PACKAGE.\"\n (if (package-installed-p package min-version)\n t\n (if (or (assoc package package-archive-contents) no-refresh)\n (package-install package)\n (progn\n (package-refresh-contents)\n (require-package package min-version t)))))\n\n(provide 'setup-package)\n","new_contents":"(require 'package)\n(require 'dash)\n\n;; Add melpa to package repos\n(add-to-list 'package-archives '(\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\") t)\n(add-to-list 'package-archives '(\"melpa-stable\" . \"http:\/\/stable.melpa.org\/packages\/\") t)\n\n(setq package-pinned-packages\n '((cider . \"melpa-stable\")\n (clojure-mode . \"melpa-stable\")))\n\n(package-initialize)\n\n(unless (file-exists-p \"~\/.emacs.d\/elpa\/archives\/melpa\")\n (package-refresh-contents))\n\n(defun packages-install (packages)\n (--each packages\n (when (not (package-installed-p it))\n (package-install it)))\n (delete-other-windows))\n\n;;; On-demand installation of packages\n\n(defun require-package (package &optional min-version no-refresh)\n \"Install given PACKAGE, optionally requiring MIN-VERSION.\nIf NO-REFRESH is non-nil, the available package lists will not be\nre-downloaded in order to locate PACKAGE.\"\n (if (package-installed-p package min-version)\n t\n (if (or (assoc package package-archive-contents) no-refresh)\n (package-install package)\n (progn\n (package-refresh-contents)\n (require-package package min-version t)))))\n\n(provide 'setup-package)\n","subject":"Use stable cider and clojure-mode","message":"Use stable cider and clojure-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"3699b18fda3416d05d9516ba7903cbdb76fde4c0","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n ivy\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n workspaces\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +dante)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n\n :term\n term\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n ;;(write ; emacs as a word processor (latex + org + markdown)\n ;; +wordnut ; wordnet (wn) search\n ;; +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n ivy\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n workspaces\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +dante)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n idris\n\n :term\n term\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n ;;(write ; emacs as a word processor (latex + org + markdown)\n ;; +wordnut ; wordnet (wn) search\n ;; +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","subject":"Add idris mode to doom","message":"Add idris mode to doom\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"aa97e076650aef895c69106e68a0490bafe6a935","old_file":"emacs-custom.el","new_file":"emacs-custom.el","old_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(fringe-mode 0 nil (fringe))\n '(ido-work-directory-list-ignore-regexps (quote (\"^\/s\/\")))\n '(mode-line-format (quote (\"%e\" (buffer-file-truename \"%f\" \"%b\") #(\"-%*-\" 0 4 (auto-composed t)) (vc-mode vc-mode) #(\"--\" 0 2 (auto-composed t)) mode-line-modes #(\"%-\" 0 2 (auto-composed t)))))\n '(mouse-wheel-scroll-amount (quote (2 ((shift) . 1) ((control)))))\n '(org-agenda-files (quote (\"~\/wiki\/wiki.org_archive\"))))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(browse-url-browser-function (quote browse-url-generic))\n '(browse-url-generic-program \"chromium\")\n '(fringe-mode 0 nil (fringe))\n '(ido-work-directory-list-ignore-regexps (quote (\"^\/s\/\")))\n '(mode-line-format (quote (\"%e\" (buffer-file-truename \"%f\" \"%b\") #(\"-%*-\" 0 4 (auto-composed t)) (vc-mode vc-mode) #(\"--\" 0 2 (auto-composed t)) mode-line-modes #(\"%-\" 0 2 (auto-composed t)))))\n '(mouse-wheel-scroll-amount (quote (2 ((shift) . 1) ((control)))))\n '(org-agenda-files (quote (\"~\/wiki\/wiki.org_archive\"))))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Use chromium as the default browser","message":"Use chromium as the default browser\n","lang":"Emacs Lisp","license":"mit","repos":"akrito\/python-den"} {"commit":"955b9cb20fb55f38c2842cd7e045e04fd4c76963","old_file":"core\/defuns\/macros-yasnippet.el","new_file":"core\/defuns\/macros-yasnippet.el","old_contents":";;; macros-yasnippet.el\n\n;;;###autoload\n(defmacro def-yas-mode! (mode)\n \"Register minor MODES in yasnippet.\"\n `(after! yasnippet\n (when (boundp 'yas--extra-modes)\n (add-hook! ,mode\n (if (symbol-value ,mode)\n (yas-activate-extra-mode ,mode)\n (yas-deactivate-extra-mode ,mode))))))\n\n(provide 'macros-yasnippet)\n;;; macros-yasnippet.el ends here\n","new_contents":";;; macros-yasnippet.el\n\n;;;###autoload\n(defmacro def-yas-mode! (mode)\n \"Register minor MODES in yasnippet.\"\n `(after! yasnippet\n (add-hook! ,mode\n (if ,mode\n (yas-activate-extra-mode ,mode)\n (yas-deactivate-extra-mode ,mode)))))\n\n(provide 'macros-yasnippet)\n;;; macros-yasnippet.el ends here\n","subject":"Remove redundant boundp check in def-yas-mode!","message":"Remove redundant boundp check in def-yas-mode!\n","lang":"Emacs Lisp","license":"mit","repos":"aminb\/.emacs.d,aminb\/.emacs.d,hlissner\/.emacs.d,aminb\/.emacs.d,keoko\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,UndeadKernel\/emacs_doom,keoko\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,keoko\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,aminb\/.emacs.d,hlissner\/.emacs.d,aminb\/.emacs.d,keoko\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,hlissner\/.emacs.d,keoko\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,keoko\/.emacs.d,hlissner\/.emacs.d,keoko\/.emacs.d,keoko\/.emacs.d"} {"commit":"987ef40886b5611ea59e70683a0a2b8f3c99c8c1","old_file":"custom\/81-ruby.el","new_file":"custom\/81-ruby.el","old_contents":";; (autoload 'enh-ruby-mode \"enh-ruby-mode\" \"Major mode for ruby files\" t)\n(add-to-list 'auto-mode-alist '(\"\\\\.rb$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.rake$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Rakefile$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.gemspec$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.ru$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Gemfile$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.rabl\" . ruby-mode))\n\n(add-to-list 'interpreter-mode-alist '(\"ruby\" . ruby-mode))\n \n(setq ruby-bounce-deep-indent t)\n(setq ruby-hanging-brace-indent-level 2)\n \n(require 'cl) ; If you don't have it already\n\n;; Add ruby-end\n(add-hook 'ruby-mode-hook\n (lambda ()\n (require 'ruby-end-mode)))\n","new_contents":";; (autoload 'enh-ruby-mode \"enh-ruby-mode\" \"Major mode for ruby files\" t)\n(add-to-list 'auto-mode-alist\n '(\"\\\\(?:\\\\.rb\\\\|ru\\\\|rabl\\\\|rake\\\\|thor\\\\|jbuilder\\\\|gemspec\\\\|podspec\\\\|\/\\\\(?:Gem\\\\|Rake\\\\|Cap\\\\|Thor\\\\|Vagrant\\\\|Guard\\\\|Pod\\\\)file\\\\)\\\\'\" . enh-ruby-mode))\n\n(add-to-list 'interpreter-mode-alist '(\"ruby\" . ruby-mode))\n \n(setq ruby-bounce-deep-indent t)\n(setq ruby-hanging-brace-indent-level 2)\n \n(require 'cl) ; If you don't have it already\n\n;; Add ruby-end\n(require 'ruby-end)\n(add-hook 'enh-ruby-mode-hook (lambda () (ruby-end-mode)))\n\n;; Load cmopany mode\n(add-hook 'enh-ruby-mode-hook (lambda () (company-mode)))\n\n","subject":"Use enhanced ruby instead of plain boring ruby mode.","message":"Use enhanced ruby instead of plain boring ruby mode.\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"0e9ae176be8a951566db08be446e2e078a7835cd","old_file":"modules\/tools\/prodigy\/config.el","new_file":"modules\/tools\/prodigy\/config.el","old_contents":";;; tools\/prodigy\/config.el -*- lexical-binding: t; -*-\n\n(after! prodigy\n (set-evil-initial-state! 'prodigy-mode 'emacs)\n\n (defadvice! +prodigy--add-project-property-a (orig-fn &rest args)\n \"Adds a new :project property to prodigy services, which hides the service\nunless invoked from the relevant project.\"\n :around #'prodigy-services\n (let ((project-root (downcase (or (doom-project-root) default-directory)))\n (services (apply orig-fn args)))\n (if current-prefix-arg\n services\n (cl-remove-if-not (lambda (service)\n (let ((project (plist-get service :project)))\n (or (not project)\n (file-in-directory-p project-root project))))\n services))))\n\n (define-key prodigy-mode-map \"d\" #'+prodigy\/delete))\n\n","new_contents":";;; tools\/prodigy\/config.el -*- lexical-binding: t; -*-\n\n(after! prodigy\n (defadvice! +prodigy--add-project-property-a (orig-fn &rest args)\n \"Adds a new :project property to prodigy services, which hides the service\nunless invoked from the relevant project.\"\n :around #'prodigy-services\n (let ((project-root (downcase (or (doom-project-root) default-directory)))\n (services (apply orig-fn args)))\n (if current-prefix-arg\n services\n (cl-remove-if-not (lambda (service)\n (let ((project (plist-get service :project)))\n (or (not project)\n (file-in-directory-p project-root project))))\n services))))\n\n (define-key prodigy-mode-map \"d\" #'+prodigy\/delete))\n\n","subject":"Set initial state in prodigy to normal","message":"Set initial state in prodigy to normal\n\nThis allows using evil-collection's bindings for this mode.\n\nSigned-off-by: Rudi Grinberg \n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"20a8a3a87965ebb8e325136b70fcc5256ffab827","old_file":"init-package\/init-multi-term.el","new_file":"init-package\/init-multi-term.el","old_contents":"(require 'multi-term)\n\n(setq multi-term-program \"\/bin\/zsh\")\n","new_contents":"(require 'multi-term)\n\n(setq multi-term-program \"\/bin\/zsh\")\n\n(defun term-send-tab ()\n \"Send tab in term mode.\"\n (interactive)\n (term-send-raw-string \"\\t\"))\n\n(add-to-list 'term-bind-key-alist '(\"\" . term-send-tab))\n","subject":"Make tab completion work within a zsh term.","message":"Make tab completion work within a zsh term.\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"4186c029824b190e87d3ca0cf6fcbebcdf931ce1","old_file":"Emacs\/emacs-custom.el","new_file":"Emacs\/emacs-custom.el","old_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(fido-mode t)\n '(global-display-line-numbers-mode t)\n '(ido-create-new-buffer 'always)\n '(ido-enable-flex-matching t)\n '(ido-everywhere t)\n '(ido-mode 'both nil (ido))\n '(indent-tabs-mode nil)\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode))\n '(standard-indent 4)\n '(tab-always-indent nil)\n '(tab-width 4))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(fido-mode t)\n '(global-display-line-numbers-mode t)\n '(ido-create-new-buffer 'always)\n '(ido-enable-flex-matching t)\n '(ido-everywhere t)\n '(ido-mode 'both nil (ido))\n '(indent-tabs-mode nil)\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(helm paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode))\n '(standard-indent 4)\n '(tab-always-indent nil)\n '(tab-width 4))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Add helm package to Emacs","message":"Add helm package to Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"Gosin\/Vim4Gosin"} {"commit":"7fe5d343c214d78bada01cafb1e8b6e7983ea1e7","old_file":"init-extension\/init-auto-highlight-symbol-mode.el","new_file":"init-extension\/init-auto-highlight-symbol-mode.el","old_contents":"(require 'auto-highlight-symbol)\n(custom-set-variables\n '(ahs-case-fold-search nil)\n '(ahs-default-range (quote ahs-range-whole-buffer))\n '(ahs-idle-interval 0.01))\n","new_contents":"(require 'auto-highlight-symbol)\n(custom-set-variables\n '(ahs-case-fold-search nil)\n '(ahs-default-range (quote ahs-range-whole-buffer))\n '(ahs-idle-interval 0.5))\n","subject":"Set auto-highlight-symbol delay to 0.5s instead of crazy 0.01s","message":"Set auto-highlight-symbol delay to 0.5s instead of crazy 0.01s\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"4212d78db3810b9c107e171b4d2b83a5c772bc9b","old_file":"home\/.emacs.d\/lisp\/init-company.el","new_file":"home\/.emacs.d\/lisp\/init-company.el","old_contents":";;; init-company.el -- Company mode setup\n\n;;; Commentary:\n;;; company setup\n\n;;; Code:\n(require-package 'company)\n(require-package 'company-quickhelp)\n\n(company-quickhelp-mode 1)\n(global-company-mode 1)\n\n(define-key company-active-map (kbd \"\\C-n\") 'company-select-next)\n(define-key company-active-map (kbd \"\\C-p\") 'company-select-previous)\n\n(setq company-dabbrev-downcase nil)\n(setq company-dabbrev-ignore-case t)\n(setq company-idle-delay 0.25)\n(setq company-minimum-prefix-length 0)\n\n(diminish 'company-mode)\n\n(provide 'init-company)\n;;; init-company.el ends here\n","new_contents":";;; init-company.el -- Company mode setup\n\n;;; Commentary:\n;;; company setup\n\n;;; Code:\n(require-package 'company)\n(require-package 'company-quickhelp)\n\n(company-quickhelp-mode 1)\n(global-company-mode 1)\n\n(define-key company-active-map (kbd \"\\C-n\") 'company-select-next)\n(define-key company-active-map (kbd \"\\C-p\") 'company-select-previous)\n(add-hook 'company-completion-started-hook (lambda (arg) (fci-mode 0)))\n(add-hook 'company-completion-finished-hook (lambda (arg) (fci-mode 1)))\n\n(setq company-dabbrev-downcase nil)\n(setq company-dabbrev-ignore-case t)\n(setq company-idle-delay 0.25)\n(setq company-minimum-prefix-length 0)\n\n(diminish 'company-mode)\n\n(provide 'init-company)\n;;; init-company.el ends here\n","subject":"Fix fill column indicator and company display in Emacs","message":"Fix fill column indicator and company display in Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"f536acf0448c018b7bcc0fe32fa6f2168318a683","old_file":"lisp\/init-projectile.el","new_file":"lisp\/init-projectile.el","old_contents":"(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-global-mode)\n\n ;; The following code means you get a menu if you hit \"C-c p\" and wait\n (after-load 'guide-key\n (add-to-list 'guide-key\/guide-key-sequence \"C-c p\"))\n\n ;; Shorter modeline\n (after-load 'projectile\n (setq-default\n projectile-mode-line\n '(:eval\n (if (file-remote-p default-directory)\n \" Pr\"\n (format \" Pr[%s]\" (projectile-project-name)))))))\n\n\n(provide 'init-projectile)\n","new_contents":"(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-mode)\n\n ;; The following code means you get a menu if you hit \"C-c p\" and wait\n (after-load 'guide-key\n (add-to-list 'guide-key\/guide-key-sequence \"C-c p\"))\n\n ;; Shorter modeline\n (after-load 'projectile\n (setq-default\n projectile-mode-line\n '(:eval\n (if (file-remote-p default-directory)\n \" Proj\"\n (format \" Proj[%s]\" (projectile-project-name)))))))\n\n\n(provide 'init-projectile)\n","subject":"Change projectile modeline lighter and use non-aliased mode name","message":"Change projectile modeline lighter and use non-aliased mode name\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"dcorking\/emacs.d,benkha\/emacs.d,svenyurgensson\/emacs.d,arthurl\/emacs.d,emuio\/emacs.d,mmqmzk\/emacs.d,qianwan\/emacs.d,braveoyster\/emacs.d,kindoblue\/emacs.d,blueseason\/emacs.d,sgarciac\/emacs.d,blueabysm\/emacs.d,purcell\/emacs.d,roxolan\/emacs.d,lust4life\/emacs.d,kongfy\/emacs.d,me020523\/emacs.d,wegatron\/emacs.d,krzysz00\/emacs.d,cjqw\/emacs.d,gsmlg\/emacs.d,baohaojun\/emacs.d"} {"commit":"17bc56445a5a13344f4269b4716676e186ef1e85","old_file":".emacs.d\/config\/eric-auth.el","new_file":".emacs.d\/config\/eric-auth.el","old_contents":"(pkg 'epa)\n\n(epa-file-enable)\n\n(defvar eric-auth-extension \".el.gpg\" \"The extension of encrypted files\")\n\n(defun eric-auth-init ()\n (interactive)\n (add-to-list 'load-suffixes eric-auth-extension))\n\n(provide 'eric-auth)\n","new_contents":"(pkg 'epa)\n\n(epa-file-enable)\n\n(defvar eric-auth-extension \"el.gpg\" \"The extension of encrypted files\")\n(defvar eric-auth-path \"~\" \"The path where passwd file is stored\")\n(defvar eric-auth-file \"passwd\" \"The filename to load for passwords and other sensitive information\")\n(defvar eric-auth nil \"The full path + filename to load, only set this on init so the variables can be changed prior to setting up\")\n\n(defun eric-auth-init ()\n (interactive)\n (add-to-list 'load-suffixes eric-auth-extension)\n (setq eric-auth (format \"%s\/%s.%s\" eric-auth-path eric-auth-file eric-auth-extension)))\n\n(provide 'eric-auth)\n","subject":"Make this a bit more user-friendly.","message":"Make this a bit more user-friendly.\n\nWhile this might be super-config-heavy, it allows better customization\nas not everyone wants to do things the way I do. But, the defaults are\nfor my use.\n","lang":"Emacs Lisp","license":"mit","repos":"eric-hansen\/dotemacs"} {"commit":"a85de92a1bf85759ff4011c47a33e7ca772b7807","old_file":"contrib\/!tools\/ranger\/packages.el","new_file":"contrib\/!tools\/ranger\/packages.el","old_contents":";;; packages.el --- ranger Layer packages File for Spacemacs\n;;\n;; Copyright (c) 2012-2014 Sylvain Benner\n;; Copyright (c) 2014-2015 Sylvain Benner & Contributors\n;;\n;; Author: Rich Alesi\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(setq ranger-packages '(ranger))\n\n(defun ranger\/init-ranger ()\n (use-package ranger\n :defer t\n :init\n (progn\n (evil-leader\/set-key\n \"ar\" 'ranger\n \"ad\" 'deer)\n (evil-define-key 'normal 'dired-mode-map \"-\" 'ranger-up-directory)\n (define-key evil-normal-state-map (kbd \"-\") 'deer)\n\n ;; set up image-dired to allow picture resize\n (setq image-dired-dir (concat spacemacs-cache-directory \"image-dir\"))\n (unless (file-directory-p image-dired-dir)\n (make-directory image-dired-dir)))))\n","new_contents":";;; packages.el --- ranger Layer packages File for Spacemacs\n;;\n;; Copyright (c) 2012-2014 Sylvain Benner\n;; Copyright (c) 2014-2015 Sylvain Benner & Contributors\n;;\n;; Author: Rich Alesi\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(setq ranger-packages '(ranger))\n\n(defun ranger\/init-ranger ()\n (use-package ranger\n :defer t\n :init\n (progn\n (evil-leader\/set-key\n \"ar\" 'ranger\n \"ad\" 'deer)\n (define-key evil-normal-state-map (kbd \"-\") 'deer)\n\n ;; set up image-dired to allow picture resize\n (setq image-dired-dir (concat spacemacs-cache-directory \"image-dir\"))\n (unless (file-directory-p image-dired-dir)\n (make-directory image-dired-dir)))\n :config\n (ranger-map (kbd \"-\") 'ranger-up-directory)))\n","subject":"Fix `ranger-up-directory` mapping for emacs \/ evil users.","message":"Fix `ranger-up-directory` mapping for emacs \/ evil users.\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"d23864c1079c70d270c7c0b9fbd5f9799ed2b9b9","old_file":"init-exec-path.el","new_file":"init-exec-path.el","old_contents":"(defun set-exec-path-from-shell-PATH ()\n (let ((path-from-shell (string-rtrim (shell-command-to-string \"$SHELL --login -i -c 'echo $PATH'\"))))\n (setenv \"PATH\" path-from-shell)\n (setq exec-path (split-string path-from-shell path-separator))))\n\n(when *is-a-mac*\n (eval-after-load \"woman\"\n '(setq woman-manpath (append (list \"\/opt\/local\/man\") woman-manpath)))\n\n ;; When started from Emacs.app or similar, ensure $PATH\n ;; is the same the user would see in Terminal.app\n (if window-system (set-exec-path-from-shell-PATH)))\n\n\n(provide 'init-exec-path)\n","new_contents":"(defun set-exec-path-from-shell-PATH ()\n (let ((path-from-shell (string-rtrim (shell-command-to-string \"$SHELL --login -i -c 'echo $PATH'\"))))\n (setenv \"PATH\" path-from-shell)\n (setq exec-path (split-string path-from-shell path-separator))))\n\n(when *is-a-mac*\n ;; When started from Emacs.app or similar, ensure $PATH\n ;; is the same the user would see in Terminal.app\n (if window-system (set-exec-path-from-shell-PATH)))\n\n\n(provide 'init-exec-path)\n","subject":"Remove defunct setting of man path for 'woman","message":"Remove defunct setting of man path for 'woman\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"ernest-dzf\/emacs.d,me020523\/emacs.d,zuoshifan\/emacs.d,jhpx\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,wenpincui\/emacs.d,boblannon\/emacs.d,hophacker\/emacs.d,zenith-john\/emacs.d,lust4life\/emacs.d,modkzs\/emcs.d,zuoshifan\/emacs.d,zhuoyikang\/emacs.d,dongdonghu\/.emacs.d,baohaojun\/emacs.d,qinshulei\/emacs.d,farzadbekran\/emacs.d,cjqw\/emacs.d,LKI\/emacs.d,farzadbekran\/emacs.d,arthurl\/emacs.d,carlosliu\/emacs.d,shafayetkhan\/emacs.d,Shanicky\/emacs.d,jkaessens\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,Togal\/emacs.d,jthetzel\/emacs.d,YangXin\/emacs.d,emuio\/emacs.d,renatoriccio\/emacs.d,Enzo-Liu\/emacs.d,zuoshifan\/emacs.d,DarkThrone\/emacs.d,roxolan\/emacs.d,svenyurgensson\/emacs.d,lujianmei\/emacs.d,zuoshifan\/emacs.d,scorpionis\/emacs.d,cyjia\/emacs.d,zuoshifan\/emacs.d,blueseason\/emacs.d,Jadecity\/PurcellEmacs.d,Werewolflsp\/emacs.d,pairyo\/emacs.d,ruiyang\/emacs.d,haodaivshen\/emacs.d,hkcqr\/emacs.d,purcell\/emacs.d,braveoyster\/emacs.d,ilove0518\/emacs.d,mmqmzk\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,caoyuanqi\/emacs.d,ruiyang\/emacs.d,lromang\/emacs.d,kongfy\/emacs.d,bibaijin\/emacs.d,blueabysm\/emacs.d,jachinpy\/emacs.d,farzadbekran\/emacs.d,dcorking\/emacs.d,zhaotai\/.emacs.d,exclamaforte\/emacs.d,jachinpy\/emacs.d,atreeyang\/emacs.d,kindoblue\/emacs.d,Guoozz\/emacs.d,YangXin\/emacs.d,gsmlg\/emacs.d,danfengcao\/emacs.d,46do14\/emacs.d,benkha\/emacs.d,mpwang\/emacs.d,dhanunjaya\/emacs.d,wegatron\/emacs.d,LittleLmp\/emacs.d,qianwan\/emacs.d,alant\/emacs.d,whizzzkid\/emacs.d,fengxl\/emacs.d,krzysz00\/emacs.d,sgarciac\/emacs.d"} {"commit":"ffaed61f2e118eab6e38d645c1f0a951d669ea5b","old_file":".emacs.d\/lib\/my-global-bindings.el","new_file":".emacs.d\/lib\/my-global-bindings.el","old_contents":"(defun my\/cleanup-buffer ()\n (interactive)\n (delete-trailing-whitespace)\n (untabify (point-min) (point-max))\n (indent-region (point-min) (point-max)))\n\n(global-set-key (kbd \"C-c n\") 'my\/cleanup-buffer)\n(global-set-key (kbd \"C-c C-n\") 'my\/cleanup-buffer)\n","new_contents":"(defun my\/cleanup-buffer ()\n (interactive)\n (delete-trailing-whitespace)\n (untabify (point-min) (point-max))\n (indent-region (point-min) (point-max))\n (when (derived-mode-p 'clojure-mode)\n (clojure-sort-ns)))\n\n(global-set-key (kbd \"C-c n\") 'my\/cleanup-buffer)\n(global-set-key (kbd \"C-c C-n\") 'my\/cleanup-buffer)\n","subject":"Sort clojure ns forms on buffer cleanup.","message":"Sort clojure ns forms on buffer cleanup.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"pjstadig\/dotfiles,pjstadig\/dotfiles"} {"commit":"d3c5f84009c052569cd78f666d0a4e445ca83520","old_file":"emacs\/.emacs.d\/lisp\/ds-sh.el","new_file":"emacs\/.emacs.d\/lisp\/ds-sh.el","old_contents":"\n(require 'shell)\n(require 'sh-script)\n\n(add-hook 'shell-mode-hook 'set-tab)\n(add-hook 'shell-mode-hook (lambda ()\n (set 'sh-basic-offset 2)\n (set 'sh-indentation 2)))\n\n(require 'flycheck)\n(add-hook 'shell-mode-hook #'flycheck-mode)\n","new_contents":"\n(require 'shell)\n(require 'sh-script)\n\n(add-hook 'sh-mode-hook 'set-tab)\n\n(require 'flycheck)\n(add-hook 'sh-mode-hook #'flycheck-mode)\n","subject":"Fix some stupid shit in sh-mode config","message":"Fix some stupid shit in sh-mode config\n","lang":"Emacs Lisp","license":"cc0-1.0","repos":"davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles"} {"commit":"c1984df8d4814091b1749c9373f5e1f010d8b514","old_file":"home\/.emacs.d\/lisp\/init-company.el","new_file":"home\/.emacs.d\/lisp\/init-company.el","old_contents":";;; init-company.el -- Company mode setup\n\n;;; Commentary:\n;;; company setup\n\n;;; Code:\n(require-package 'company)\n(require-package 'company-quickhelp)\n\n(company-quickhelp-mode 1)\n(global-company-mode 1)\n\n(define-key company-active-map (kbd \"\\C-n\") 'company-select-next)\n(define-key company-active-map (kbd \"\\C-p\") 'company-select-previous)\n(add-hook 'company-completion-started-hook (lambda (arg) (fci-mode 0)))\n(add-hook 'company-completion-finished-hook (lambda (arg) (fci-mode 1)))\n\n(setq company-dabbrev-downcase nil)\n(setq company-dabbrev-ignore-case t)\n(setq company-idle-delay 0.25)\n(setq company-minimum-prefix-length 0)\n\n(diminish 'company-mode)\n\n(provide 'init-company)\n;;; init-company.el ends here\n","new_contents":";;; init-company.el -- Company mode setup\n\n;;; Commentary:\n;;; company setup\n\n;;; Code:\n(require-package 'company)\n(require-package 'company-quickhelp)\n\n(company-quickhelp-mode 1)\n(global-company-mode 1)\n\n(define-key company-active-map (kbd \"\\C-n\") 'company-select-next)\n(define-key company-active-map (kbd \"\\C-p\") 'company-select-previous)\n(global-set-key (kbd \"M-\/\") 'hippie-expand)\n(add-hook 'company-completion-started-hook (lambda (arg) (fci-mode 0)))\n(add-hook 'company-completion-finished-hook (lambda (arg) (fci-mode 1)))\n\n(setq company-dabbrev-downcase nil)\n(setq company-dabbrev-ignore-case t)\n(setq company-idle-delay 0.25)\n(setq company-minimum-prefix-length 0)\n\n(diminish 'company-mode)\n\n(provide 'init-company)\n;;; init-company.el ends here\n","subject":"Use hippie-expand instead of dabbrev in Emacs","message":"Use hippie-expand instead of dabbrev in Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"ce9c2c763623f721b13b3b74871374b59098e8b9","old_file":"init-package\/init-solarized-theme.el","new_file":"init-package\/init-solarized-theme.el","old_contents":"(load-theme 'solarized-dark t)\n","new_contents":"(if (equal system-name \"QUE-WKS-AA427-Linux\")\n (load-theme 'solarized-light t)\n (load-theme 'solarized-dark t))\n","subject":"Change theme depending on the hostname.","message":"Change theme depending on the hostname.\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"8e69171cec847474ed6410c6e019871e80f216fe","old_file":"config\/emacs-pkginit.el","new_file":"config\/emacs-pkginit.el","old_contents":"\n;;; ------------------------------------------------------------------------------\n;;; FILE | .emacs-pkginit.el\n;;; AUTHOR | sameh kamal\n;;; DESCRIPTION | emacs initial packages installation\n;;; ------------------------------------------------------------------------------\n\n\n(require 'package)\n\n(add-to-list 'package-archives '(\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\" ))\n(add-to-list 'package-archives '(\"elpy\" . \"http:\/\/jorgenschaefer.github.io\/packages\/\" ))\n(add-to-list 'package-archives '(\"melpa\" . \"http:\/\/melpa.org\/packages\/\" ) t)\n\n; list the packages you want\n(setq package-list\n '( use-package\n\t python-environment\n\t flycheck\n\t elpy\n\t jedi\n\t seti-theme\n \t auto-complete\n\t magit\n\t yasnippet\n\t highlight-parentheses\n\t multiple-cursors\n\t markdown-mode\n\t markdown-mode+\n\t dired+\n\t diff-hl\n\t org\n )\n)\n\n; activate all the packages\n(package-initialize)\n\n; fetch the list of packages available \n(unless package-archive-contents\n (package-refresh-contents))\n\n; install the missing packages\n(dolist (package package-list)\n (unless (package-installed-p package)\n (package-install package)))\n\n;;; emacs-pkginit.el ends here\n","new_contents":";; ------------------------------------------------------------------------------\n;; FILE | .emacs-pkginit.el\n;; AUTHOR | sameh kamal\n;; DESCRIPTION | emacs initial packages installation\n;; ------------------------------------------------------------------------------\n\n(require 'package)\n\n(add-to-list 'package-archives '(\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\" ))\n(add-to-list 'package-archives '(\"elpy\" . \"http:\/\/jorgenschaefer.github.io\/packages\/\" ))\n(add-to-list 'package-archives '(\"melpa\" . \"http:\/\/melpa.org\/packages\/\" ) t)\n\n; list the packages you want\n(setq package-list\n '( use-package\n\t python-environment\n\t flycheck\n\t elpy\n\t jedi\n\t seti-theme\n \t auto-complete\n\t magit\n\t yasnippet\n\t auctex\n\t highlight-parentheses\n\t multiple-cursors\n\t markdown-mode\n\t markdown-mode+\n\t dired+\n\t diff-hl\n\t org\n )\n)\n\n; activate all the packages\n(package-initialize)\n\n; fetch the list of packages available \n(unless package-archive-contents\n (package-refresh-contents))\n\n; install the missing packages\n(dolist (package package-list)\n (unless (package-installed-p package)\n (package-install package)))\n\n;;; emacs-pkginit.el ends here\n","subject":"Add auctex to install packages list","message":"Add auctex to install packages list\n","lang":"Emacs Lisp","license":"mit","repos":"samehkamaleldin\/dot-files,samehkamaleldin\/linux-env-utils"} {"commit":"f0d02fc5d1bcea1948887351bb5575115790b796","old_file":".emacs.d\/lisp\/package\/dependencies.el","new_file":".emacs.d\/lisp\/package\/dependencies.el","old_contents":"(defvar kotct\/dependency-list\n '(linum-off ;; turn linum off in certain modes\n ido-vertical-mode ;; use vertical menus for ido\n ido-grid-mode ;; use a grid selection menu for ido\n smex ;; ido-enabled M-x\n anzu ;; nicer search environment\n volatile-highlights ;; highlight changed areas\n buffer-move ;; easily move buffers between windows\n expand-region ;; expand region to successively larger sexps\n magit ;; make Git and Emacs both way cooler\n auto-complete ;; code autocompletion\n markdown-mode ;; major mode for markdown\n smart-tabs-mode ;; indentation with tabs and spaces\n ace-jump-mode ;; immediately jump to any visible character\n ace-jump-zap ;; zap-to-char but harnessing ace-jump\n editorconfig ;; editorconfig plugin\n hl-todo ;; highlight TODO, FIXME, FAIL, etc.\n highlight-symbol ;; navigate between and highlight symbols\n web-mode ;; for editing web files\n elixir-mode ;; for editing Elixir code\n rust-mode ;; for editing Rust code\n yaml-mode ;; for editing YAML files\n buttercup ;; for tests\n smartparens ;; for dealing with paired control flow symbols\n gitignore-mode ;; for editing .gitignore files\n gitattributes-mode ;; for editing .gitattributes files\n gitconfig-mode ;; for editing .git\/config files\n\n ;; THEMES\n solarized-theme)\n \"A list of all packages required for operation.\")\n\n(provide 'dependencies)\n","new_contents":"(defvar kotct\/dependency-list\n '(linum-off ;; turn linum off in certain modes\n ido-vertical-mode ;; use vertical menus for ido\n ido-grid-mode ;; use a grid selection menu for ido\n smex ;; ido-enabled M-x\n anzu ;; nicer search environment\n volatile-highlights ;; highlight changed areas\n buffer-move ;; easily move buffers between windows\n expand-region ;; expand region to successively larger sexps\n magit ;; make Git and Emacs both way cooler\n auto-complete ;; code autocompletion\n markdown-mode ;; major mode for markdown\n smart-tabs-mode ;; indentation with tabs and spaces\n ace-jump-mode ;; immediately jump to any visible character\n ace-jump-zap ;; zap-to-char but harnessing ace-jump\n editorconfig ;; editorconfig plugin\n hl-todo ;; highlight TODO, FIXME, FAIL, etc.\n highlight-symbol ;; navigate between and highlight symbols\n web-mode ;; for editing web files\n elixir-mode ;; for editing Elixir code\n rust-mode ;; for editing Rust code\n yaml-mode ;; for editing YAML files\n buttercup ;; for tests\n smartparens ;; for dealing with paired control flow symbols\n gitignore-mode ;; for editing .gitignore files\n gitattributes-mode ;; for editing .gitattributes files\n gitconfig-mode ;; for editing .git\/config files\n fish-mode ;; for editing fish shell configuration files\n\n ;; THEMES\n solarized-theme)\n \"A list of all packages required for operation.\")\n\n(provide 'dependencies)\n","subject":"Add fish-mode as a dependency","message":"Add fish-mode as a dependency\n","lang":"Emacs Lisp","license":"mit","repos":"kotct\/dot,kotct\/dot"} {"commit":"9be176c82fec40d2eff0ea3ae948f99070b12343","old_file":"lisp\/init-typescript.el","new_file":"lisp\/init-typescript.el","old_contents":";;; init-typescript.el --- Configuration for tide\n\n;;; Commentary:\n\n;;; Code:\n(use-package tide\n :functions tide-setup\n :config\n (defun gp-setup-tide-mode ()\n (interactive)\n (tide-setup)\n (flycheck-mode +1)\n (setq flycheck-check-syntax-automatically '(save mode-enabled))\n (eldoc-mode +1)\n (tide-hl-identifier-mode +1)\n (company-mode +1))\n ;; aligns annotation to the right hand side\n (setq company-tooltip-align-annotations t)\n (add-hook 'typescript-mode-hook 'gp-setup-tide-mode)\n (add-hook 'before-save-hook 'tide-format-before-save)\n (setq tide-format-options '(:tabSize 2\n :convertTabsToSpaces t\n :insertSpaceAfterFunctionKeywordForAnonymousFunctions t\n :placeOpenBraceOnNewLineForFunctions nil\n :))\n (add-to-list 'auto-mode-alist '(\"\\\\.ts\\\\'\" . typescript-mode))\n (add-to-list 'auto-mode-alist '(\"\\\\.tsx\\\\'\" . web-mode))\n (add-hook 'web-mode-hook\n (lambda ()\n (when (string-equal \"tsx\" (file-name-extension buffer-file-name))\n (gp-setup-tide-mode))))\n )\n \n(provide 'init-typescript)\n;;; init-typescript.el ends here\n","new_contents":";;; init-typescript.el --- Configuration for tide\n\n;;; Commentary:\n\n;;; Code:\n(use-package tide\n :functions tide-setup\n :config\n (defun gp-setup-tide-mode ()\n (interactive)\n (tide-setup)\n (flycheck-mode +1)\n (setq flycheck-check-syntax-automatically '(save mode-enabled))\n (eldoc-mode +1)\n (tide-hl-identifier-mode +1)\n (company-mode +1))\n ;; aligns annotation to the right hand side\n (setq company-tooltip-align-annotations t)\n (add-hook 'typescript-mode-hook #'gp-setup-tide-mode)\n ;;(add-hook 'before-save-hook 'tide-format-before-save)\n (add-to-list 'auto-mode-alist '(\"\\\\.ts\\\\'\" . typescript-mode))\n (add-to-list 'auto-mode-alist '(\"\\\\.tsx\\\\'\" . web-mode))\n (add-hook 'web-mode-hook\n (lambda ()\n (when (string-equal \"tsx\" (file-name-extension buffer-file-name))\n (gp-setup-tide-mode))))\n )\n \n(provide 'init-typescript)\n;;; init-typescript.el ends here\n","subject":"Disable tide format before save","message":"Disable tide format before save\n","lang":"Emacs Lisp","license":"mit","repos":"gilesp\/emacs.d"} {"commit":"00f9f09612d4175850867ca70911b03e1e1b0bb9","old_file":"init-exec-path.el","new_file":"init-exec-path.el","old_contents":"(when (memq window-system '(mac ns))\n (exec-path-from-shell-initialize))\n\n(provide 'init-exec-path)\n","new_contents":"(eval-after-load 'exec-path-from-shell\n '(progn\n (dolist (var '(\"SSH_AUTH_SOCK\" \"SSH_AGENT_PID\" \"GPG_AGENT_INFO\"))\n (add-to-list var 'exec-path-from-shell-variables))))\n\n\n(when (memq window-system '(mac ns))\n (exec-path-from-shell-initialize))\n\n(provide 'init-exec-path)\n","subject":"Use exec-path-from-shell to slurp SSH_* env vars into Emacs on OS X","message":"Use exec-path-from-shell to slurp SSH_* env vars into Emacs on OS X\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"wenpincui\/emacs.d,carlosliu\/emacs.d,atreeyang\/emacs.d,YangXin\/emacs.d,cjqw\/emacs.d,sgarciac\/emacs.d,arthurl\/emacs.d,exclamaforte\/emacs.d,me020523\/emacs.d,Togal\/emacs.d,renatoriccio\/emacs.d,zhaotai\/.emacs.d,zuoshifan\/emacs.d,Jadecity\/PurcellEmacs.d,LKI\/emacs.d,lust4life\/emacs.d,zuoshifan\/emacs.d,jkaessens\/emacs.d,mmqmzk\/emacs.d,haodaivshen\/emacs.d,Werewolflsp\/emacs.d,modkzs\/emcs.d,zhuoyikang\/emacs.d,zuoshifan\/emacs.d,scorpionis\/emacs.d,jthetzel\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,whizzzkid\/emacs.d,kongfy\/emacs.d,LittleLmp\/emacs.d,farzadbekran\/emacs.d,mpwang\/emacs.d,benkha\/emacs.d,dcorking\/emacs.d,blueseason\/emacs.d,dhanunjaya\/emacs.d,qianwan\/emacs.d,boblannon\/emacs.d,hkcqr\/emacs.d,jachinpy\/emacs.d,farzadbekran\/emacs.d,lromang\/emacs.d,ruiyang\/emacs.d,zenith-john\/emacs.d,danfengcao\/emacs.d,ruiyang\/emacs.d,alant\/emacs.d,ernest-dzf\/emacs.d,roxolan\/emacs.d,braveoyster\/emacs.d,ilove0518\/emacs.d,gsmlg\/emacs.d,shafayetkhan\/emacs.d,baohaojun\/emacs.d,46do14\/emacs.d,blueabysm\/emacs.d,qinshulei\/emacs.d,Guoozz\/emacs.d,caoyuanqi\/emacs.d,jhpx\/emacs.d,lujianmei\/emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,purcell\/emacs.d,fengxl\/emacs.d,farzadbekran\/emacs.d,Enzo-Liu\/emacs.d,bibaijin\/emacs.d,svenyurgensson\/emacs.d,zuoshifan\/emacs.d,YangXin\/emacs.d,kindoblue\/emacs.d,wegatron\/emacs.d,krzysz00\/emacs.d,hophacker\/emacs.d,DarkThrone\/emacs.d,jachinpy\/emacs.d,pairyo\/emacs.d,emuio\/emacs.d,zuoshifan\/emacs.d,cyjia\/emacs.d,Shanicky\/emacs.d,zuoshifan\/emacs.d,dongdonghu\/.emacs.d"} {"commit":"51aa60d67dec9034655162bc0729c78122a5a8aa","old_file":"modules\/emacs\/electric\/autoload.el","new_file":"modules\/emacs\/electric\/autoload.el","old_contents":";;; emacs\/electric\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autodef\n(defun set-electric! (modes &rest plist)\n \"Declare :words (list of strings) or :chars (lists of chars) in MODES that\ntrigger electric indentation.\"\n (declare (indent 1))\n (unless plist\n (signal 'wrong-number-of-arguments\n (list '(:char :words) plist)))\n (cl-destructuring-bind (&key char words) plist\n (dolist (mode (doom-enlist modes))\n (let ((fn (intern (format \"+electric-indent--init-%s\" mode))))\n (fset fn\n (lambda ()\n (electric-indent-local-mode +1)\n (if chars (setq electric-indent-chars chars))\n (if words (setq +electric-indent-words words))))\n (add-hook (intern (format \"%s-hook\" mode)) fn)))))\n\n;; FIXME obsolete :electric\n;;;###autoload\n(def-setting! :electric (modes &rest plist)\n \"Declare :words (list of strings) or :chars (lists of chars) in MODES that\ntrigger electric indentation.\"\n :obsolete set-electric!\n `(set-electric! ,modes ,@plist))\n","new_contents":";;; emacs\/electric\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autodef\n(defun set-electric! (modes &rest plist)\n \"Declare :words (list of strings) or :chars (lists of chars) in MODES that\ntrigger electric indentation.\"\n (declare (indent 1))\n (unless plist\n (signal 'wrong-number-of-arguments\n (list '(:char :words) plist)))\n (cl-destructuring-bind (&key chars words) plist\n (dolist (mode (doom-enlist modes))\n (let ((fn (intern (format \"+electric-indent--init-%s\" mode))))\n (fset fn\n (lambda ()\n (electric-indent-local-mode +1)\n (if chars (setq electric-indent-chars chars))\n (if words (setq +electric-indent-words words))))\n (add-hook (intern (format \"%s-hook\" mode)) fn)))))\n\n;; FIXME obsolete :electric\n;;;###autoload\n(def-setting! :electric (modes &rest plist)\n \"Declare :words (list of strings) or :chars (lists of chars) in MODES that\ntrigger electric indentation.\"\n :obsolete set-electric!\n `(set-electric! ,modes ,@plist))\n","subject":"Fix set-electric! complaining about :char","message":"Fix set-electric! complaining about :char\n\nA typo! Should be :chars\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d"} {"commit":"7fa87b07a5c2f5ad11b685222e6e374977df3067","old_file":"fdoc2md.el","new_file":"fdoc2md.el","old_contents":";;; -*- lexical-binding: t -*-\n;;; fdoc2md.el -- Convert function documentation to markdown\n(defvar fdoc-replacements\n '((\"`\\\\([^']+\\\\)'\" . \"`\\\\1`\"))\n \"A list of alists where the car is the search regular\nexpression and the cdr is the replacement string.\")\n\n(defun fdoc2md (func file)\n \"Extract the documentation from FUNC and try to convert it to\nmarkdown then append it to FILE.\"\n (let ((doc (documentation func)))\n (mapc (lambda (re)\n (let ((start nil))\n (while (setq start (string-match (car re) doc\n (if start (match-end 0))))\n (setq doc (replace-match (cdr re) nil nil doc nil)))))\n fdoc-replacements)\n (with-temp-buffer\n (insert doc)\n (append-to-file (point-min) (point-max) file))))\n","new_contents":";;; -*- lexical-binding: t -*-\n;;; fdoc2md.el -- Convert function documentation to markdown\n(defvar fdoc-replacements\n '((\"`\\\\([^']+\\\\)'\" . \"`\\\\1`\"))\n \"A list of alists where the car is the search regular\nexpression and the cdr is the replacement string.\")\n\n(defun fdoc2md (func file)\n \"Extract the documentation from FUNC and try to convert it to\nmarkdown then append it to FILE.\"\n (let ((doc (documentation func)))\n (mapc (lambda (re)\n (let ((start nil))\n (while (setq start (string-match (car re) doc\n (if start (match-end 0))))\n (setq doc (replace-match (cdr re) nil nil doc nil)))))\n fdoc-replacements)\n (with-temp-buffer\n (insert doc)\n (insert \"\\n\")\n (append-to-file (point-min) (point-max) file))))\n","subject":"Add a newline so we don't have to from outside","message":"Add a newline so we don't have to from outside\n","lang":"Emacs Lisp","license":"mit","repos":"pjones\/elpkg"} {"commit":"c6dd6b78a899b968204e4531489b2ccdc17c4060","old_file":"configs\/emacs.d\/pkgs\/pkg-javascript.el","new_file":"configs\/emacs.d\/pkgs\/pkg-javascript.el","old_contents":"(use-package js2-mode\n :ensure t\n )\n\n(use-package web-mode\n :ensure t\n :config\n (setq web-mode-code-indent-offset 4)\n (setq web-mode-script-padding 0)\n (setq web-mode-markup-indent-offset 2)\n )\n\n(use-package mmm-mode\n :ensure t\n :config\n (setq mmm-global-mode 'maybe)\n\n (dolist (langsets '((\"script\" . ((coffee . coffee-mode)\n (es6 . js2-mode)))\n (\"style\" . ((stylus . stylus-mode)\n (less . less-css-mode)\n (scss . scss-mode)))))\n (let ((tag (car langsets)))\n (dolist (pair (cdr langsets))\n (let* ((lang (car pair))\n (submode (cdr pair))\n (class-name (make-symbol (format \"vueify-%s-%s\" tag lang)))\n (front (format \"<%s lang=\\\"%s\\\">\" tag lang))\n (back (format \"<\/%s>\" tag)))\n (mmm-add-classes\n `((,class-name\n :submode ,submode\n :front ,front\n :back ,back)))\n (mmm-add-mode-ext-class nil \"\\\\.vue?\\\\'\" class-name)))))\n\n (add-to-list 'auto-mode-alist '(\"\\\\.vue?\\\\'\" . web-mode))\n )\n\n(provide 'pkg-javascript)\n","new_contents":"(use-package js2-mode\n :ensure t\n )\n\n(use-package web-mode\n :ensure t\n :config\n (setq web-mode-code-indent-offset 2)\n (setq web-mode-script-padding 0)\n (setq web-mode-markup-indent-offset 2)\n )\n\n(use-package mmm-mode\n :ensure t\n :config\n (setq mmm-global-mode 'maybe)\n\n (dolist (langsets '((\"script\" . ((coffee . coffee-mode)\n (es6 . js2-mode)))\n (\"style\" . ((stylus . stylus-mode)\n (less . less-css-mode)\n (scss . scss-mode)))))\n (let ((tag (car langsets)))\n (dolist (pair (cdr langsets))\n (let* ((lang (car pair))\n (submode (cdr pair))\n (class-name (make-symbol (format \"vueify-%s-%s\" tag lang)))\n (front (format \"<%s lang=\\\"%s\\\">\" tag lang))\n (back (format \"<\/%s>\" tag)))\n (mmm-add-classes\n `((,class-name\n :submode ,submode\n :front ,front\n :back ,back)))\n (mmm-add-mode-ext-class nil \"\\\\.vue?\\\\'\" class-name)))))\n\n (add-to-list 'auto-mode-alist '(\"\\\\.vue?\\\\'\" . web-mode))\n )\n\n(provide 'pkg-javascript)\n","subject":"Set JS and CSS indents in web-mode to 2","message":"Set JS and CSS indents in web-mode to 2\n","lang":"Emacs Lisp","license":"mit","repos":"noraesae\/dotfiles,noraesae\/dotfiles,noraesae\/dotfiles"} {"commit":"c86051ba22e21caf8fc20c2474d7714935658862","old_file":"site-lisp\/db-utils-test.el","new_file":"site-lisp\/db-utils-test.el","old_contents":";;; db-utils-test.el -- Tests for db-utils -*- lexical-binding: t -*-\n\n;;; Commentary:\n\n;;; Code:\n\n(require 'ert)\n(require 'db-utils)\n(require 'cl-lib)\n\n(ert-deftest db-utils-db\/ntp-to-time ()\n \"Test NTP conversion to readable time with `db\/ntp-to-time'.\"\n (should (equal (db\/ntp-to-time #xdcd2ac0c #x05c6dbac)\n \"2017-05-26T13:28:44.022565583Z\"))\n (should (equal (db\/ntp-to-time #xbd5927ee #xbc616000)\n \"2000-08-31T18:52:30.735860824Z\")))\n\n;;; db-utils-test.el ends here\n","new_contents":";;; db-utils-test.el -- Tests for db-utils -*- lexical-binding: t -*-\n\n;;; Commentary:\n\n;;; Code:\n\n(require 'ert)\n(require 'db-utils)\n(require 'cl-lib)\n\n(ert-deftest db-utils-db\/ntp-to-time ()\n \"Test NTP conversion to readable time with `db\/ntp-to-time'.\"\n (should (equal (db\/ntp-to-time #xdcd2ac0c #x05c6dbac)\n \"2017-05-26T13:28:44.022565583Z\"))\n (should (equal (db\/ntp-to-time #xbd5927ee #xbc616000)\n \"2000-08-31T18:52:30.735860824Z\"))\n (should (equal (db\/ntp-to-time #x00000000 #x0000000)\n \"1900-01-01T00:00:00.000000000Z\")))\n\n;;; db-utils-test.el ends here\n","subject":"Add obvious test for NTP conversion","message":"Add obvious test for NTP conversion\n\nThis test could not have been added before, because conversion was not\nguaranteed to work for dates before the unix epoch. It now is, and we finally\ncan check the start of the NTP epoch! :)\n","lang":"Emacs Lisp","license":"mit","repos":"exot\/.emacs.d"} {"commit":"6871ddae87929dab8f28d7b2237ae2a2fd8361f8","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"((sh-mode . ((indent-tabs-mode . nil)\n (sh-basic-offset . 2))))\n","new_contents":"((sh-mode . ((indent-tabs-mode . nil)\n (sh-indentation . 2)\n (sh-basic-offset . 2))))\n","subject":"Use 2 spaces for indent","message":"Use 2 spaces for indent\n","lang":"Emacs Lisp","license":"lgpl-2.1","repos":"naoa\/mroonga,naoa\/mroonga,naoa\/mroonga,yoku0825\/mroonga,mroonga\/mroonga,yoku0825\/mroonga,naoa\/mroonga,yoku0825\/mroonga,yoku0825\/mroonga,naoa\/mroonga,yoku0825\/mroonga,mroonga\/mroonga,naoa\/mroonga,mroonga\/mroonga,mroonga\/mroonga,yoku0825\/mroonga"} {"commit":"98303f975b76326075e409548de45eb1cf054640","old_file":"user-lisp\/conflicts-customisations.el","new_file":"user-lisp\/conflicts-customisations.el","old_contents":";;; conflicts-customisations.el -- Conveniences for handling files with conflicts\n\n(defun wh\/conflicts-list ()\n \"Show all the conflicts in the current buffer using occur-mode.\"\n (interactive)\n (occur \"<<<<<<< \")\n\n ;; put mark on the first result in the occur window\n (other-window 1)\n (forward-line))\n\n(use-package smerge-mode\n :config\n ;; TODO: it would be nice if this jumped to the next conflict\n (define-key smerge-mode-map (kbd \"\") #'smerge-keep-current)\n (define-key smerge-mode-map (kbd \"\") #'smerge-keep-current)\n (define-key smerge-mode-map (kbd \"C-c \") #'smerge-keep-all)\n (define-key smerge-mode-map (kbd \"\") #'smerge-prev)\n (define-key smerge-mode-map (kbd \"\") #'smerge-next))\n\n(provide 'conflicts-customisations)\n","new_contents":";;; conflicts-customisations.el -- Conveniences for handling files with conflicts\n\n(defun wh\/conflicts-list ()\n \"Show all the conflicts in the current buffer using occur-mode.\"\n (interactive)\n (occur \"<<<<<<< \")\n\n ;; put mark on the first result in the occur window\n (other-window 1)\n (forward-line))\n\n(defun wh\/smerge-keep-current-move-next ()\n \"Accept the hunk at point and move to the next merge conflict.\"\n (interactive)\n (smerge-keep-current)\n (smerge-next))\n\n(use-package smerge-mode\n :config\n ;; TODO: it would be nice if this jumped to the next conflict\n (define-key smerge-mode-map (kbd \"\") #'smerge-keep-current)\n (define-key smerge-mode-map (kbd \"\") #'smerge-keep-current)\n (define-key smerge-mode-map (kbd \"C-c \") #'smerge-keep-all)\n (define-key smerge-mode-map (kbd \"\") #'smerge-prev)\n (define-key smerge-mode-map (kbd \"\") #'smerge-next))\n\n(provide 'conflicts-customisations)\n","subject":"Add helper for accepting and moving between merge conflicts","message":"Add helper for accepting and moving between merge conflicts\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"6c3bf243b23ce733ec3a24a43a062da3fe40a79e","old_file":"emacs.d\/personal\/settings\/appearance.el","new_file":"emacs.d\/personal\/settings\/appearance.el","old_contents":";;; appearance.el --- Settings related to Emacs appearance\n\n;;; Commentary:\n\n;; Settings related to Emacs appearance\n\n;;; Code:\n\n;; hide the menu bar\n(menu-bar-mode 0)\n\n;; hide the scrollbars\n(scroll-bar-mode -1)\n\n;; disable the splash screen\n(setq inhibit-splash-screen t)\n\n;; load theme\n(load-theme 'gruvbox t)\n\n;; Speed up the performance of the display engine.\n;; See http:\/\/www.masteringemacs.org\/article\/improving-performance-emacs-display-engine\n(setq redisplay-dont-pause t)\n\n;;; appearance.el ends here\n","new_contents":";;; appearance.el --- Settings related to Emacs appearance\n\n;;; Commentary:\n\n;; Settings related to Emacs appearance\n\n;;; Code:\n\n;; hide the menu bar\n(menu-bar-mode 0)\n\n;; hide the scrollbars\n(scroll-bar-mode -1)\n\n;; disable the splash screen\n(setq inhibit-splash-screen t)\n\n;; load theme\n(load-theme 'gruvbox t)\n\n;; Speed up the performance of the display engine.\n;; See http:\/\/www.masteringemacs.org\/article\/improving-performance-emacs-display-engine\n(setq redisplay-dont-pause t)\n\n(set-face-attribute 'default nil\n :family \"Inconsolata\" :height 160 :weight 'regular)\n\n;;; appearance.el ends here\n","subject":"Change the font on graphical mode Emacs","message":"Change the font on graphical mode Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"caleb\/dotfiles,caleb\/dotfiles,caleb\/dotfiles"} {"commit":"adb59eab48af27e2d2d8eafb4cd9ca922c6ad280","old_file":"my-misc.el","new_file":"my-misc.el","old_contents":";; Seed the random-number generator\n(random t)\n\n;; Whitespace-style\n(setq whitespace-style '(trailing lines space-before-tab\n indentation space-after-tab)\n whitespace-line-column 100)\n\n;; Add Urban Dictionary to webjump (C-x g)\n(eval-after-load \"webjump\"\n '(add-to-list 'webjump-sites '(\"Urban Dictionary\" .\n [simple-query\n \"www.urbandictionary.com\"\n \"http:\/\/www.urbandictionary.com\/define.php?term=\"\n \"\"])))\n\n;; Various superfluous white-space. Just say no.\n(add-hook 'before-save-hook 'cleanup-buffer-safe)\n\n;; Newline after inserting closing tag in html-mode\n(defadvice sgml-close-tag (after close-tag-then-newline activate)\n (newline-and-indent))\n\n;; Add JSP expansions to html-mode\n(eval-after-load \"sgml-mode\" '(require 'jsp-expansions))\n\n;; A bit of misc cargo culting in misc.el\n(setq xterm-mouse-mode t)\n\n(provide 'my-misc)\n","new_contents":";; Seed the random-number generator\n(random t)\n\n;; Whitespace-style\n(setq whitespace-style '(trailing lines space-before-tab\n indentation space-after-tab)\n whitespace-line-column 100)\n\n;; Add Urban Dictionary to webjump (C-x g)\n(eval-after-load \"webjump\"\n '(add-to-list 'webjump-sites '(\"Urban Dictionary\" .\n [simple-query\n \"www.urbandictionary.com\"\n \"http:\/\/www.urbandictionary.com\/define.php?term=\"\n \"\"])))\n\n;; Various superfluous white-space. Just say no.\n(add-hook 'before-save-hook 'cleanup-buffer-safe)\n\n;; Newline after inserting closing tag in html-mode\n(defadvice sgml-close-tag (after close-tag-then-newline activate)\n (newline-and-indent))\n\n;; Add JSP expansions to html-mode\n(eval-after-load \"sgml-mode\" '(require 'jsp-expansions))\n\n;; A bit of misc cargo culting in misc.el\n(setq xterm-mouse-mode t)\n\n;; Fix ido-ubiquitous for newer packages\n(defmacro ido-ubiquitous-use-new-completing-read (cmd package)\n `(eval-after-load ,package\n '(defadvice ,cmd (around ido-ubiquitous-new activate)\n (let ((ido-ubiquitous-enable-compatibility nil))\n ad-do-it))))\n\n(ido-ubiquitous-use-new-completing-read webjump 'webjump)\n(ido-ubiquitous-use-new-completing-read yas\/expand 'yasnippet)\n\n\n(provide 'my-misc)\n","subject":"Fix ido-ubiquitous for newer packages","message":"Fix ido-ubiquitous for newer packages\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"9aafc69e7e429835a156856477b8ee52a122acae","old_file":"init-extension\/init-edts.el","new_file":"init-extension\/init-edts.el","old_contents":"(require 'edts-start)\n\n;; (setq edts-log-level 'debug)\n","new_contents":"(require 'edts-start)\n\n;; (setq edts-log-level 'debug)\n\n;; inherits faces from flycheck\n(custom-set-faces\n '(edts-face-error-line ((t (:inherit flycheck-error-face))))\n '(edts-face-error-mode-line ((t (:inherit flycheck-error-face-mode-line))))\n '(edts-face-warning-line ((t (:inherit flycheck-warning-face))))\n '(edts-face-warning-mode-line ((t (:inherit flycheck-warning-face-mode-line))))\n )\n","subject":"Customize edts face for on the fly syntax check (inherits from flycheck faces).","message":"Customize edts face for on the fly syntax check (inherits from flycheck faces).\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"282ecd416b6c9b91101e38b699623a468a0177b8","old_file":"lisp\/init-direnv.el","new_file":"lisp\/init-direnv.el","old_contents":";;; init-direnv.el --- Integrate with direnv -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(defun sanityinc\/maybe-enable-envrc-global-mode ()\n (when (executable-find \"direnv\")\n (envrc-global-mode)))\n\n(when (maybe-require-package 'envrc)\n (add-hook 'after-init-hook 'sanityinc\/maybe-enable-envrc-global-mode))\n\n(provide 'init-direnv)\n\n;;; init-direnv.el ends here\n","new_contents":";;; init-direnv.el --- Integrate with direnv -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(defun sanityinc\/maybe-enable-envrc-global-mode ()\n \"Enable `envrc-global-mode' if `direnv' is installed.\"\n (when (executable-find \"direnv\")\n (envrc-global-mode)))\n\n(when (maybe-require-package 'envrc)\n (after-load 'envrc\n (define-key envrc-mode-map (kbd \"C-c $\") 'envrc-command-map))\n (add-hook 'after-init-hook 'sanityinc\/maybe-enable-envrc-global-mode))\n\n(provide 'init-direnv)\n\n;;; init-direnv.el ends here\n","subject":"Add prefix binding of \"C-c $\" for commands in envrc-mode","message":"Add prefix binding of \"C-c $\" for commands in envrc-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"qianwan\/emacs.d,braveoyster\/emacs.d,baohaojun\/emacs.d,gsmlg\/emacs.d,dcorking\/emacs.d,blueseason\/emacs.d,blueabysm\/emacs.d,svenyurgensson\/emacs.d,purcell\/emacs.d,arthurl\/emacs.d,lust4life\/emacs.d,emuio\/emacs.d,krzysz00\/emacs.d,sgarciac\/emacs.d"} {"commit":"89dd2f98a420e7ce45904e2f59f73de197c32fdf","old_file":"modules\/lang\/erlang\/config.el","new_file":"modules\/lang\/erlang\/config.el","old_contents":";;; lang\/erlang\/config.el -*- lexical-binding: t; -*-\n\n(use-package! erlang\n :mode (\"\\\\.erlang\\\\'\" . erlang-mode)\n :mode (\"\/rebar\\\\.config\\\\(?:\\\\.script\\\\)?\\\\'\" . erlang-mode)\n :mode (\"\/\\\\(?:app\\\\|sys\\\\)\\\\.config\\\\'\" . erlang-mode))\n\n\n(use-package! flycheck-rebar3\n :when (featurep! :checkers syntax)\n :after flycheck\n :config (flycheck-rebar3-setup))\n\n\n(use-package! ivy-erlang-complete\n :when (featurep! :completion ivy)\n :hook (erlang-mode . ivy-erlang-complete-init)\n :config\n (add-hook! 'erlang-mode-hook\n (add-hook 'after-save-hook #'ivy-erlang-complete-reparse nil t)))\n\n\n(use-package! company-erlang\n :when (featurep! :completion company)\n :hook (erlang-mode . company-erlang-init))\n","new_contents":";;; lang\/erlang\/config.el -*- lexical-binding: t; -*-\n\n(use-package! erlang\n :mode (\"\\\\.erlang\\\\'\" . erlang-mode)\n :mode (\"\/rebar\\\\.config\\\\(?:\\\\.script\\\\)?\\\\'\" . erlang-mode)\n :mode (\"\/\\\\(?:app\\\\|sys\\\\)\\\\.config\\\\'\" . erlang-mode))\n\n\n(use-package! flycheck-rebar3\n :when (featurep! :checkers syntax)\n :after flycheck\n :config (flycheck-rebar3-setup))\n\n\n(use-package! ivy-erlang-complete\n :when (featurep! :completion ivy)\n :hook (erlang-mode . ivy-erlang-complete-init)\n :config\n (add-hook! 'erlang-mode-hook\n (add-hook 'after-save-hook #'ivy-erlang-complete-reparse nil t)))\n\n\n(use-package! company-erlang\n :when (featurep! :completion company)\n :unless (featurep! +lsp)\n :hook (erlang-mode . company-erlang-init))\n\n(when (featurep! +lsp)\n (add-hook 'erlang-mode-hook #'lsp!))\n","subject":"Add LSP Support to Erlang","message":"Add LSP Support to Erlang\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"f9b5b5fe70b7ed95b9cefc071fe80d2b482aa986","old_file":"radian-emacs\/radian-yank.el","new_file":"radian-emacs\/radian-yank.el","old_contents":";;; radian-yank.el --- Killing and yanking\n\n;; If you start typing when you have something selected, then the\n;; selection will be deleted. If you press DEL while you have\n;; something selected, it will be deleted rather than\n;; killed. (Otherwise, in both cases the selection is deselected and\n;; the normal function of the key is performed.)\n(delete-selection-mode 1)\n\n;; Make delete-selection-mode work properly with Paredit (so that, for\n;; example, pressing DEL while there is a selection will actually\n;; cause the region to be deleted, as expected). See the commentary in\n;; delsel.el for details about what is going on here.\n(with-eval-after-load 'paredit\n (put 'paredit-forward-delete 'delete-selection 'supersede)\n (put 'paredit-backward-delete 'delete-selection 'supersede)\n (put 'paredit-newline 'delete-selection t))\n\n;; Make delete-selection-mode work properly with AUCTeX.\n(with-eval-after-load 'latex\n (put 'LaTeX-insert-left-brace 'delete-selection t))\n\n;; Eliminate duplicates in the kill ring. That is, if you kill the\n;; same thing twice, you won't have to use M-y twice to get past it to\n;; older entries in the kill ring.\n(setq kill-do-not-save-duplicates t)\n\n(provide 'radian-yank)\n\n;;; radian-yank.el ends here\n","new_contents":";;; radian-yank.el --- Killing and yanking\n\n;; If you start typing when you have something selected, then the\n;; selection will be deleted. If you press DEL while you have\n;; something selected, it will be deleted rather than\n;; killed. (Otherwise, in both cases the selection is deselected and\n;; the normal function of the key is performed.)\n(delete-selection-mode 1)\n\n;; Make delete-selection-mode work properly with Paredit (so that, for\n;; example, pressing DEL while there is a selection will actually\n;; cause the region to be deleted, as expected). See the commentary in\n;; delsel.el for details about what is going on here.\n(with-eval-after-load 'paredit\n (dolist (cmd '(paredit-forward-delete paredit-backward-delete))\n (put cmd 'delete-selection 'supersede))\n (dolist (cmd '(paredit-newline\n paredit-open-round\n paredit-open-bracket\n paredit-open-curly\n paredit-open-angled\n paredit-open-parenthesis))\n (put cmd 'delete-selection t)))\n\n;; Make delete-selection-mode work properly with AUCTeX.\n(with-eval-after-load 'latex\n (put 'LaTeX-insert-left-brace 'delete-selection t))\n\n;; Eliminate duplicates in the kill ring. That is, if you kill the\n;; same thing twice, you won't have to use M-y twice to get past it to\n;; older entries in the kill ring.\n(setq kill-do-not-save-duplicates t)\n\n(provide 'radian-yank)\n\n;;; radian-yank.el ends here\n","subject":"Make delsel work with more Paredit commands","message":"Make delsel work with more Paredit commands\n","lang":"Emacs Lisp","license":"mit","repos":"raxod502\/radian,raxod502\/radian"} {"commit":"63247185daa8666818ed9e5d5574860ecfde77f3","old_file":"emacs\/ar\/ar-helm-projectile.el","new_file":"emacs\/ar\/ar-helm-projectile.el","old_contents":";;; ar-helm-projectile.el --- Helm projectile support.\n\n;;; Commentary:\n;; Helm projectile helpers.\n\n;;; Code:\n\n(require 'ar-shell)\n(require 'helm-projectile)\n\n(defun ar\/helm-projectile-shell-cd ()\n \"Change shell current working directory using helm projectile.\"\n (interactive)\n (unless (string-equal mode-name \"Shell\")\n (error \"Not in Shell mode\"))\n (let ((helm-dir-source (copy-tree helm-source-projectile-directories-list)))\n (add-to-list 'helm-dir-source '(action . ar\/shell-cd))\n (add-to-list 'helm-dir-source '(keymap . nil))\n (add-to-list 'helm-dir-source '(header-line . \"cd to directory...\"))\n (helm :sources helm-dir-source\n :buffer \"*helm-dirs*\"\n :candidate-number-limit 10000)))\n\n(provide 'ar-helm-projectile)\n\n;;; ar-helm-projectile.el ends here\n","new_contents":";;; ar-helm-projectile.el --- Helm projectile support.\n\n;;; Commentary:\n;; Helm projectile helpers.\n\n;;; Code:\n\n(require 'ar-shell)\n(require 'cl)\n(require 'helm-projectile)\n\n(defun ar\/helm-projectile-shell-cd ()\n \"Change shell current working directory using helm projectile.\"\n (interactive)\n (assert (string-equal mode-name \"Shell\") nil \"Not in Shell mode\")\n (let ((helm-dir-source (copy-tree helm-source-projectile-directories-list)))\n (add-to-list 'helm-dir-source '(action . ar\/shell-cd))\n (add-to-list 'helm-dir-source '(keymap . nil))\n (add-to-list 'helm-dir-source '(header-line . \"cd to directory...\"))\n (helm :sources helm-dir-source\n :buffer \"*helm-dirs*\"\n :candidate-number-limit 10000)))\n\n(provide 'ar-helm-projectile)\n\n;;; ar-helm-projectile.el ends here\n","subject":"Use assert instead of unless and error.","message":"Use assert instead of unless and error.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"xenodium\/dotfiles,xenodium\/dotfiles"} {"commit":"8b512aeaa2dfb383f4889f25c935821df9677ef8","old_file":"config\/language_c.el","new_file":"config\/language_c.el","old_contents":"(require 'company)\n\n;; (add-to-list 'company-backends 'company-c_headers)\n\n;; Load with `irony-mode` as a grouped backend\n;; (require 'company-irony-c-headers)\n\n(eval-after-load 'company\n'(add-to-list\n'company-backends '(company-irony-c-headers company-irony)))\n\n;; When compiler options change, call\n;; `company-irony-c-headers-reload-compiler-output` manually to\n;; reload.\n","new_contents":"(require 'company)\n\n;; (add-to-list 'company-backends 'company-c_headers)\n\n;; Load with `irony-mode` as a grouped backend\n;; (require 'company-irony-c-headers)\n\n(eval-after-load 'company\n'(add-to-list\n'company-backends '(company-irony-c-headers company-irony)))\n\n(eval-after-load 'flycheck\n '(add-hook 'flycheck-mode-hook #'flycheck-irony-setup))\n\n;; When compiler options change, call\n;; `company-irony-c-headers-reload-compiler-output` manually to\n;; reload.\n","subject":"Add flycheck-irony to C\/C++ nodes","message":"Add flycheck-irony to C\/C++ nodes\n","lang":"Emacs Lisp","license":"unlicense","repos":"schanur\/emacs.d"} {"commit":"a332a8f043c8457fb23e709eb68722db4de6d237","old_file":"setup-files\/setup-page-break-lines.el","new_file":"setup-files\/setup-page-break-lines.el","old_contents":";; Time-stamp: <2015-02-23 11:42:33 kmodi>\n\n(use-package page-break-lines\n :config\n (progn\n (setq page-break-lines-modes\n '(emacs-lisp-mode\n lisp-mode\n scheme-mode\n compilation-mode\n outline-mode\n help-mode\n text-mode))\n ;; Calling `global-page-break-lines-mode' will enable `page-break-mode'\n ;; automatically in all the modes listed in `page-break-lines-modes' var\n (global-page-break-lines-mode)))\n\n\n(provide 'setup-page-break-lines)\n","new_contents":";; Time-stamp: <2015-05-06 11:50:36 kmodi>\n\n;; Show actual lines instead of the page break char ^L\n;; https:\/\/github.com\/purcell\/page-break-lines\n\n(use-package page-break-lines\n :config\n (progn\n (setq page-break-lines-modes\n '(emacs-lisp-mode\n lisp-mode\n scheme-mode\n compilation-mode\n outline-mode\n help-mode\n text-mode\n fundamental-mode\n special-mode))\n ;; Calling `global-page-break-lines-mode' will enable `page-break-mode'\n ;; automatically in all the modes listed in `page-break-lines-modes' var\n (global-page-break-lines-mode)))\n\n\n(provide 'setup-page-break-lines)\n","subject":"Enable pgbl mode for more major modes","message":"Change: Enable pgbl mode for more major modes\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"62d874157b71d3507e91d6949cdd8f7a39ec50f5","old_file":"playbooks\/ghc\/files\/.emacs.d\/haskell.el","new_file":"playbooks\/ghc\/files\/.emacs.d\/haskell.el","old_contents":"(check-packages '(haskell-mode ghc))\n\n(require 'auto-complete)\n(require 'haskell-mode)\n(require 'haskell-indent)\n(autoload 'ghc-init \"ghc\" nil t)\n\n(defun my-haskell-config ()\n \"Haskell config\"\n (turn-on-haskell-indent)\n (auto-complete-mode)\n (ghc-init)\n (add-hook 'after-save-hook 'flymake-start-syntax-check)\n (define-key move-mode-map (kbd \"?\") 'ghc-flymake-display-errors)\n (linum-mode))\n\n(add-hook 'haskell-mode-hook 'my-haskell-config)\n\n(custom-set-variables\n '(flymake-log-level 2))\n","new_contents":"(check-packages '(haskell-mode ghc))\n\n(require 'auto-complete)\n(require 'haskell-mode)\n(require 'haskell-indent)\n(autoload 'ghc-init \"ghc\" nil t)\n\n(defun my-haskell-config ()\n \"Haskell config\"\n (turn-on-haskell-indent)\n (auto-complete-mode)\n (ghc-init)\n (add-hook 'after-save-hook 'flymake-start-syntax-check)\n (define-key move-mode-map (kbd \"?\") 'ghc-flymake-display-errors)\n (define-key move-mode-map (kbd \">\") 'flymake-goto-next-error)\n (define-key move-mode-map (kbd \"<\") 'flymake-goto-prev-error)\n (linum-mode))\n\n(add-hook 'haskell-mode-hook 'my-haskell-config)\n\n(custom-set-variables\n '(flymake-log-level 2))\n","subject":"Add flymake next and prev errors","message":"Add flymake next and prev errors\n","lang":"Emacs Lisp","license":"mit","repos":"ostapneko\/dev-config"} {"commit":"b5c037f6b1cd54f72c3575c33adb2bcdaae678d7","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"((nil\n (indent-tabs-mode . nil)\n (tab-width . 8)\n (c-basic-offset . 3)\n (c-file-style . \"stroustrup\")\n (eval . (progn\n\t (c-set-offset 'innamespace '0)\n\t (c-set-offset 'inline-open '0)))\n )\n )\n","new_contents":"((nil\n (indent-tabs-mode . nil)\n (tab-width . 8)\n (c-basic-offset . 3)\n (c-file-style . \"stroustrup\")\n (fill-column . 78)\n (eval . (progn\n\t (c-set-offset 'innamespace '0)\n\t (c-set-offset 'inline-open '0)))\n )\n )\n","subject":"Add emacs setup for the docs\/devinfo.html comment wrapping recommendation.","message":"Add emacs setup for the docs\/devinfo.html comment wrapping recommendation.\n\nReviewed-by: Brian Paul <3cb4e1df5ec4da2c7c4af7c52cec8cf340a55a10@vmware.com>\n","lang":"Emacs Lisp","license":"mit","repos":"dellis1972\/glsl-optimizer,mapbox\/glsl-optimizer,bkaradzic\/glsl-optimizer,mcanthony\/glsl-optimizer,wolf96\/glsl-optimizer,zz85\/glsl-optimizer,zz85\/glsl-optimizer,tokyovigilante\/glsl-optimizer,bkaradzic\/glsl-optimizer,mcanthony\/glsl-optimizer,djreep81\/glsl-optimizer,wolf96\/glsl-optimizer,wolf96\/glsl-optimizer,zz85\/glsl-optimizer,tokyovigilante\/glsl-optimizer,mapbox\/glsl-optimizer,zz85\/glsl-optimizer,zeux\/glsl-optimizer,benaadams\/glsl-optimizer,zz85\/glsl-optimizer,jbarczak\/glsl-optimizer,metora\/MesaGLSLCompiler,metora\/MesaGLSLCompiler,bkaradzic\/glsl-optimizer,benaadams\/glsl-optimizer,dellis1972\/glsl-optimizer,jbarczak\/glsl-optimizer,dellis1972\/glsl-optimizer,mcanthony\/glsl-optimizer,zz85\/glsl-optimizer,jbarczak\/glsl-optimizer,jbarczak\/glsl-optimizer,jbarczak\/glsl-optimizer,mcanthony\/glsl-optimizer,mapbox\/glsl-optimizer,dellis1972\/glsl-optimizer,bkaradzic\/glsl-optimizer,djreep81\/glsl-optimizer,djreep81\/glsl-optimizer,djreep81\/glsl-optimizer,metora\/MesaGLSLCompiler,zeux\/glsl-optimizer,zeux\/glsl-optimizer,bkaradzic\/glsl-optimizer,mcanthony\/glsl-optimizer,wolf96\/glsl-optimizer,djreep81\/glsl-optimizer,zeux\/glsl-optimizer,wolf96\/glsl-optimizer,mapbox\/glsl-optimizer,tokyovigilante\/glsl-optimizer,dellis1972\/glsl-optimizer,tokyovigilante\/glsl-optimizer,mapbox\/glsl-optimizer,zeux\/glsl-optimizer,benaadams\/glsl-optimizer,benaadams\/glsl-optimizer,benaadams\/glsl-optimizer,tokyovigilante\/glsl-optimizer,benaadams\/glsl-optimizer"} {"commit":"a5930a21879a48a1a8455722151fbc6dab311154","old_file":"modules\/lang\/ess\/packages.el","new_file":"modules\/lang\/ess\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; lang\/ess\/packages.el\n\n(package! ess :pin \"2812b85880\")\n(package! ess-R-data-view :pin \"d6e98d3ae1\")\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; lang\/ess\/packages.el\n\n(package! ess :pin \"2812b85880\")\n(package! ess-R-data-view :pin \"d6e98d3ae1\")\n(package! polymode :pin \"3eab3c9eed\")\n(package! poly-R :pin \"0443c89b4d\")\n","subject":"Add polymode to handle RMarkdown and RNoweb files","message":"Add polymode to handle RMarkdown and RNoweb files\n\nAs of ESS 19+, ess-noweb and ess-swv libraries are now obsolete, and\npolymode should be used instead (https:\/\/emacs.stackexchange.com\/a\/17065).\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d"} {"commit":"a0fd4359b250a6bbcda999abb14320d05c70c7a1","old_file":"radian-emacs\/radian-patch.el","new_file":"radian-emacs\/radian-patch.el","old_contents":";;; radian-patch.el --- Patching functions in other packages\n\n(require 'radian-package)\n\n;; Occasionally you need to customize a small part of a large function\n;; defined by another package. This library provides an elegant,\n;; clear, and robust way of doing so. See the README [1].\n;;\n;; [1]: https:\/\/github.com\/raxod502\/el-patch\n(use-package el-patch\n :straight (:host github\n :repo \"raxod502\/el-patch\"\n :branch \"develop\")\n :config\n\n ;; When patching variable definitions, override the original values.\n (setq el-patch-use-aggressive-defvar t)\n\n ;; Support for deferred installation in `el-patch-validate-all'.\n\n (defun radian-require-with-deferred-install (feature &rest args)\n \"Require FEATURE, installing PACKAGE if necessary.\n\n\\(fn FEATURE &optional PACKAGE)\"\n (let ((package feature))\n (when args\n (setq package (car args)))\n (when package\n (use-package-install-deferred-package package :el-patch))\n (require feature)))\n\n (setq el-patch-require-function #'radian-require-with-deferred-install))\n\n(provide 'radian-patch)\n\n;;; radian-patch.el ends here\n","new_contents":";;; radian-patch.el --- Patching functions in other packages\n\n(require 'radian-package)\n\n;; Occasionally you need to customize a small part of a large function\n;; defined by another package. This library provides an elegant,\n;; clear, and robust way of doing so. See the README [1].\n;;\n;; [1]: https:\/\/github.com\/raxod502\/el-patch\n(use-package el-patch\n :straight (:host github\n :repo \"raxod502\/el-patch\"\n :branch \"develop\")\n :config\n\n ;; When patching variable definitions, override the original values.\n (setq el-patch-use-aggressive-defvar t))\n\n(provide 'radian-patch)\n\n;;; radian-patch.el ends here\n","subject":"Remove el-patch deferred installation support","message":"Remove el-patch deferred installation support\n","lang":"Emacs Lisp","license":"mit","repos":"raxod502\/radian,raxod502\/radian"} {"commit":"415ebb2f012c4e2c943bea7d80468c0457e4d1cf","old_file":"_packages.el","new_file":"_packages.el","old_contents":";; Add melpa to package repos\n\n(setq package-archives '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t\t\t (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\")))\n(package-initialize)\n\n;; Setup packages\n(require 'setup-package)\n\n;; Install extensions if they're missing\n(defun init--install-packages ()\n (packages-install\n '(zenburn-theme\n heroku-theme\n undo-tree\n smooth-scrolling\n flx\n flx-ido\n ido-vertical-mode\n ido-ubiquitous\n ido-at-point\n smex\n magit\n magit-log-edit ;; old commit mode (new one opens in new frame 28\/10\/2013\n s\n editorconfig\n projectile\n web-mode\n )))\n\n(condition-case nil\n (init--install-packages)\n (error\n (package-refresh-contents)\n (init--install-packages)))\n\n;; simple requires\n(require 'editorconfig)\n\n\n;; now configure some packages in their own .el file\n(require 'setup-ido)\n(require 'setup-projectile)\n(require 'setup-webmode)\n;;(require 'setup-magit)\n\n(provide '_packages)\n\n","new_contents":";; Add melpa to package repos\n\n(setq package-archives '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t\t\t (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\")))\n(package-initialize)\n\n;; Setup packages\n(require 'setup-package)\n\n;; Install extensions if they're missing\n(defun init--install-packages ()\n (packages-install\n '(zenburn-theme\n heroku-theme\n undo-tree\n smooth-scrolling\n flx\n flx-ido\n ido-vertical-mode\n ido-ubiquitous\n ido-at-point\n smex\n magit\n magit-log-edit ;; old commit mode (new one opens in new frame 28\/10\/2013\n s\n editorconfig\n projectile\n web-mode\n spaces\n )))\n\n(condition-case nil\n (init--install-packages)\n (error\n (package-refresh-contents)\n (init--install-packages)))\n\n;; simple requires\n(require 'editorconfig)\n(require 'spaces)\n\n;; now configure some packages in their own .el file\n(require 'setup-ido)\n(require 'setup-projectile)\n(require 'setup-webmode)\n;;(require 'setup-magit)\n\n(provide '_packages)\n\n","subject":"Add spaces (save and restore window configs)","message":"Add spaces (save and restore window configs)\n","lang":"Emacs Lisp","license":"unlicense","repos":"jeroentbt\/.emacs.d"} {"commit":"4ee502e36ffe281bca7bd6f3b43b79a421882e5d","old_file":"init-anything.el","new_file":"init-anything.el","old_contents":"(require 'anything-config)\n\n;; From http:\/\/www.emacswiki.org\/cgi-bin\/wiki\/AnythingSources\n(defvar anything-c-source-occur\n '((name . \"Occur\")\n (init . (lambda ()\n (setq anything-occur-current-buffer\n (current-buffer))))\n (candidates . (lambda ()\n (let ((anything-occur-buffer (get-buffer-create \"*Anything Occur*\")))\n (with-current-buffer anything-occur-buffer\n (occur-mode)\n (erase-buffer)\n (let ((count (occur-engine anything-pattern\n (list anything-occur-current-buffer) anything-occur-buffer\n list-matching-lines-default-context-lines case-fold-search\n list-matching-lines-buffer-name-face\n nil list-matching-lines-face\n (not (eq occur-excluded-properties t)))))\n (when (> count 0)\n (setq next-error-last-buffer anything-occur-buffer)\n (cdr (split-string (buffer-string) \"\\n\" t))))))))\n (action . ((\"Goto line\" . (lambda (candidate)\n (with-current-buffer \"*Anything Occur*\"\n (search-forward candidate))\n (goto-line (string-to-number candidate) anything-occur-current-buffer)))))\n (requires-pattern . 3)\n (volatile)\n (delayed)))\n\n\n(setq anything-sources\n '(anything-c-source-buffers\n anything-c-source-recentf\n anything-c-source-occur\n anything-c-source-files-in-current-dir\n anything-c-source-emacs-commands\n anything-c-source-emacs-functions))\n\n(setq anything-samewindow nil)\n(setq anything-input-idle-delay 0.05)\n\n(global-set-key [\\M-f10] 'anything)\n\n\n(provide 'init-anything)\n","new_contents":"(require 'anything-config)\n\n(setq anything-sources\n '(anything-c-source-buffers\n anything-c-source-recentf\n anything-c-source-occur\n anything-c-source-files-in-current-dir\n anything-c-source-emacs-commands\n anything-c-source-emacs-functions))\n\n(setq anything-samewindow nil)\n(setq anything-input-idle-delay 0.05)\n\n(global-set-key [\\M-f10] 'anything)\n\n\n(provide 'init-anything)\n","subject":"Remove local anything-c-source-occur defn, which is now part of anything-config","message":"Remove local anything-c-source-occur defn, which is now part of anything-config\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"ernest-dzf\/emacs.d,danfengcao\/emacs.d,gsmlg\/emacs.d,cyjia\/emacs.d,purcell\/emacs.d,exclamaforte\/emacs.d,jthetzel\/emacs.d,Shanicky\/emacs.d,kongfy\/emacs.d,zuoshifan\/emacs.d,wegatron\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,LittleLmp\/emacs.d,Jadecity\/PurcellEmacs.d,braveoyster\/emacs.d,qinshulei\/emacs.d,Enzo-Liu\/emacs.d,zuoshifan\/emacs.d,caoyuanqi\/emacs.d,cjqw\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,baohaojun\/emacs.d,ruiyang\/emacs.d,blueseason\/emacs.d,zuoshifan\/emacs.d,LKI\/emacs.d,wenpincui\/emacs.d,qianwan\/emacs.d,renatoriccio\/emacs.d,svenyurgensson\/emacs.d,zuoshifan\/emacs.d,DarkThrone\/emacs.d,jachinpy\/emacs.d,scorpionis\/emacs.d,blueabysm\/emacs.d,Guoozz\/emacs.d,farzadbekran\/emacs.d,jkaessens\/emacs.d,zhuoyikang\/emacs.d,mmqmzk\/emacs.d,zuoshifan\/emacs.d,lromang\/emacs.d,sgarciac\/emacs.d,haodaivshen\/emacs.d,me020523\/emacs.d,bibaijin\/emacs.d,arthurl\/emacs.d,modkzs\/emcs.d,hkcqr\/emacs.d,dcorking\/emacs.d,shafayetkhan\/emacs.d,zhaotai\/.emacs.d,Werewolflsp\/emacs.d,ilove0518\/emacs.d,carlosliu\/emacs.d,atreeyang\/emacs.d,krzysz00\/emacs.d,whizzzkid\/emacs.d,jachinpy\/emacs.d,kindoblue\/emacs.d,roxolan\/emacs.d,lujianmei\/emacs.d,YangXin\/emacs.d,boblannon\/emacs.d,Togal\/emacs.d,ruiyang\/emacs.d,zuoshifan\/emacs.d,YangXin\/emacs.d,pairyo\/emacs.d,zuoshifan\/emacs.d,dongdonghu\/.emacs.d,alant\/emacs.d,dhanunjaya\/emacs.d,jhpx\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,hophacker\/emacs.d,fengxl\/emacs.d,zenith-john\/emacs.d,emuio\/emacs.d,mpwang\/emacs.d,46do14\/emacs.d,benkha\/emacs.d,lust4life\/emacs.d"} {"commit":"00ddb4d8509d6b0847b475106acdbb6f3a1fffc8","old_file":"config\/language_bitbake.el","new_file":"config\/language_bitbake.el","old_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n(require 'bitbake)\n\nsddsf\n(add-tsdfo-list 'auto-mode-alist '(\"\\\\.bb\\\\'\" . bitbake-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.bbappend\\\\'\" . bitbake-mode))\n","new_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n(require 'bitbake)\n\n(add-to-list 'auto-mode-alist '(\"\\\\.bb\\\\'\" . bitbake-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.bbappend\\\\'\" . bitbake-mode))\n","subject":"Fix syntax error in bitbake config file","message":"Fix syntax error in bitbake config file\n","lang":"Emacs Lisp","license":"unlicense","repos":"schanur\/emacs.d"} {"commit":"87d74bf5867be4c2d691ed83151825f527b885b6","old_file":"emacs\/pyjab.el","new_file":"emacs\/pyjab.el","old_contents":";;; pyjab.el --- control purple-powered IM clients from emacs using pyjab\n\n;; Copyright (C) 2011 - Jérémie Roquet\n\n;; Author: Jérémie Roquet \n;; Maintainer: Jérémie Roquet \n;; Version: 0.1\n;; Keywords: purple jabber client chat\n;; URL: http:\/\/github.com\/Arkanosis\/pyjab\n\n(defun pyjab_send()\n (interactive)\n (let (recipients)\n (mapc\n (lambda (recipient)\n\t(push recipient recipients))\n (split-string\n (shell-command-to-string \"pyjab \\\\*\")\n\t\",\"))\n (princ\n (shell-command-to-string\n (format\n \t \"pyjab %s \\\"%s\\\"\"\n\t (ido-completing-read \"recipient: \" recipients)\n\t (if\n\t mark-active\n\t (buffer-substring\n\t (region-beginning)\n\t (region-end))\n\t (read-string \"message: \" \"\" nil \"\" nil)))))))\n\n(provide 'pyjab)\n\n;;; ansi-color.el ends here\n","new_contents":";;; pyjab.el --- control purple-powered IM clients from emacs using pyjab\n\n;; Copyright (C) 2011 - Jérémie Roquet\n\n;; Author: Jérémie Roquet \n;; Maintainer: Jérémie Roquet \n;; Version: 0.1\n;; Keywords: purple jabber client chat\n;; URL: http:\/\/github.com\/Arkanosis\/pyjab\n\n(defun pyjab_send()\n (interactive)\n (let (recipients)\n (mapc\n (lambda (recipient)\n\t(push recipient recipients))\n (split-string\n (shell-command-to-string \"pyjab \\\\*\")\n\t\",\"))\n (princ\n (shell-command-to-string\n (format\n \t \"pyjab %s \\\"%s\\\"\"\n\t (ido-completing-read \"recipient: \" recipients)\n\t (if\n\t mark-active\n\t (buffer-substring\n\t (region-beginning)\n\t (region-end))\n\t (read-string \"message: \" \"\" nil \"\" nil)))))))\n\n(provide 'pyjab)\n\n;;; pyjab.el ends here\n","subject":"Fix the comment at the end of the emacs module","message":"Fix the comment at the end of the emacs module\r\n\r\nThe module is of course pyjab.el","lang":"Emacs Lisp","license":"mit","repos":"Arkanosis\/pyjab"} {"commit":"7d86121913f8c88c42cee59990b9accdc56184c3","old_file":"init-package\/init-flycheck.el","new_file":"init-package\/init-flycheck.el","old_contents":"(require 'flycheck)\n\n(dolist (mode '(elixir\n json\n python\n ruby))\n(add-hook (intern (concat (symbol-name mode) \"-mode-hook\"))\n\t\t 'flycheck-mode))\n\n(setq flycheck-check-syntax-automatically '(save mode-enabled))\n","new_contents":"(require 'flycheck)\n\n(dolist (mode '(c\n elixir\n json\n python\n ruby))\n(add-hook (intern (concat (symbol-name mode) \"-mode-hook\"))\n\t\t 'flycheck-mode))\n\n(setq flycheck-check-syntax-automatically '(save mode-enabled))\n","subject":"Add flycheck support for c-mode","message":"Add flycheck support for c-mode\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"b2175d4dca84aa245cd60062bab74c2debc4bc64","old_file":"modules\/my-snippets.el","new_file":"modules\/my-snippets.el","old_contents":";;; my-snippets.el --- Snippets settings & customisations -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(use-package yasnippet\n :defer t\n :config\n (yas-global-mode 1)\n :diminish\n (yas-minor-mode))\n\n(provide 'my-snippets)\n\n;;; my-snippets.el ends here\n\n","new_contents":";;; my-snippets.el --- Snippets settings & customisations -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(use-package yasnippet\n :defer t\n :config\n (yas-global-mode 1)\n :diminish\n (yas-minor-mode))\n\n(use-package yasnippet-snippets\n :after yasnippet)\n\n(provide 'my-snippets)\n\n;;; my-snippets.el ends here\n\n","subject":"Add official yasnippet snippets collection","message":"Add official yasnippet snippets collection\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"timanin\/emacs.d"} {"commit":"cda41d9043f5fa8fc582315e0023366af96be7d3","old_file":"init-package\/init-fill-column-indicator.el","new_file":"init-package\/init-fill-column-indicator.el","old_contents":"(require 'fill-column-indicator)\n\n(setq fci-rule-column 79)\n(setq fci-rule-width 1)\n(setq fci-enabled 0)\n\n(defun toggle-fill-column-indicator ()\n (interactive)\n (make-local-variable 'fci-enabled)\n (if (> fci-enabled 0) (deactivate-fci) (activate-fci)))\n\n(defun activate-fci ()\n (setq fci-enabled 1)\n (fci-mode 1))\n\n(defun deactivate-fci ()\n (setq fci-enabled 0)\n (fci-mode 0))\n","new_contents":"(require 'fill-column-indicator)\n\n(setq fci-rule-width 1)\n(setq fci-enabled 0)\n\n(defun toggle-fill-column-indicator ()\n (interactive)\n (make-local-variable 'fci-enabled)\n (if (> fci-enabled 0) (deactivate-fci) (activate-fci)))\n\n(defun activate-fci ()\n (setq fci-rule-column 79)\n (setq fci-enabled 1)\n (fci-mode 1))\n\n(defun deactivate-fci ()\n (setq fci-enabled 0)\n (fci-mode 0))\n","subject":"Fix correct column to highlight with fill-column-indicator","message":"Fix correct column to highlight with fill-column-indicator\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"0cffce600ebcda2a8a96ea25dc5b2c68a2326697","old_file":"dotfiles\/spacemacs.d\/sql-indent-config.el","new_file":"dotfiles\/spacemacs.d\/sql-indent-config.el","old_contents":"(defun configure-sql-indentation ()\n \"Configure the indentation settings for `sqlind-minor-mode'.\"\n (require 'sql-indent-left)\n (setq\n sqlind-basic-offset 2\n sqlind-indentation-offsets-alist\n `((in-select-clause +)\n (select-join-condition +)\n (nested-statement-open sqlind-use-anchor-indentation +)\n (nested-statement-continuation sqlind-use-anchor-indentation +)\n (create-statement 0) ;; For ALTER TABLE actions\n ,@sqlind-indentation-left-offsets-alist)))\n(add-hook 'sqlind-minor-mode-hook 'configure-sql-indentation)\n","new_contents":"(defun configure-sql-indentation ()\n \"Configure the indentation settings for `sqlind-minor-mode'.\"\n (require 'sql-indent-left)\n (setq\n sqlind-basic-offset 2\n sqlind-indentation-offsets-alist\n `((in-select-clause +)\n (select-join-condition +)\n (nested-statement-open sqlind-use-anchor-indentation +)\n (nested-statement-continuation sqlind-use-anchor-indentation +)\n (create-statement 0) ;; For ALTER TABLE actions\n (in-update-clause +)\n ,@sqlind-indentation-left-offsets-alist)))\n(add-hook 'sqlind-minor-mode-hook 'configure-sql-indentation)\n","subject":"Indent continuations of UPDATE clauses","message":"Indent continuations of UPDATE clauses\n","lang":"Emacs Lisp","license":"mit","repos":"razzolini\/dotfiles,razzolini\/dotfiles,razzolini\/dotfiles"} {"commit":"fbaeea38a06fa22f6d91ff71b936f4765969f0bd","old_file":"emacs.d\/init.el","new_file":"emacs.d\/init.el","old_contents":"(require 'package)\n(add-to-list 'package-archives '(\"melpa\" . \"http:\/\/melpa.org\/packages\/\") t)\n(package-initialize)\n\n(require 'evil)\n(evil-mode t)\n\n(require 'org)\n(setq org-log-done t)\n","new_contents":"(require 'package)\n(add-to-list 'package-archives '(\"melpa\" . \"http:\/\/melpa.org\/packages\/\") t)\n(package-initialize)\n\n(require 'evil)\n(evil-mode t)\n\n(require 'org)\n(setq org-log-done t)\n\n(menu-bar-mode -1)\n","subject":"Disable the emacs menu bar","message":"Disable the emacs menu bar\n","lang":"Emacs Lisp","license":"mit","repos":"alcesleo\/dotfiles,alcesleo\/dotfiles"} {"commit":"a4b516cd479c94dc47cb9c063c91859b235b3ad6","old_file":"init-anything.el","new_file":"init-anything.el","old_contents":"(require 'anything-config)\n\n(setq anything-sources\n '(anything-c-source-org-headline\n anything-c-source-buffers\n anything-c-source-recentf\n anything-c-source-files-in-current-dir\n anything-c-source-lacarte\n anything-c-source-emacs-commands\n anything-c-source-emacs-functions\n anything-c-source-minibuffer-history))\n\n(setq anything-samewindow nil)\n(setq anything-input-idle-delay 0.2)\n\n(global-set-key [\\M-f10] 'anything-at-point) ;; With C-u prefix, starts with symbol at point\n\n\n(provide 'init-anything)\n","new_contents":"(require 'anything-config)\n\n(setq anything-sources\n '(anything-c-source-ctags\n anything-c-source-org-headline\n anything-c-source-buffers\n anything-c-source-recentf\n anything-c-source-files-in-current-dir\n anything-c-source-lacarte\n anything-c-source-emacs-commands\n anything-c-source-emacs-functions\n anything-c-source-minibuffer-history))\n\n(setq anything-samewindow nil)\n(setq anything-input-idle-delay 0.2)\n\n(add-to-list 'anything-c-ctags-modes 'ruby-mode)\n\n(global-set-key [\\M-f10] 'anything-at-point) ;; With C-u prefix, starts with symbol at point\n\n\n(provide 'init-anything)\n","subject":"Enable ctags support in anything.el, and add ruby-mode to the list of supported modes","message":"Enable ctags support in anything.el, and add ruby-mode to the list of supported modes\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"jachinpy\/emacs.d,roxolan\/emacs.d,jachinpy\/emacs.d,46do14\/emacs.d,alant\/emacs.d,farzadbekran\/emacs.d,ilove0518\/emacs.d,ruiyang\/emacs.d,kongfy\/emacs.d,cjqw\/emacs.d,Togal\/emacs.d,lujianmei\/emacs.d,modkzs\/emcs.d,ruiyang\/emacs.d,arthurl\/emacs.d,zuoshifan\/emacs.d,whizzzkid\/emacs.d,gsmlg\/emacs.d,zuoshifan\/emacs.d,dcorking\/emacs.d,benkha\/emacs.d,mmqmzk\/emacs.d,renatoriccio\/emacs.d,braveoyster\/emacs.d,LKI\/emacs.d,cyjia\/emacs.d,jthetzel\/emacs.d,ernest-dzf\/emacs.d,wenpincui\/emacs.d,zuoshifan\/emacs.d,boblannon\/emacs.d,farzadbekran\/emacs.d,Jadecity\/PurcellEmacs.d,sgarciac\/emacs.d,dhanunjaya\/emacs.d,zuoshifan\/emacs.d,dongdonghu\/.emacs.d,mpwang\/emacs.d,YangXin\/emacs.d,zuoshifan\/emacs.d,shafayetkhan\/emacs.d,qianwan\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,YangXin\/emacs.d,farzadbekran\/emacs.d,Guoozz\/emacs.d,DarkThrone\/emacs.d,caoyuanqi\/emacs.d,blueseason\/emacs.d,baohaojun\/emacs.d,Shanicky\/emacs.d,atreeyang\/emacs.d,zenith-john\/emacs.d,carlosliu\/emacs.d,zuoshifan\/emacs.d,zhuoyikang\/emacs.d,zhaotai\/.emacs.d,me020523\/emacs.d,zuoshifan\/emacs.d,danfengcao\/emacs.d,qinshulei\/emacs.d,haodaivshen\/emacs.d,zuoshifan\/emacs.d,wegatron\/emacs.d,blueabysm\/emacs.d,purcell\/emacs.d,farzadbekran\/emacs.d,Enzo-Liu\/emacs.d,kindoblue\/emacs.d,lromang\/emacs.d,lust4life\/emacs.d,pairyo\/emacs.d,exclamaforte\/emacs.d,emuio\/emacs.d,jkaessens\/emacs.d,bibaijin\/emacs.d,hophacker\/emacs.d,svenyurgensson\/emacs.d,fengxl\/emacs.d,scorpionis\/emacs.d,jhpx\/emacs.d,Werewolflsp\/emacs.d,krzysz00\/emacs.d,LittleLmp\/emacs.d,hkcqr\/emacs.d"} {"commit":"22782283e14a36635969d8b2011b484d54cbab3c","old_file":"home\/.emacs.d\/lisp\/init-flycheck.el","new_file":"home\/.emacs.d\/lisp\/init-flycheck.el","old_contents":";;; init-flycheck.el -- Flycheck setup\n\n;;; Commentary:\n;;; Load Flycheck and define custom checkers\n\n;;; Code:\n(use-package flycheck\n :config\n (flycheck-def-config-file-var flycheck-haml-lintrc haml-lint \".haml-lint.yml\"\n :safe #'stringp)\n (flycheck-define-checker haml-lint\n \"Haml style checker using haml-lint\nSee URL https:\/\/github.com\/brigade\/haml-lint\"\n :command (\"~\/haml-lint.sh\"\n (config-file \"--config\" flycheck-haml-lintrc)\n source)\n :error-patterns\n ((warning line-start\n (file-name) \":\" line \" [W] \" (message)\n line-end))\n :modes (haml-mode))\n (add-to-list 'flycheck-checkers 'haml-lint)\n :init\n (add-hook 'after-init-hook #'global-flycheck-mode)\n :diminish flycheck-mode)\n\n(provide 'init-flycheck)\n;;; init-flycheck.el ends here\n","new_contents":";;; init-flycheck.el -- Flycheck setup\n\n;;; Commentary:\n;;; Load Flycheck and define custom checkers\n\n;;; Code:\n(use-package flycheck\n :config\n (flycheck-def-config-file-var flycheck-haml-lintrc haml-lint \".haml-lint.yml\" :safe #'stringp)\n (flycheck-define-checker haml-lint\n \"Haml style checker using haml-lint\nSee URL https:\/\/github.com\/brigade\/haml-lint\"\n :command (\"~\/haml-lint.sh\"\n (config-file \"--config\" flycheck-haml-lintrc)\n source)\n :error-patterns\n ((warning line-start\n (file-name) \":\" line \" [W] \" (message)\n line-end))\n :modes (haml-mode))\n (add-to-list 'flycheck-checkers 'haml-lint)\n (bind-key \"s-f\" (defhydra flycheck-hydra ()\n \"errors\"\n (\"n\" flycheck-next-error \"next\")\n (\"p\" flycheck-previous-error \"previous\")\n (\"q\" nil \"quit\"))\n flycheck-mode-map)\n :init\n (add-hook 'after-init-hook #'global-flycheck-mode)\n :diminish flycheck-mode)\n\n(provide 'init-flycheck)\n;;; init-flycheck.el ends here\n","subject":"Add a hydra to Flycheck","message":"Add a hydra to Flycheck\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"0b1311a22769bd4ea0cce819f37a5bce143f959c","old_file":"Emacs\/init.el","new_file":"Emacs\/init.el","old_contents":";; Gosin's Emacs Configuration 2021\/01\/09\n;; add ELPA and MELPA package repos\n(setq package-archives\n '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t(\"melpa\" . \"http:\/\/melpa.org\/packages\/\")))\n\n;; user solarized dark color theme\n(add-to-list 'custom-theme-load-path \"~\/.emacs.d\/solarized_theme\")\n(set-terminal-parameter nil 'background-mode 'dark)\n(set-frame-parameter nil 'background-mode 'dark)\n(load-theme 'solarized t)\n\n;; define three useful commands(from org guide)\n(global-set-key (kbd \"C-c l\") 'org-store-link)\n(global-set-key (kbd \"C-c a\") 'org-agenda)\n(global-set-key (kbd \"C-c c\") 'org-capture)\n\n(custom-set-variables\n ;; score apropos results by relavance.\n '(apropos-sort-by-scores t)\n ;; show line numbers\n '(global-display-line-numbers-mode t))\n","new_contents":";; Gosin's Emacs Configuration 2021\/01\/09\n;; add ELPA and MELPA package repos\n(setq package-archives\n '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t(\"melpa\" . \"http:\/\/melpa.org\/packages\/\")))\n\n;; user solarized dark color theme\n(add-to-list 'custom-theme-load-path \"~\/.emacs.d\/solarized_theme\")\n(set-terminal-parameter nil 'background-mode 'dark)\n(set-frame-parameter nil 'background-mode 'dark)\n(load-theme 'solarized t)\n\n;; define three useful commands(from org guide)\n(global-set-key (kbd \"C-c l\") 'org-store-link)\n(global-set-key (kbd \"C-c a\") 'org-agenda)\n(global-set-key (kbd \"C-c c\") 'org-capture)\n\n(custom-set-variables\n ;; score apropos results by relavance.\n '(apropos-sort-by-scores t)\n ;; show line numbers.\n '(global-display-line-numbers-mode t)\n ;; save back up files to temporary directories.\n '(backup-directory-alist `((\".*\" . ,temporary-file-directory))))\n","subject":"Store back up files to temp directory for Emacs","message":"Store back up files to temp directory for Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"Gosin\/Vim4Gosin"} {"commit":"d06f12bc431336921285d40bbbf4d2b83c0d1345","old_file":"init-csv.el","new_file":"init-csv.el","old_contents":"(require-package 'csv-mode)\n(require-package 'csv-nav)\n\n(add-auto-mode 'csv-mode \"\\\\.[Cc][Ss][Vv]\\\\'\")\n(autoload 'csv-nav-mode \"csv-nav\" \"Major mode for navigating comma-separated value files.\" t)\n\n(setq csv-separators '(\",\" \";\" \"|\" \" \"))\n\n(provide 'init-csv)\n","new_contents":"(require-package 'csv-mode)\n(require-package 'csv-nav)\n\n(add-auto-mode 'csv-mode \"\\\\.[Cc][Ss][Vv]\\\\'\")\n\n(setq csv-separators '(\",\" \";\" \"|\" \" \"))\n\n(provide 'init-csv)\n","subject":"Remove redundant autoload for csv-nav-mode (fixed upstream)","message":"Remove redundant autoload for csv-nav-mode (fixed upstream)\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"kongfy\/emacs.d,Togal\/emacs.d,danfengcao\/emacs.d,alant\/emacs.d,zenith-john\/emacs.d,kindoblue\/emacs.d,ruiyang\/emacs.d,Guoozz\/emacs.d,jachinpy\/emacs.d,jachinpy\/emacs.d,farzadbekran\/emacs.d,jkaessens\/emacs.d,qinshulei\/emacs.d,ruiyang\/emacs.d,farzadbekran\/emacs.d,emuio\/emacs.d,mmqmzk\/emacs.d,fengxl\/emacs.d,whizzzkid\/emacs.d,wenpincui\/emacs.d,qianwan\/emacs.d,DarkThrone\/emacs.d,arthurl\/emacs.d,braveoyster\/emacs.d,Shanicky\/emacs.d,cjqw\/emacs.d,carlosliu\/emacs.d,cyjia\/emacs.d,ilove0518\/emacs.d,LKI\/emacs.d,svenyurgensson\/emacs.d,hkcqr\/emacs.d,haodaivshen\/emacs.d,Werewolflsp\/emacs.d,gsmlg\/emacs.d,zhaotai\/.emacs.d,atreeyang\/emacs.d,baohaojun\/emacs.d,farzadbekran\/emacs.d,scorpionis\/emacs.d,shafayetkhan\/emacs.d,benkha\/emacs.d,modkzs\/emcs.d,lromang\/emacs.d,purcell\/emacs.d,ernest-dzf\/emacs.d,dcorking\/emacs.d,roxolan\/emacs.d,exclamaforte\/emacs.d,Enzo-Liu\/emacs.d,sgarciac\/emacs.d,zhuoyikang\/emacs.d,me020523\/emacs.d,mpwang\/emacs.d,pairyo\/emacs.d,renatoriccio\/emacs.d,dongdonghu\/.emacs.d,bibaijin\/emacs.d,jhpx\/emacs.d,blueseason\/emacs.d,krzysz00\/emacs.d,wegatron\/emacs.d,farzadbekran\/emacs.d,hophacker\/emacs.d,46do14\/emacs.d,lust4life\/emacs.d,LittleLmp\/emacs.d,jthetzel\/emacs.d,farzadbekran\/emacs.d,lujianmei\/emacs.d,dhanunjaya\/emacs.d,caoyuanqi\/emacs.d,boblannon\/emacs.d,Jadecity\/PurcellEmacs.d,blueabysm\/emacs.d"} {"commit":"11b345bd4d338dc73befc3964ebb9c1a493eb7eb","old_file":"lisp\/init-elm.el","new_file":"lisp\/init-elm.el","old_contents":"(when (maybe-require-package 'elm-mode)\n (setq-default elm-format-on-save t)\n (after-load 'elm-mode\n (diminish 'elm-indent-mode)\n (add-hook 'elm-mode-hook\n (lambda () (sanityinc\/local-push-company-backend 'company-elm)))\n (when (executable-find \"elm-format\")\n (setq-default elm-format-on-save t)))\n (maybe-require-package 'elm-test)\n (when (maybe-require-package 'flycheck-elm)\n (after-load 'elm-mode\n (flycheck-elm-setup))))\n\n(provide 'init-elm)\n","new_contents":"(when (maybe-require-package 'elm-mode)\n (setq-default elm-format-on-save t)\n (after-load 'elm-mode\n (diminish 'elm-indent-mode)\n (add-hook 'elm-mode-hook\n (lambda () (sanityinc\/local-push-company-backend 'company-elm)))\n (when (executable-find \"elm-format\")\n (setq-default elm-format-on-save t)))\n (maybe-require-package 'elm-test-runner)\n (when (maybe-require-package 'flycheck-elm)\n (after-load 'elm-mode\n (flycheck-elm-setup))))\n\n(provide 'init-elm)\n","subject":"Use elm-test-runner instead of elm-test","message":"Use elm-test-runner instead of elm-test\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"baohaojun\/emacs.d,purcell\/emacs.d,kongfy\/emacs.d,krzysz00\/emacs.d,mmqmzk\/emacs.d,wegatron\/emacs.d,qianwan\/emacs.d,me020523\/emacs.d,kindoblue\/emacs.d,blueseason\/emacs.d,gsmlg\/emacs.d,svenyurgensson\/emacs.d,cjqw\/emacs.d,lust4life\/emacs.d,emuio\/emacs.d,arthurl\/emacs.d,blueabysm\/emacs.d,braveoyster\/emacs.d,dcorking\/emacs.d,benkha\/emacs.d,sgarciac\/emacs.d"} {"commit":"3392676fcf5c59e1ff668078d7afb2c9093268df","old_file":"init-haskell.el","new_file":"init-haskell.el","old_contents":"(require-package 'haskell-mode)\n\n(dolist (hook '(haskell-mode-hook inferior-haskell-mode-hook))\n (add-hook hook 'turn-on-haskell-doc-mode))\n\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)\n\n(eval-after-load 'haskell-mode\n '(progn\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (define-key haskell-mode-map (kbd \"RET\") 'newline)))\n\n(require-package 'ghci-completion)\n(add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion)\n\n(require-package 'flymake-haskell-multi)\n(add-hook 'haskell-mode-hook #'flymake-haskell-multi-load)\n\n;; Make compilation-mode understand \"at blah.hs:11:34-50\" lines output by GHC\n(eval-after-load 'compile\n '(progn\n (let ((alias 'ghc-at-regexp))\n (add-to-list\n 'compilation-error-regexp-alist-alist\n (list alias \" at \\\\(.*l?hs\\\\):\\\\([0-9]+\\\\):\\\\([0-9]+\\\\)-[0-9]+$\" 1 2 3 0 1))\n (add-to-list\n 'compilation-error-regexp-alist alias))))\n\n(provide 'init-haskell)\n","new_contents":"(require-package 'haskell-mode)\n\n(dolist (hook '(haskell-mode-hook inferior-haskell-mode-hook))\n (add-hook hook 'turn-on-haskell-doc-mode))\n\n(add-auto-mode 'haskell-mode \"\\\\.ghci\\\\'\")\n\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)\n\n(eval-after-load 'haskell-mode\n '(progn\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (define-key haskell-mode-map (kbd \"RET\") 'newline)))\n\n(require-package 'ghci-completion)\n(add-hook 'inferior-haskell-mode-hook 'turn-on-ghci-completion)\n\n(require-package 'flymake-haskell-multi)\n(add-hook 'haskell-mode-hook #'flymake-haskell-multi-load)\n\n;; Make compilation-mode understand \"at blah.hs:11:34-50\" lines output by GHC\n(eval-after-load 'compile\n '(progn\n (let ((alias 'ghc-at-regexp))\n (add-to-list\n 'compilation-error-regexp-alist-alist\n (list alias \" at \\\\(.*l?hs\\\\):\\\\([0-9]+\\\\):\\\\([0-9]+\\\\)-[0-9]+$\" 1 2 3 0 1))\n (add-to-list\n 'compilation-error-regexp-alist alias))))\n\n(provide 'init-haskell)\n","subject":"Use haskell-mode for .ghci files","message":"Use haskell-mode for .ghci files\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"1105fe6a147860b0e13e584aa7ba48331bb954c1","old_file":"emacs.d\/parts\/web-tech-part.el","new_file":"emacs.d\/parts\/web-tech-part.el","old_contents":"(use-package web-mode\n :ensure t)\n\n(use-package json-mode\n :ensure t)\n\n(use-package js2-mode\n :ensure t)\n\n(provide 'web-tech-part)\n","new_contents":"(use-package web-mode\n :ensure t\n :config\n (add-to-list 'auto-mode-alist '(\"\\\\.php\\\\'\" . web-mode))\n (setq-default web-mode-code-indent-offset 2)\n (setq-default web-mode-markup-indent-offset 2)\n (setq-default web-mode-css-indent-offset 2))\n\n(use-package json-mode\n :ensure t)\n\n(use-package js2-mode\n :ensure t)\n\n(provide 'web-tech-part)\n","subject":"Make php default to web-mode","message":"Make php default to web-mode\n","lang":"Emacs Lisp","license":"mit","repos":"ubercow\/udots"} {"commit":"c3f12a793c709ca5954e0fe7c4a4a0160c3dd32d","old_file":"init-package\/init-volatile-highlights.el","new_file":"init-package\/init-volatile-highlights.el","old_contents":"(use-package volatile-highlights\n :init (volatile-highlights-mode t)\n :config\n (progn\n ;; define extensions for evil mode\n (vhl\/define-extension 'evil_past_after 'evil-paste-after)\n (vhl\/install-extension 'evil_past_after)))\n","new_contents":"(use-package volatile-highlights\n :init (volatile-highlights-mode t)) \n","subject":"Remove evil config for volatile highlight (not working)","message":"Remove evil config for volatile highlight (not working)\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"9ab347e99b9bfed0413b074306df4a0bd119d979","old_file":"home\/.emacs.d\/lisp\/init-uml.el","new_file":"home\/.emacs.d\/lisp\/init-uml.el","old_contents":";;; init-uml.el -- uml inside emacs\n\n;;; Commentary:\n;;; edit and preview plant uml files inside Emacs\n;;; Code:\n(require 'use-package)\n\n(use-package puml-mode\n :mode ((\"\\\\.puml\\\\'\" . puml-mode)\n (\"\\\\.plantuml\\\\'\" . puml-mode)))\n\n(provide 'init-uml)\n;;; init-uml.el ends here\n","new_contents":";;; init-uml.el -- uml inside emacs\n\n;;; Commentary:\n;;; edit and preview plant uml files inside Emacs\n;;; Code:\n(require 'use-package)\n\n(use-package plantuml-mode\n :mode ((\"\\\\.puml\\\\'\" . puml-mode)\n (\"\\\\.plantuml\\\\'\" . puml-mode)))\n\n(provide 'init-uml)\n;;; init-uml.el ends here\n","subject":"Fix Plant UML Emacs package name","message":"Fix Plant UML Emacs package name\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"92dd98734b66c482530a5b86099802111c18c75a","old_file":".emacs.d\/modes.el","new_file":".emacs.d\/modes.el","old_contents":"(column-number-mode t)\n(display-time-mode 1)\n(electric-pair-mode t)\n(auto-fill-mode -1)\n(global-linum-mode 1)\n(setq-default indent-tabs-mode nil)\n(popwin-mode 1)\n(drag-stuff-global-mode 1)\n(global-auto-complete-mode t)\n(whole-line-or-region-mode t)\n","new_contents":"(column-number-mode t)\n(display-time-mode 1)\n(electric-pair-mode t)\n(auto-fill-mode -1)\n(global-linum-mode 1)\n(setq-default indent-tabs-mode nil)\n(popwin-mode 1)\n(delete-selection-mode 1)\n(drag-stuff-global-mode 1)\n(global-auto-complete-mode t)\n(whole-line-or-region-mode t)\n","subject":"Add deletion mode to emacs","message":"Add deletion mode to emacs\n","lang":"Emacs Lisp","license":"mit","repos":"spapanik\/configuration,spapanik\/configuration"} {"commit":"78aae4069ad2ddba7506ae5f5688a286087cee9f","old_file":"modes\/eglot-conf.el","new_file":"modes\/eglot-conf.el","old_contents":";;; eglot-conf.el -- Settings for eglot\n;;\n;;; Commentary:\n;;\n;;; Code:\n(require 'eglot)\n\n(custom-set-variables\n '(eglot-auto-display-help-buffer nil)\n '(eglot-autoshutdown t))\n\n(defvar pjones:eglot-doc-cleanup\n (list\n (list (rx (and \"```haskell\" ?\\n (1+ (not (any ?:))) ?\\n \":: \")\n (group (1+ (not (any ?`)))) ?\\n \"```\") \"`\\\\1`\")\n (list (rx (1+ ?* (1+ (in space)))) \"\")\n (list (rx (and bol ?* ?\\n)) \"\"))\n \"List of regular expressions and replacement strings.\nUsed for cleaning up LSP server docs.\")\n\n(defun pjones:eglot-apply-doc-cleanup (string)\n \"Clean STRING according to `pjones:eglot-doc-cleanup'.\"\n (let ((result string))\n (dolist (pat pjones:eglot-doc-cleanup)\n (while (string-match (car pat) result)\n (setq result (replace-match (cadr pat) nil nil result))))\n result))\n\n(defun pjones:eglot--format-markup-advice (orig markup)\n \"Clean docs from naughty LSP servers.\nCall ORIG after modifying MARKUP\"\n (let ((clean (pjones:eglot-apply-doc-cleanup (plist-get markup :value))))\n (apply orig (list (plist-put markup :value clean)))))\n(advice-add\n 'eglot--format-markup\n :around #'pjones:eglot--format-markup-advice)\n\n(defun pjones:eglot--snippet-expansion-fn ()\n \"Keep eglot from using yasnippet.\"\n nil)\n(advice-add\n 'eglot--snippet-expansion-fn\n :override #'pjones:eglot--snippet-expansion-fn)\n\n;;; eglot-conf.el ends here\n","new_contents":";;; eglot-conf.el -- Settings for eglot\n;;\n;;; Commentary:\n;;\n;;; Code:\n(require 'eglot)\n\n(custom-set-variables\n '(eglot-autoshutdown t))\n\n(defun pjones:eglot--snippet-expansion-fn ()\n \"Keep eglot from using yasnippet.\"\n nil)\n(advice-add\n 'eglot--snippet-expansion-fn\n :override #'pjones:eglot--snippet-expansion-fn)\n\n;;; eglot-conf.el ends here\n","subject":"Remove deprecated options and dead code","message":"eglot: Remove deprecated options and dead code\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"f33cc3d16434e258b8b4c7af178a2d7c3a8b139e","old_file":"layers\/mfa-treemacs\/packages.el","new_file":"layers\/mfa-treemacs\/packages.el","old_contents":";; -*- lexical-binding: t -*-\n\n(defconst mfa-treemacs-packages '(treemacs))\n\n(defun mfa-treemacs\/post-init-treemacs ()\n (with-eval-after-load 'treemacs\n ;; Adjust icon sizes to the DPI of the display.\n (spacemacs|do-after-display-system-init\n (treemacs-resize-icons (* 22 (display-scaling-factor))))\n\n ;; Fixes icon background color. It's broken because Treemacs only adjusts it\n ;; as an after hook of `enable-theme', but due to lazy loading the theme\n ;; will have enabled long before treemacs gets loaded. See also:\n ;; https:\/\/github.com\/Alexander-Miller\/treemacs\/issues\/148\n (treemacs--setup-icon-background-colors)\n\n ;; Enhance the visibility of the currently selected line.\n (treemacs-fringe-indicator-mode t)\n\n ;; Moving the root with h\/l is non-sensical to me. This rebinds them to\n ;; functionality that, to me, seems more intuitive to be bound to those\n ;; keys.\n (define-key evil-treemacs-state-map \"l\" #'treemacs-RET-action)\n (define-key evil-treemacs-state-map \"h\" #'treemacs-goto-parent-node)))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defconst mfa-treemacs-packages '(treemacs treemacs-evil))\n\n(defun mfa-treemacs\/post-init-treemacs ()\n (with-eval-after-load 'treemacs\n ;; Adjust icon sizes to the DPI of the display.\n (spacemacs|do-after-display-system-init\n (treemacs-resize-icons (* 22 (display-scaling-factor))))\n\n ;; Fixes icon background color. It's broken because Treemacs only adjusts it\n ;; as an after hook of `enable-theme', but due to lazy loading the theme\n ;; will have enabled long before treemacs gets loaded. See also:\n ;; https:\/\/github.com\/Alexander-Miller\/treemacs\/issues\/148\n (treemacs--setup-icon-background-colors)\n\n ;; Enhance the visibility of the currently selected line.\n (treemacs-fringe-indicator-mode t)))\n\n(defun mfa-treemacs\/post-init-treemacs-evil ()\n (with-eval-after-load 'treemacs-evil\n ;; Moving the root with h\/l is non-sensical to me. This rebinds them to\n ;; functionality that, to me, seems more intuitive to be bound to those\n ;; keys.\n (evil-define-key 'treemacs treemacs-mode-map (kbd \"h\") #'treemacs-goto-parent-node)\n (evil-define-key 'treemacs treemacs-mode-map (kbd \"l\") #'treemacs-RET-action)))\n","subject":"Fix customizations of Treemacs key bindings","message":"Fix customizations of Treemacs key bindings\n\nThe customized key bindings for \"h\/l\" did not take effect until this change.\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"261eb24c95de31300b4e3e0bc9d2267b4bfc2c8c","old_file":"modes\/magit-conf.el","new_file":"modes\/magit-conf.el","old_contents":";;; magit-conf.el -- Customizations for magit.\n(eval-when-compile\n (defvar magit-last-seen-setup-instructions)\n (setq magit-last-seen-setup-instructions \"1.4.0\")\n (require 'magit))\n\n;; Shamelessly stolen from http:\/\/whattheemacsd.com\/.\n(defadvice magit-status (around magit-fullscreen activate)\n (window-configuration-to-register :magit-fullscreen)\n ad-do-it\n (delete-other-windows))\n\n(defun pjones:magit-quit-session ()\n \"Restore the previous window configuration and kill the magit\nbuffer.\"\n (interactive)\n (kill-buffer)\n (jump-to-register :magit-fullscreen))\n\n(define-key magit-status-mode-map (kbd \"q\") 'pjones:magit-quit-session)\n","new_contents":";;; magit-conf.el -- Customizations for magit.\n(eval-when-compile\n (defvar magit-last-seen-setup-instructions)\n (setq magit-last-seen-setup-instructions \"1.4.0\")\n (require 'magit))\n\n(custom-set-variables\n '(magit-popup-use-prefix-argument default))\n\n;; Shamelessly stolen from http:\/\/whattheemacsd.com\/.\n(defadvice magit-status (around magit-fullscreen activate)\n (window-configuration-to-register :magit-fullscreen)\n ad-do-it\n (delete-other-windows))\n\n(defun pjones:magit-quit-session ()\n \"Restore the previous window configuration and kill the magit\nbuffer.\"\n (interactive)\n (kill-buffer)\n (jump-to-register :magit-fullscreen))\n\n(define-key magit-status-mode-map (kbd \"q\") 'pjones:magit-quit-session)\n","subject":"Fix an issue with magit","message":"Fix an issue with magit\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"7371582a97e067fae0b38cb660563948a6e42ab8","old_file":"config\/newemacs\/settings\/cedet-settings.el","new_file":"config\/newemacs\/settings\/cedet-settings.el","old_contents":"(require 'cc-mode)\n(require 'semantic)\n\n(global-semanticdb-minor-mode 1)\n(global-semantic-idle-scheduler-mode 1)\n(global-semantic-stickyfunc-mode 1)\n(semantic-mode 1)\n\n(defun rz\/cedet-hook ()\n (evil-leader\/set-key\n \"j\" 'semantic-ia-fast-jump\n \"cs\" 'semantic-ia-show-summary))\n\n(add-hook 'c-mode-common-hook 'rz\/cedet-hook)\n(add-hook 'c-mode-hook 'rz\/cedet-hook)\n(add-hook 'c++-mode-hook 'rz\/cedet-hook)\n\n(require 'ede)\n(global-ede-mode)\n\n(provide 'cedet-settings)\n","new_contents":"(require 'cc-mode)\n(require 'semantic)\n\n(global-semanticdb-minor-mode 1)\n(global-semantic-idle-scheduler-mode 1)\n(global-semantic-stickyfunc-mode 1)\n(semantic-mode 1)\n\n(defun rz\/cedet-hook ()\n (evil-leader\/set-key\n \"j\" 'semantic-ia-fast-jump\n \"cs\" 'semantic-ia-show-summary\n \"ci\" 'helm-semantic-or-imenu))\n\n(add-hook 'c-mode-common-hook 'rz\/cedet-hook)\n(add-hook 'c-mode-hook 'rz\/cedet-hook)\n(add-hook 'c++-mode-hook 'rz\/cedet-hook)\n\n(require 'ede)\n(global-ede-mode)\n\n(provide 'cedet-settings)\n","subject":"Add a command to display helm semantic or imenu","message":"Add a command to display helm semantic or imenu\n","lang":"Emacs Lisp","license":"mit","repos":"rogerzanoni\/dotfiles"} {"commit":"17e5cdc46e2e0a71070bf63e98be2ba727d1a579","old_file":"setup-files\/setup-paradox.el","new_file":"setup-files\/setup-paradox.el","old_contents":";; Time-stamp: <2015-10-09 16:49:24 kmodi>\n\n;; Paradox\n;; https:\/\/github.com\/Malabarba\/paradox\n\n(use-package paradox\n :commands (package-list-packages\n paradox-list-packages hydra-launch\/paradox-list-packages-and-exit)\n :config\n (progn\n ;; The \"paradox-token\" file is supposed to contain this line:\n ;; (setq paradox-github-token \"\")\n (load (locate-user-emacs-file \"paradox-token\") :noerror :nomessage)\n (setq paradox-lines-per-entry 1)\n (setq paradox-automatically-star t)\n\n (paradox-enable)))\n\n\n(provide 'setup-paradox)\n","new_contents":";; Time-stamp: <2015-10-14 16:24:24 kmodi>\n\n;; Paradox\n;; https:\/\/github.com\/Malabarba\/paradox\n\n(use-package paradox\n :commands (package-list-packages\n paradox-list-packages\n hydra-launch\/paradox-list-packages-and-exit)\n :config\n (progn\n ;; The \"paradox-token\" file is supposed to contain this line:\n ;; (setq paradox-github-token \"\")\n (load (locate-user-emacs-file \"paradox-token\") :noerror :nomessage)\n\n (setq paradox-lines-per-entry 1)\n (setq paradox-automatically-star t)\n\n (define-key paradox--filter-map \"k\" nil) ; Unbind redundant key\n\n (defhydra hydra-paradox-filter (:color blue\n :hint nil)\n \"\n_f_ilter filter _r_egexp _i_nstalled _d_ependencies\ng_n_u elpa packages available _u_pgrades _a_vailable _c_lear filter\n_m_elpa packages packages with _s_tars _b_uilt-in\n\"\n (\"f\" package-menu-filter)\n (\"n\" (package-menu-filter \"arc:gnu\"))\n (\"m\" (package-menu-filter \"arc:melpa\"))\n (\"r\" paradox-filter-regexp)\n (\"u\" paradox-filter-upgrades)\n (\"s\" paradox-filter-stars)\n (\"i\" (package-menu-filter \"status:installed\"))\n (\"a\" (package-menu-filter \"status:available\"))\n (\"b\" (package-menu-filter \"status:built-in\"))\n (\"d\" (package-menu-filter \"status:dependency\"))\n (\"c\" paradox-filter-clear)\n (\"g\" paradox-filter-clear)\n (\"q\" nil \"cancel\" :color blue))\n (bind-key \"f\" #'hydra-paradox-filter\/body paradox-menu-mode-map)\n\n (paradox-enable)))\n\n\n(provide 'setup-paradox)\n","subject":"Add hydra-paradox-filter, bound to \"f\" key","message":"Add hydra-paradox-filter, bound to \"f\" key\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"2c81ddb96b7986343bff1be2208b3641b2af7186","old_file":"settings\/lk\/customizations.el","new_file":"settings\/lk\/customizations.el","old_contents":";;;; lk\/customipaczations.el -- custom functions which make using emacs easier\n;;; Commentary:\n;;; If stuff grows too big, move it out to a separate file\n;;; Code:\n\n\n;; Editing helpers\n\n(defun lk\/count-buffers ()\n (length (buffer-list)))\n\n;; OSX stuff, make sure alt is meta in GUI emacs\n(defun mac-switch-meta nil\n \"switch meta between Option and Command\"\n (interactive)\n (if (eq mac-option-modifier nil)\n (progn\n (setq mac-option-modifier 'meta)\n (setq mac-command-modifier 'hyper))\n (progn\n (setq mac-option-modifier nil)\n (setq mac-command-modifier 'meta))))\n(mac-switch-meta)\n(mac-switch-meta)\n\n(use-package sane-term\n :ensure t\n\t :bind (( \"C-x n t\" . sane-term)\n (\"C-x n T\" . sane-term-create)))\n\n(global-set-key (kbd \"C-x n e\") 'eshell)\n\n(provide 'lk\/customizations)\n;;; customizations.el ends here\n","new_contents":";;;; lk\/customipaczations.el -- custom functions which make using emacs easier\n;;; Commentary:\n;;; If stuff grows too big, move it out to a separate file\n;;; Code:\n\n\n;; Editing helpers\n\n(defun lk\/count-buffers ()\n (length (buffer-list)))\n\n;; OSX stuff, make sure alt is meta in GUI emacs\n(defun mac-switch-meta nil\n \"switch meta between Option and Command\"\n (interactive)\n (if (eq mac-option-modifier nil)\n (progn\n (setq mac-option-modifier 'meta)\n (setq mac-command-modifier 'hyper))\n (progn\n (setq mac-option-modifier nil)\n (setq mac-command-modifier 'meta))))\n\n(when (string-equal system-type \"darwin\")\n (mac-switch-meta)\n (mac-switch-meta))\n\n(use-package sane-term\n :ensure t\n\t :bind (( \"C-x n t\" . sane-term)\n (\"C-x n T\" . sane-term-create)))\n\n(global-set-key (kbd \"C-x n e\") 'eshell)\n\n(provide 'lk\/customizations)\n;;; customizations.el ends here\n","subject":"Make it work with Linux","message":"[emacs] Make it work with Linux\n","lang":"Emacs Lisp","license":"mit","repos":"lukaszkorecki\/cult-leader"} {"commit":"e8e29d55ce3c4e7b47b16828443483206a0e403a","old_file":"lisp\/init-fonts.el","new_file":"lisp\/init-fonts.el","old_contents":";;; Character sets\n\n(defcustom sanityinc\/force-default-font-for-symbols nil\n \"When non-nil, force Emacs to use your default font for symbols.\"\n :type 'boolean)\n\n(defun sanityinc\/maybe-use-default-font-for-symbols ()\n \"Force Emacs to render symbols using the default font, if so configured.\"\n (when sanityinc\/force-default-font-for-symbols\n (set-fontset-font \"fontset-default\" 'symbol (face-attribute 'default :family))))\n\n(add-hook 'after-init-hook 'sanityinc\/maybe-use-default-font-for-symbols)\n\n\f\n;;; Changing font sizes\n\n(require-package 'default-text-scale)\n(global-set-key (kbd \"C-M-=\") 'default-text-scale-increase)\n(global-set-key (kbd \"C-M--\") 'default-text-scale-decrease)\n\n\n\n(provide 'init-fonts)\n","new_contents":";;; Character sets\n\n(defcustom sanityinc\/force-default-font-for-symbols nil\n \"When non-nil, force Emacs to use your default font for symbols.\"\n :type 'boolean)\n\n(defun sanityinc\/maybe-use-default-font-for-symbols ()\n \"Force Emacs to render symbols using the default font, if so configured.\"\n (when sanityinc\/force-default-font-for-symbols\n (set-fontset-font \"fontset-default\" 'symbol (face-attribute 'default :family))))\n\n(add-hook 'after-init-hook 'sanityinc\/maybe-use-default-font-for-symbols)\n\n\f\n;;; Changing font sizes\n\n(require-package 'default-text-scale)\n(global-set-key (kbd \"C-M-=\") 'default-text-scale-increase)\n(global-set-key (kbd \"C-M--\") 'default-text-scale-decrease)\n\n(dolist (charset '(kana han symbol cjk-misc bopomofo))\n (set-fontset-font (frame-parameter nil 'font)\n charset (font-spec :family \"STHeiti\")))\n(setq face-font-rescale-alist '((\"STHeiti\" . 1.2)))\n;;; (setq face-font-rescale-alist '((\"Menlo\" . 1.2) (\"WenQuanYi Zen Hei\" . 1.2)))\n\n\n(provide 'init-fonts)\n","subject":"Add Asian fonts fix for OSX","message":"Add Asian fonts fix for OSX\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"ttimasdf\/emacs.d,ttimasdf\/emacs.d,ttimasdf\/emacs.d,ttimasdf\/emacs.d,ttimasdf\/emacs.d"} {"commit":"9bf1ccaac617fecd509b28e126c84b31f0eba8ab","old_file":"user-lisp\/lsp-customisations.el","new_file":"user-lisp\/lsp-customisations.el","old_contents":"\n(setq lsp-modeline-code-actions-segments '(count name))\n\n(setq lsp-rust-clippy-preference \"on\")\n\n(set-face-attribute 'lsp-lsp-flycheck-warning-unnecessary-face nil :foreground nil)\n","new_contents":"\n(setq lsp-modeline-code-actions-segments '(count name))\n\n(setq lsp-rust-clippy-preference \"on\")\n\n(set-face-attribute 'lsp-lsp-flycheck-warning-unnecessary-face nil :foreground nil)\n\n;; Don't override my navigation bindings.\n(define-key lsp-signature-mode-map (kbd \"M-n\") nil)\n(define-key lsp-signature-mode-map (kbd \"M-p\") nil)\n","subject":"Fix M-n and M-p when LSP is active","message":"Fix M-n and M-p when LSP is active\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"197a2a947b0dfec7146e0cdd6b714e165f971d43","old_file":"emacs\/site-lisp\/init-eshell.el","new_file":"emacs\/site-lisp\/init-eshell.el","old_contents":"(use-package eshell-git-prompt\n :config\n (eshell-git-prompt-use-theme 'powerline))\n\n(provide 'init-eshell)\n","new_contents":"(use-package eshell-git-prompt\n :hook\n (eshell-mode . (lambda () (setq show-trailing-whitespace nil)))\n :config\n (eshell-git-prompt-use-theme 'powerline))\n\n(provide 'init-eshell)\n","subject":"Remove trailing whitespaces in eshell mode","message":"Remove trailing whitespaces in eshell mode\n","lang":"Emacs Lisp","license":"mit","repos":"hongchangwu\/dotfiles,hongchangwu\/dotfiles"} {"commit":"05acabbcf0d41b6f853e88ee45f491018c752527","old_file":"emacs\/emacs.d\/my-helm.el","new_file":"emacs\/emacs.d\/my-helm.el","old_contents":"(require 'helm-config)\n(helm-mode 1)\n\n(bind-keys :map shell-mode-map\n (\"C-c C-l\" . helm-comint-input-ring))\n\n(bind-keys :map minibuffer-local-map\n (\"C-c C-l\" . helm-minibuffer-history))\n\n(setq helm-M-x-fuzzy-match t)\n(setq helm-buffers-fuzzy-matching t)\n\n(require 'helm-ls-git)\n\n(setq helm-ls-git-show-abs-or-relative 'relative)\n\n;; (setq helm-ff-skip-boring-files t)\n;; ;; TODO: these don't work. Looks like having the '.' and '..' on top\n;; ;; of the list is by design.\n;; (push \"\\\\.\\\\.$\" helm-boring-file-regexp-list)\n;; (push \"\\\\.$\" helm-boring-file-regexp-list)\n","new_contents":"(require 'helm-config)\n(helm-mode 1)\n\n(bind-keys :map shell-mode-map\n (\"C-c C-l\" . helm-comint-input-ring))\n\n(bind-keys :map minibuffer-local-map\n (\"C-c C-l\" . helm-minibuffer-history))\n\n(setq helm-grep-save-buffer-name-no-confirm t)\n(setq helm-M-x-fuzzy-match t)\n(setq helm-buffers-fuzzy-matching t)\n\n(require 'helm-ls-git)\n\n(setq helm-ls-git-show-abs-or-relative 'relative)\n\n;; (setq helm-ff-skip-boring-files t)\n;; ;; TODO: these don't work. Looks like having the '.' and '..' on top\n;; ;; of the list is by design.\n;; (push \"\\\\.\\\\.$\" helm-boring-file-regexp-list)\n;; (push \"\\\\.$\" helm-boring-file-regexp-list)\n","subject":"Save w\/o asking me the buffer name","message":"Save w\/o asking me the buffer name\n","lang":"Emacs Lisp","license":"mit","repos":"sri\/dotfiles,sri\/dotfiles,sri\/dotfiles"} {"commit":"ecb0eebd0becf954e4e2165f67e4d8246bb6594a","old_file":"common\/_emacs.d\/config\/config-addons.el","new_file":"common\/_emacs.d\/config\/config-addons.el","old_contents":";;; Package -- Summary\n;;; Commentary:\n;;; Dumping ground for interactive functions, and things like that.\n;;; Maybe extensions is a better name? Must ponder.\n;;; Code:\n\n;; This should really be region specific.\n(defun toggle-comment-on-line ()\n \"Comment or uncomment current line.\"\n (interactive)\n (comment-or-uncomment-region (line-beginning-position) (line-end-position)))\n;(global-set-key (kbd \"C-;\") 'toggle-comment-on-line)\n\n;; use 2 spaces for tabs\n(defun die-tabs ()\n \"Untabify a buffer.\"\n (interactive)\n (set-variable 'tab-width 2)\n (mark-whole-buffer)\n (untabify (region-beginning) (region-end))\n (keyboard-quit))\n\n(provide 'config-addons)\n;;; config-addons ends here\n","new_contents":";;; Package -- Summary\n;;; Commentary:\n;;; Dumping ground for interactive functions, and things like that.\n;;; Maybe extensions is a better name? Must ponder.\n;;; Code:\n\n;; This should really be region specific.\n(defun toggle-comment-on-line ()\n \"Comment or uncomment current line.\"\n (interactive)\n (comment-or-uncomment-region (line-beginning-position) (line-end-position)))\n;(global-set-key (kbd \"C-;\") 'toggle-comment-on-line)\n\n;; use 2 spaces for tabs\n(defun die-tabs ()\n \"Untabify a buffer.\"\n (interactive)\n (set-variable 'tab-width 2)\n (mark-whole-buffer)\n (untabify (region-beginning) (region-end))\n (keyboard-quit))\n\n(defun insert-date ()\n \"Insert a date string.\"\n (interactive)\n (insert\n (concat\n \"========= \" (format-time-string \"%Y-%m-%d (%A)\") \" =========\\n\\n\")))\n\n;; More stealing from @brandon-rhodes\n;; (defun search-forward-symbol-at-point ()\n;; (interactive)\n;; (end-of-thing 'symbol)\n;; (let ((case-fold-search nil))\n;; (re-search-forward (concat \"\\\\_<\" (thing-at-point 'symbol) \"\\\\_>\"))))\n\n;; (defun search-backward-symbol-at-point ()\n;; (interactive)\n;; (beginning-of-thing 'symbol)\n;; (let ((case-fold-search nil))\n;; (re-search-backward (concat \"\\\\_<\" (thing-at-point 'symbol) \"\\\\_>\"))))\n(provide 'config-addons)\n;;; config-addons ends here\n","subject":"Add a few more addons","message":"Add a few more addons\n","lang":"Emacs Lisp","license":"mit","repos":"gehrman\/dotfiles,gehrman\/dotfiles"} {"commit":"156b29f1b7f82ab098b0f02316ac8f6792b8e263","old_file":"emacs.d\/personal\/init\/packages.el","new_file":"emacs.d\/personal\/init\/packages.el","old_contents":"(prelude-require-packages '(ag\n aggressive-indent\n helm-ag\n color-theme-sanityinc-tomorrow\n gruvbox-theme\n solarized-theme\n monokai-theme\n evil-args\n evil-jumper\n evil-matchit\n evil-nerd-commenter\n fill-column-indicator\n js2-refactor\n paredit\n multiple-cursors\n nlinum\n rhtml-mode\n rust-mode\n flycheck-rust\n ruby-compilation\n smartrep\n nyan-mode\n toggle-quotes\n window-number\n yagist\n yasnippet))\n\n;; vendored packages\n(personal\/load-init-file \"personal\/vendor\/rcodetools\")\n(personal\/load-init-file \"personal\/vendor\/scad-mode\")\n(personal\/load-init-file \"personal\/vendor\/smartrep\")\n","new_contents":"(prelude-require-packages '(\n ag\n aggressive-indent\n chruby\n color-theme-sanityinc-tomorrow\n evil-args\n evil-jumper\n evil-matchit\n evil-nerd-commenter\n fill-column-indicator\n flycheck-rust\n gruvbox-theme\n helm-ag\n js2-refactor\n monokai-theme\n multiple-cursors\n nlinum\n nyan-mode\n paredit\n projectile-rails\n rhtml-mode\n ruby-compilation\n rust-mode\n smartrep\n solarized-theme\n toggle-quotes\n window-number\n yagist\n yasnippet\n ))\n\n;; vendored packages\n(personal\/load-init-file \"personal\/vendor\/rcodetools\")\n(personal\/load-init-file \"personal\/vendor\/scad-mode\")\n(personal\/load-init-file \"personal\/vendor\/smartrep\")\n","subject":"Include chruby and projectile rails","message":"Include chruby and projectile rails\n\nSorted the package list\n","lang":"Emacs Lisp","license":"mit","repos":"caleb\/dotfiles,caleb\/dotfiles,caleb\/dotfiles"} {"commit":"b6f789a2762e7f737b04d92de88040b9d5344e25","old_file":"emacs\/modes\/markdown-mode-conf.el","new_file":"emacs\/modes\/markdown-mode-conf.el","old_contents":";;; markdown-conf.el -- Settings for markdown-mode.\n(eval-when-compile (require 'markdown-mode))\n\n(setq markdown-command \"pandoc -f markdown -t html\"\n markdown-follow-wiki-link-on-enter nil)\n\n(defun pjones:markdown-mode-hook ()\n \"Set up key bindings and other crap for markdown-mode.\"\n (local-set-key (kbd \"C-c C-o\") 'markdown-follow-link-at-point)\n\n ;; Files in \/tmp that are *.txt are from my browser and most\n ;; websites don't like it when text you submit has newlines.\n (when (string-match \"^\/tmp\/.*\\\\.txt$\" (buffer-file-name))\n (longlines-mode)))\n\n(add-hook 'markdown-mode-hook 'whitespace-mode)\n(add-hook 'markdown-mode-hook 'pjones:markdown-mode-hook)\n","new_contents":";;; markdown-conf.el -- Settings for markdown-mode.\n(eval-when-compile\n (require 'markdown-mode))\n\n(setq markdown-command \"pandoc -f markdown -t html\"\n markdown-follow-wiki-link-on-enter nil)\n\n(defun pjones:markdown-mode-hook ()\n \"Set up key bindings and other crap for markdown-mode.\"\n (local-set-key (kbd \"C-c C-o\") 'markdown-follow-link-at-point)\n\n ;; Files in \/tmp that are *.txt are from my browser and most\n ;; websites don't like it when text you submit has newlines.\n (when (string-match \"^\/tmp\/.*\\\\.txt$\" (buffer-file-name))\n (visual-line-mode)))\n\n(add-hook 'markdown-mode-hook 'whitespace-mode)\n(add-hook 'markdown-mode-hook 'pjones:markdown-mode-hook)\n","subject":"Use visual-line-mode instead of the deprecated longlines-mode","message":"Emacs: Use visual-line-mode instead of the deprecated longlines-mode\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"625a8a9056aca9f3de25db45c5e03fb276b4d451","old_file":"modules\/emacs\/term\/autoload.el","new_file":"modules\/emacs\/term\/autoload.el","old_contents":";;; emacs\/term\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(defun +term\/open (&optional project-root)\n \"Open a terminal buffer in the current window. If PROJECT-ROOT (C-u) is\nnon-nil, cd into the current project's root.\"\n (interactive \"P\")\n (let ((default-directory (if project-root (doom-project-root 'nocache) default-directory)))\n (call-interactively #'multi-term)))\n\n;;;###autoload\n(defun +term\/open-popup (arg)\n \"Open a terminal popup window. If ARG (universal argument) is\nnon-nil, cd into the current project's root.\"\n (interactive \"P\")\n (require 'multi-term)\n (let ((default-directory (if arg (doom-project-root 'nocache) default-directory))\n (buffer (multi-term-get-buffer current-prefix-arg)))\n (pop-to-buffer buffer)\n (setq multi-term-buffer-list (nconc multi-term-buffer-list (list buffer)))\n (multi-term-internal)))\n\n;;;###autoload\n(defun +term\/open-popup-in-project (arg)\n \"Open a terminal popup window in the root of the current project.\n\nIf ARG (universal argument) is non-nil, open it in `default-directory' instead.\"\n (interactive \"P\")\n (+term\/open-popup (not arg)))\n","new_contents":";;; emacs\/term\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(defun +term\/open (&optional project-root)\n \"Open a terminal buffer in the current window. If PROJECT-ROOT (C-u) is\nnon-nil, cd into the current project's root.\"\n (interactive \"P\")\n (let ((default-directory\n (if project-root\n (doom-project-root 'nocache)\n default-directory)))\n ;; Doom's switch-buffer hooks prevent themselves from triggering when\n ;; switching from buffer A back to A. Because `multi-term' uses `set-buffer'\n ;; before `switch-to-buffer', the hooks don't trigger, so we use this\n ;; roundabout way to trigger them properly.\n (switch-to-buffer (save-window-excursion (multi-term)))))\n\n;;;###autoload\n(defun +term\/open-popup (arg)\n \"Open a terminal popup window. If ARG (universal argument) is\nnon-nil, cd into the current project's root.\"\n (interactive \"P\")\n (let ((default-directory\n (if arg\n (doom-project-root 'nocache)\n default-directory)))\n (pop-to-buffer (save-window-excursion (multi-term)))))\n\n;;;###autoload\n(defun +term\/open-popup-in-project (arg)\n \"Open a terminal popup window in the root of the current project.\n\nIf ARG (universal argument) is non-nil, open it in `default-directory' instead.\"\n (interactive \"P\")\n (+term\/open-popup (not arg)))\n","subject":"Fix multi-term buffers missing from buffer list","message":"Fix multi-term buffers missing from buffer list\n\nCaused because switch buffer hooks weren't triggering, due to\nmulti-term's odd use of set-buffer before switch-to-buffer.\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs"} {"commit":"7d5f35b57824c0def907ff1660ce0b5cdf3f355b","old_file":"emacs\/site-lisp\/init-company.el","new_file":"emacs\/site-lisp\/init-company.el","old_contents":";; Company mode\n(require 'company)\n(add-hook 'after-init-hook 'global-company-mode)\n\n(provide 'init-company)\n","new_contents":";; Company mode\n(require 'company)\n(add-hook 'after-init-hook 'global-company-mode)\n\n;; Fix compatibility issue with fill-column-indicator\n(defun on-off-fci-before-company(command)\n (when (string= \"show\" command)\n (turn-off-fci-mode))\n (when (string= \"hide\" command)\n (turn-on-fci-mode)))\n\n(advice-add 'company-call-frontends :before #'on-off-fci-before-company)\n\n(provide 'init-company)\n","subject":"Fix compatibility issue with fill-column-indicator","message":"Fix compatibility issue with fill-column-indicator\n","lang":"Emacs Lisp","license":"mit","repos":"hongchangwu\/dotfiles,hongchangwu\/dotfiles"} {"commit":"76bc65b6c9744dee35d65291e7da471972a18839","old_file":"home\/.emacs.d\/lisp\/init-display.el","new_file":"home\/.emacs.d\/lisp\/init-display.el","old_contents":";;; init-display.el -- display setup\n\n;;; Commentary:\n;;; customize emacs display\n\n;;; Code:\n(menu-bar-mode -1)\n(scroll-bar-mode -1)\n(tool-bar-mode -1)\n\n(setq indicate-buffer-boundaries\n '((t . right) (bottom . right)))\n(setq indicate-empty-lines t)\n(setq scroll-margin 3)\n(setq scroll-step 1)\n(setq-default scroll-preserver-screen-position t)\n\n(setq inhibit-startup-screen t)\n(setq inhibit-startup-echo-area-message t)\n(setq initial-scratch-message \";; *scratch*\")\n\n(set-frame-font \"Source Code Pro for Powerline-12\")\n\n(add-to-list 'default-frame-alist '(fullscreen . maximized))\n\n(provide 'init-display)\n;;; init-display.el ends here\n","new_contents":";;; init-display.el -- display setup\n\n;;; Commentary:\n;;; customize emacs display\n\n;;; Code:\n(require-package 'fill-column-indicator)\n\n(menu-bar-mode -1)\n(scroll-bar-mode -1)\n(tool-bar-mode -1)\n\n(setq indicate-buffer-boundaries\n '((t . right) (bottom . right)))\n(setq indicate-empty-lines t)\n(setq scroll-margin 3)\n(setq scroll-step 1)\n(setq-default scroll-preserver-screen-position t)\n\n(setq inhibit-startup-screen t)\n(setq inhibit-startup-echo-area-message t)\n(setq initial-scratch-message \";; *scratch*\")\n\n(set-frame-font \"Source Code Pro for Powerline-12\")\n\n(add-to-list 'default-frame-alist '(fullscreen . maximized))\n\n(add-hook 'prog-mode-hook 'fci-mode)\n\n(provide 'init-display)\n;;; init-display.el ends here\n","subject":"Add fill-column indicator to Emacs","message":"Add fill-column indicator to Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"f01e1054943047741a6381683b7a52f05e4d7379","old_file":"elisp\/setup-modes.el","new_file":"elisp\/setup-modes.el","old_contents":";;; setup-modes.el --- Modes that don't require separate files.\n;;; Commentary:\n;;; Code:\n\n;; yaml-mode. mainly for syntax highlighting\n(use-package yaml-mode\n :ensure t ;; seems like overkill\n :config\n (add-to-list 'auto-mode-alist '(\"\\\\.yml\\\\'\" . yaml-mode)))\n\n(use-package camcorder\n :defer t)\n\n;; not sure where to put this\n(use-package feature-mode\n :ensure t)\n\n;; this one is builtin\n(use-package subword\n :defer t\n :diminish \"\")\n\n(provide 'setup-modes)\n;;; setup-modes.el ends here\n","new_contents":";;; setup-modes.el --- Modes that don't require separate files.\n;;; Commentary:\n;;; Code:\n\n;; yaml-mode. mainly for syntax highlighting\n(use-package yaml-mode\n :ensure t ;; seems like overkill\n :config\n (add-to-list 'auto-mode-alist '(\"\\\\.yml\\\\'\" . yaml-mode)))\n\n(use-package camcorder\n :defer t)\n\n;; not sure where to put this\n(use-package feature-mode\n :ensure t)\n\n;; this one is builtin\n(use-package subword\n :defer t\n :diminish \"w\")\n\n(provide 'setup-modes)\n;;; setup-modes.el ends here\n","subject":"Diminish subword mode to \"w\"","message":"Diminish subword mode to \"w\"\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"a2efa2455807b0ac5e1548a863f774b301c0b566","old_file":"setup-files\/setup-conf.el","new_file":"setup-files\/setup-conf.el","old_contents":";; Time-stamp: <2015-06-30 16:51:07 kmodi>\n\n;; Conf Mode\n\n(use-package conf-mode\n :mode ((\"\\\\.conf\\\\'\" . conf-space-mode)\n (\"\\\\.setup.*\\\\'\" . conf-space-mode)))\n\n\n(provide 'setup-conf)\n","new_contents":";; Time-stamp: <2017-08-15 12:05:32 kmodi>\n\n;; Conf Mode\n\n(use-package conf-mode\n :mode ((\"\\\\.conf\\\\'\" . conf-space-mode)\n (\"\\\\.setup.*\\\\'\" . conf-space-mode))\n :config\n (progn\n (defun modi\/conf-quote-normal ()\n \"Enable `conf-quote-normal' for *.setup files.\"\n (when-let* ((fname (buffer-file-name))\n (enable-conf-quote-normal (string-match-p \"\\\\.setup.*\" fname)))\n ;; Set the syntax of ' and \" to punctuation.\n (conf-quote-normal nil)))\n (add-hook 'conf-space-mode-hook #'modi\/conf-quote-normal)))\n\n\n(provide 'setup-conf)\n","subject":"Set syntax of ' and \" to punctuation for some conf-space-mode files","message":"Set syntax of ' and \" to punctuation for some conf-space-mode files\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"a76dff50da01000a236dff6693bc5f6ff98c72db","old_file":"setup-files\/setup-nim.el","new_file":"setup-files\/setup-nim.el","old_contents":";; Time-stamp: <2018-05-10 09:44:07 kmodi>\n\n;; Nim\n;; https:\/\/github.com\/nim-lang\/nim-mode\n\n(use-package nim-mode\n :ensure t\n :mode ((\"\\\\.nim\\\\'\" . nim-mode))\n :config\n (progn\n (key-chord-define nim-mode-map \"??\" #'devdocs-lookup)\n (with-eval-after-load 'smart-compile\n (add-to-list 'smart-compile-alist\n '(nim-mode . \"nim c --verbosity:0 %f\")))\n\n (when (executable-find \"nimsuggest\")\n (setq nim-nimsuggest-path (executable-find \"nimsuggest\"))\n ;; Currently nimsuggest doesn't support nimscript files, so only nim-mode ..\n ;; nimsuggest will provide hints in the minibuffer using `eldoc-mode'.\n (add-hook 'nim-mode-hook #'nimsuggest-mode)\n ;; (remove-hook 'nim-mode-hook #'nimsuggest-mode)\n )\n\n (use-package ob-nim\n :ensure t\n :config\n (progn\n (with-eval-after-load 'setup-org\n (add-to-list 'modi\/ob-enabled-languages \"nim\" :append))))))\n\n\n(provide 'setup-nim)\n","new_contents":";; Time-stamp: <2018-05-24 11:56:21 kmodi>\n\n;; Nim\n;; https:\/\/github.com\/nim-lang\/nim-mode\n\n(use-package nim-mode\n :ensure t\n :mode ((\"\\\\.nim\\\\'\" . nim-mode))\n :chords (:map nim-mode-map\n (\"??\" . devdocs-lookup))\n :config\n (progn\n (with-eval-after-load 'smart-compile\n (add-to-list 'smart-compile-alist\n '(nim-mode . \"nim c --verbosity:0 %f\")))\n\n (when (executable-find \"nimsuggest\")\n (setq nim-nimsuggest-path (executable-find \"nimsuggest\"))\n ;; Currently nimsuggest doesn't support nimscript files, so only nim-mode ..\n ;; nimsuggest will provide hints in the minibuffer using `eldoc-mode'.\n (add-hook 'nim-mode-hook #'nimsuggest-mode)\n ;; (remove-hook 'nim-mode-hook #'nimsuggest-mode)\n )\n\n (use-package ob-nim\n :ensure t\n :config\n (progn\n (with-eval-after-load 'setup-org\n (add-to-list 'modi\/ob-enabled-languages \"nim\" :append))))))\n\n\n(provide 'setup-nim)\n","subject":"Move the nim-mode specific key-chord binding to :chords","message":"Move the nim-mode specific key-chord binding to :chords\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"0d3504587d4e7a85b57da89201485d810d9dbb19","old_file":".emacs.d\/config\/post-package-load.d\/zz99_auto-mode-alist.el","new_file":".emacs.d\/config\/post-package-load.d\/zz99_auto-mode-alist.el","old_contents":"(add-to-list 'auto-mode-alist '(\"\\.S\" . asm-mode))\n","new_contents":";; Forcibly prepend the following auto-mode-alist.\n(seq-doseq (mode '((\"\\\\.[sS]\\\\'\" . asm-mode)))\n (add-to-list 'auto-mode-alist mode\n nil (lambda (a b) nil)))\n","subject":"Fix auto-mode-alist regex patter for asm-mode.","message":"Fix auto-mode-alist regex patter for asm-mode.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs"} {"commit":"52bee5408a0949b35414446b20513b932e2c1347","old_file":"init-haskell.el","new_file":"init-haskell.el","old_contents":"(require-package 'haskell-mode)\n(setq haskell-font-lock-symbols t)\n\n(add-hook 'haskell-mode-hook\n (lambda ()\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (turn-on-haskell-doc-mode)\n (turn-on-haskell-indent)))\n\n\n(provide 'init-haskell)\n","new_contents":"(require-package 'haskell-mode)\n(setq haskell-font-lock-symbols t)\n\n(add-hook 'haskell-mode-hook\n (lambda ()\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (turn-on-haskell-doc-mode)\n (turn-on-haskell-indent)))\n\n(require-package 'flymake-hlint)\n(add-hook 'haskell-mode-hook #'flymake-hlint-init)\n\n(provide 'init-haskell)\n","subject":"Use my new flymake-hlint with haskell source","message":"Use my new flymake-hlint with haskell source\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"8cd7417c23f5d54369c884816092b9fa78c4dedd","old_file":"setup-files\/setup-buffer-move.el","new_file":"setup-files\/setup-buffer-move.el","old_contents":";; Time-stamp: <2015-06-15 17:08:47 kmodi>\n\n(use-package buffer-move\n :config\n (progn\n (bind-to-modi-map \",\" #'buf-move-left)\n (bind-to-modi-map \".\" #'buf-move-right)\n (bind-to-modi-map \"k\" #'buf-move-up)\n (bind-to-modi-map \"K\" #'buf-move-down)))\n\n\n(provide 'setup-buffer-move)\n","new_contents":";; Time-stamp: <2015-11-06 11:01:35 kmodi>\n\n;; https:\/\/github.com\/lukhas\/buffer-move\n\n(use-package buffer-move\n :commands (modi\/buf-move-left\n modi\/buf-move-right\n modi\/buf-move-up\n modi\/buf-move-down)\n :init\n (progn\n (bind-to-modi-map \",\" #'modi\/buf-move-left)\n (bind-to-modi-map \".\" #'modi\/buf-move-right)\n (bind-to-modi-map \"k\" #'modi\/buf-move-up)\n (bind-to-modi-map \"j\" #'modi\/buf-move-down))\n :config\n (progn\n (setq buffer-move-behavior 'swap) ; values = 'swap (default), 'move\n\n (defun modi\/buf-move-left (swap)\n \"Calls `buf-move-left' with the “move” behavior.\nIf SWAP is non-nil, the default “swap” behavior is used.\"\n (interactive \"P\")\n (let ((buffer-move-behavior (if swap 'swap 'move)))\n (buf-move-left)))\n\n (defun modi\/buf-move-right (swap)\n \"Calls `buf-move-right' with the “move” behavior.\nIf SWAP is non-nil, the default “swap” behavior is used.\"\n (interactive \"P\")\n (let ((buffer-move-behavior (if swap 'swap 'move)))\n (buf-move-right)))\n\n (defun modi\/buf-move-up (swap)\n \"Calls `buf-move-up' with the “move” behavior.\nIf SWAP is non-nil, the default “swap” behavior is used.\"\n (interactive \"P\")\n (let ((buffer-move-behavior (if swap 'swap 'move)))\n (buf-move-up)))\n\n (defun modi\/buf-move-down (swap)\n \"Calls `buf-move-down' with the “move” behavior.\nIf SWAP is non-nil, the default “swap” behavior is used.\"\n (interactive \"P\")\n (let ((buffer-move-behavior (if swap 'swap 'move)))\n (buf-move-down)))))\n\n\n(provide 'setup-buffer-move)\n","subject":"Make “move” the dflt behav for buf-move cmds","message":"Make “move” the dflt behav for buf-move cmds\n\n- Also added wrapper functions to pick either the 'swap or 'move\n behavior\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"b29d6020fe3564d4d422a509e2fc11df29885672","old_file":"init-elpa.el","new_file":"init-elpa.el","old_contents":"(require 'package)\n(add-to-list 'package-archives\n '(\"technomancy\" . \"http:\/\/repo.technomancy.us\/emacs\/\") t)\n(package-initialize)\n\n(provide 'init-elpa)","new_contents":"(require 'package)\n(package-initialize)\n\n(provide 'init-elpa)","subject":"Remove reference to technomancy's deleted ELPA repo","message":"Remove reference to technomancy's deleted ELPA repo\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"farzadbekran\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,YangXin\/emacs.d,renatoriccio\/emacs.d,alant\/emacs.d,lromang\/emacs.d,whizzzkid\/emacs.d,me020523\/emacs.d,zuoshifan\/emacs.d,sgarciac\/emacs.d,boblannon\/emacs.d,wegatron\/emacs.d,zuoshifan\/emacs.d,kongfy\/emacs.d,carlosliu\/emacs.d,jachinpy\/emacs.d,atreeyang\/emacs.d,jkaessens\/emacs.d,dhanunjaya\/emacs.d,Jadecity\/PurcellEmacs.d,jhpx\/emacs.d,zhaotai\/.emacs.d,LittleLmp\/emacs.d,zenith-john\/emacs.d,LKI\/emacs.d,baohaojun\/emacs.d,46do14\/emacs.d,exclamaforte\/emacs.d,zuoshifan\/emacs.d,krzysz00\/emacs.d,dcorking\/emacs.d,farzadbekran\/emacs.d,blueabysm\/emacs.d,ruiyang\/emacs.d,danfengcao\/emacs.d,zhuoyikang\/emacs.d,zuoshifan\/emacs.d,ernest-dzf\/emacs.d,kindoblue\/emacs.d,qianwan\/emacs.d,DarkThrone\/emacs.d,cyjia\/emacs.d,hophacker\/emacs.d,gsmlg\/emacs.d,scorpionis\/emacs.d,farzadbekran\/emacs.d,roxolan\/emacs.d,qinshulei\/emacs.d,caoyuanqi\/emacs.d,zuoshifan\/emacs.d,emuio\/emacs.d,YangXin\/emacs.d,jthetzel\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,braveoyster\/emacs.d,arthurl\/emacs.d,mmqmzk\/emacs.d,Guoozz\/emacs.d,svenyurgensson\/emacs.d,ilove0518\/emacs.d,Togal\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,wenpincui\/emacs.d,mpwang\/emacs.d,lujianmei\/emacs.d,purcell\/emacs.d,hkcqr\/emacs.d,Shanicky\/emacs.d,lust4life\/emacs.d,modkzs\/emcs.d,jachinpy\/emacs.d,dongdonghu\/.emacs.d,shafayetkhan\/emacs.d,pairyo\/emacs.d,Werewolflsp\/emacs.d,cjqw\/emacs.d,fengxl\/emacs.d,bibaijin\/emacs.d,ruiyang\/emacs.d,blueseason\/emacs.d,haodaivshen\/emacs.d,benkha\/emacs.d,Enzo-Liu\/emacs.d"} {"commit":"c073f9e513dd1ec5e7f7955e7ea2dfbd3265a365","old_file":"elisp\/mode-setup.el","new_file":"elisp\/mode-setup.el","old_contents":";; Quack mode for Racket\n(require 'quack)\n\n;; ParEdit\n(autoload 'paredit-mode \"paredit\"\n \"Minor mode for pseudo-structurally editing Lisp code.\" t)\n\n;; File extensions\/major mode bindings\n(add-to-list 'auto-mode-alist '(\"\\\\.rkt$\" . scheme-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.transit$\" . scheme-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.k$\" . k3-mode))\n","new_contents":";; Quack mode for Racket\n(require 'quack)\n\n;; ParEdit\n(autoload 'paredit-mode \"paredit\"\n \"Minor mode for pseudo-structurally editing Lisp code.\" t)\n\n;; File extensions\/major mode bindings\n(add-to-list 'auto-mode-alist '(\"\\\\.rkt$\" . scheme-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.transit$\" . scheme-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.ttest$\" . scheme-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.k$\" . k3-mode))\n","subject":"Add .ttest as scheme-mode extension","message":"Add .ttest as scheme-mode extension\n","lang":"Emacs Lisp","license":"mit","repos":"schuster\/dotfiles"} {"commit":"f750fb8a4d0a077713acb876c903f64aa60636ce","old_file":"emacs.d\/prelude-modules.el","new_file":"emacs.d\/prelude-modules.el","old_contents":";;; Uncomment the modules you'd like to use and restart Prelude afterwards\n\n;; Emacs IRC client\n(require 'prelude-erc)\n(require 'prelude-ido) ;; Super charges Emacs completion for C-x C-f and more\n(require 'prelude-helm) ;; Interface for narrowing and search\n(require 'prelude-helm-everywhere) ;; Enable Helm everywhere\n(require 'prelude-company)\n(require 'prelude-key-chord) ;; Binds useful features to key combinations\n(require 'prelude-mediawiki)\n;; (require 'prelude-evil)\n\n;;; Programming languages support\n(require 'prelude-c)\n(require 'prelude-clojure)\n(require 'prelude-coffee)\n(require 'prelude-common-lisp)\n(require 'prelude-css)\n(require 'prelude-emacs-lisp)\n(require 'prelude-erlang)\n(require 'prelude-go)\n(require 'prelude-haskell)\n(require 'prelude-js)\n(require 'prelude-latex)\n(require 'prelude-lisp)\n(require 'prelude-ocaml)\n(require 'prelude-org) ;; Org-mode helps you keep TODO lists, notes and more\n(require 'prelude-perl)\n(require 'prelude-python)\n(require 'prelude-ruby)\n(require 'prelude-scala)\n(require 'prelude-scheme)\n(require 'prelude-shell)\n(require 'prelude-scss)\n(require 'prelude-web) ;; Emacs mode for web templates\n(require 'prelude-xml)\n(require 'prelude-yaml)\n","new_contents":";;; Uncomment the modules you'd like to use and restart Prelude afterwards\n\n;; Emacs IRC client\n(require 'prelude-erc)\n(require 'prelude-ido) ;; Super charges Emacs completion for C-x C-f and more\n(require 'prelude-helm) ;; Interface for narrowing and search\n(require 'prelude-helm-everywhere) ;; Enable Helm everywhere\n(require 'prelude-company)\n;; (require 'prelude-key-chord) ;; Binds useful features to key combinations\n(require 'prelude-mediawiki)\n(require 'prelude-evil)\n\n;;; Programming languages support\n(require 'prelude-c)\n(require 'prelude-clojure)\n(require 'prelude-coffee)\n(require 'prelude-common-lisp)\n(require 'prelude-css)\n(require 'prelude-emacs-lisp)\n(require 'prelude-erlang)\n(require 'prelude-go)\n(require 'prelude-haskell)\n(require 'prelude-js)\n(require 'prelude-latex)\n(require 'prelude-lisp)\n(require 'prelude-ocaml)\n(require 'prelude-org) ;; Org-mode helps you keep TODO lists, notes and more\n(require 'prelude-perl)\n(require 'prelude-python)\n(require 'prelude-ruby)\n(require 'prelude-scala)\n(require 'prelude-scheme)\n(require 'prelude-shell)\n(require 'prelude-scss)\n(require 'prelude-web) ;; Emacs mode for web templates\n(require 'prelude-xml)\n(require 'prelude-yaml)\n","subject":"Disable key-chords because we're using evil mode now","message":"Disable key-chords because we're using evil mode now\n","lang":"Emacs Lisp","license":"mit","repos":"caleb\/dotfiles,caleb\/dotfiles,caleb\/dotfiles"} {"commit":"2e24253e8144cf40970373d6f6c37cc75539b4bb","old_file":"lisp\/init-direnv.el","new_file":"lisp\/init-direnv.el","old_contents":";;; init-direnv.el --- Integrate with direnv -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(defun sanityinc\/maybe-enable-envrc-global-mode ()\n \"Enable `envrc-global-mode' if `direnv' is installed.\"\n (when (executable-find \"direnv\")\n (envrc-global-mode)))\n\n(when (maybe-require-package 'envrc)\n (with-eval-after-load 'envrc\n (define-key envrc-mode-map (kbd \"C-c e\") 'envrc-command-map))\n (add-hook 'after-init-hook 'sanityinc\/maybe-enable-envrc-global-mode))\n\n(provide 'init-direnv)\n\n;;; init-direnv.el ends here\n","new_contents":";;; init-direnv.el --- Integrate with direnv -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(when (maybe-require-package 'envrc)\n (defun sanityinc\/maybe-enable-envrc-global-mode ()\n \"Enable `envrc-global-mode' if `direnv' is installed.\"\n (when (executable-find \"direnv\")\n (envrc-global-mode)))\n\n (with-eval-after-load 'envrc\n (define-key envrc-mode-map (kbd \"C-c e\") 'envrc-command-map))\n (add-hook 'after-init-hook 'sanityinc\/maybe-enable-envrc-global-mode))\n\n(provide 'init-direnv)\n\n;;; init-direnv.el ends here\n","subject":"Define function inside conditional block which uses it","message":"Define function inside conditional block which uses it\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"krzysz00\/emacs.d,gsmlg\/emacs.d,emuio\/emacs.d,arthurl\/emacs.d,purcell\/emacs.d,dcorking\/emacs.d,qianwan\/emacs.d,lust4life\/emacs.d,blueseason\/emacs.d"} {"commit":"34dc58b806506841534835f26dfe1b4b2b06e48f","old_file":".mc-lists.el","new_file":".mc-lists.el","old_contents":";; This file is automatically generated by the multiple-cursors extension.\n;; It keeps track of your preferences for running commands with multiple cursors.\n\n(setq mc\/cmds-to-run-for-all\n '(\n backward-sexp\n beginning-of-line-dwim\n c-electric-delete-forward\n c-electric-semi&comma\n c-electric-slash\n c-electric-star\n forward-sexp\n kill-or-delete-region\n org-delete-char\n org-self-insert-command\n python-indent-electric-colon\n sp--self-insert-command\n yas-expand\n zap-up-to-char\n zap-up-to-non-whitespace\n ))\n\n(setq mc\/cmds-to-run-once\n '(\n ag-project-at-point\n mouse-set-region\n smex\n sp-rewrap-sexp\n sp-splice-sexp\n ))\n","new_contents":";; This file is automatically generated by the multiple-cursors extension.\n;; It keeps track of your preferences for running commands with multiple cursors.\n\n(setq mc\/cmds-to-run-for-all\n '(\n backward-sexp\n beginning-of-line-dwim\n c-electric-delete-forward\n c-electric-semi&comma\n c-electric-slash\n c-electric-star\n forward-sexp\n kill-or-delete-region\n org-delete-char\n org-self-insert-command\n python-indent-electric-colon\n sgml-slash\n sp--self-insert-command\n yas-expand\n zap-up-to-char\n zap-up-to-non-whitespace\n ))\n\n(setq mc\/cmds-to-run-once\n '(\n ag-project-at-point\n mouse-set-region\n smex\n sp-rewrap-sexp\n sp-splice-sexp\n ))\n","subject":"Enable another command with multiple-cursors.","message":"Enable another command with multiple-cursors.\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"cc7492f013f2416d7e6fd7cb1e15eec155f5822a","old_file":"home\/.emacs.d\/lisp\/init-yasnippet.el","new_file":"home\/.emacs.d\/lisp\/init-yasnippet.el","old_contents":";;; init-yasnippet.el -- yasnippet setup\n\n;;; Commentary:\n;;; yasnippet and custom snippets\n\n;;; Code:\n(require-package 'yasnippet)\n\n(require 'yasnippet)\n\n(yas-global-mode 1)\n\n(setq yas-snippet-dirs\n '(\"~\/.emacs.d\/snippets\" \"~\/code\/yasnippet-snippets\"))\n\n(diminish 'yas-minor-mode)\n\n(provide 'init-yasnippet)\n;;; init-yasnippet.el ends here\n","new_contents":";;; init-yasnippet.el -- yasnippet setup\n\n;;; Commentary:\n;;; yasnippet and custom snippets\n\n;;; Code:\n(require-package 'yasnippet)\n\n(require 'yasnippet)\n\n(setq yas-snippet-dirs\n '(\"~\/.emacs.d\/snippets\" \"~\/code\/yasnippet-snippets\"))\n\n(yas-global-mode 1)\n(define-key yas-keymap (kbd \"DEL\") 'yas-skip-and-clear-or-delete-char)\n\n(diminish 'yas-minor-mode)\n\n(provide 'init-yasnippet)\n;;; init-yasnippet.el ends here\n","subject":"Fix Emacs YAS backspace in middle of snippet","message":"Fix Emacs YAS backspace in middle of snippet\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"476462c1aaa0d7b2e9d96aacec52737dc8308a61","old_file":"emacs.d\/config\/config-go.el","new_file":"emacs.d\/config\/config-go.el","old_contents":"(add-hook 'go-mode-hook 'my\/common-programming-hook)\n(add-hook 'go-mode-hook\n (lambda()\n (local-set-key (kbd \"C-x C-o\") 'ff-find-other-file)\n )\n )\n","new_contents":"(add-hook 'go-mode-hook 'my\/common-programming-hook)\n(add-hook 'go-mode-hook\n (lambda()\n (local-set-key (kbd \"C-x C-o\") 'ff-find-other-file)\n (add-hook 'before-save-hook 'gofmt-before-save nil 'local)\n )\n )\n","subject":"Call gofmt on buffer save.","message":"Call gofmt on buffer save.\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"shaleh\/dot-files"} {"commit":"d76a5a0d7f3bd7f66d69b25096d97013af44ae85","old_file":"emacs\/.emacs.d\/pkgs\/olical-evil.el","new_file":"emacs\/.emacs.d\/pkgs\/olical-evil.el","old_contents":";;; olical-evil --- Tweaks and additions for evil mode.\n\n;;; Commentary:\n\n;; I want to add some bindings I miss, like [e from distinguished and\n;; a few sexp manipulation bindings.\n\n;;; Code:\n\n(provide 'olical-evil)\n;;; olical-evil.el ends here\n","new_contents":";;; olical-evil --- Tweaks and additions for evil mode.\n\n;;; Commentary:\n\n;; I want to add some bindings I miss, like [e from distinguished and\n;; a few sexp manipulation bindings.\n\n;;; Code:\n\n(require 'evil)\n\n(defun olical-evil-new-line-above (count)\n \"Create new lines above your current one. COUNT is the number of new lines.\"\n (interactive \"p\")\n (evil-open-above count)\n (evil-force-normal-state)\n (evil-next-line 1))\n\n(defun olical-evil-new-line-below (count)\n \"Create new lines below your current one. COUNT is the number of new lines.\"\n (interactive \"p\")\n (evil-open-below count)\n (evil-force-normal-state)\n (evil-previous-line 1))\n\n(define-key evil-normal-state-map (kbd \"[ SPC\") 'olical-evil-new-line-above)\n(define-key evil-normal-state-map (kbd \"] SPC\") 'olical-evil-new-line-below)\n\n(provide 'olical-evil)\n;;; olical-evil.el ends here\n","subject":"Set up [SPC and ]SPC new line binds","message":"Set up [SPC and ]SPC new line binds\n","lang":"Emacs Lisp","license":"unlicense","repos":"Wolfy87\/dotfiles,Wolfy87\/dotfiles,Olical\/dotfiles"} {"commit":"80c827119d9b1deb9a900c5a281ebb084d02ab48","old_file":"modules\/lang\/rust\/doctor.el","new_file":"modules\/lang\/rust\/doctor.el","old_contents":";; -*- lexical-binding: t; no-byte-compile: t; -*-\n;;; lang\/rust\/doctor.el\n\n(assert! (or (not (featurep! +lsp))\n (featurep! :tools lsp))\n \"This module requires (:tools lsp)\")\n\n(unless (executable-find \"rustc\")\n (warn! \"Couldn't find rustc binary\"))\n\n(unless (executable-find \"cargo\")\n (warn! \"Couldn't find cargo binary\"))\n\n(if (featurep! +lsp)\n (let ((lsp-server 'rls))\n (when (require 'rustic nil t)\n (setq lsp-server rustic-lsp-server))\n (pcase lsp-server\n (`rust-analyzer\n (unless (executable-find \"ra_lsp_server\")\n (warn! \"Couldn't find rust analyzer (ra_lsp_server)\")))\n (`rls\n (unless (executable-find \"rls\")\n (warn! \"Couldn't find rls\")))))\n (when (require 'racer nil t)\n ;; racer\n (unless (file-exists-p racer-cmd)\n (warn! \"Couldn't find the racer binary at `racer-cmd'\"))\n ;; rust source code (rustup component add rust-src)\n (unless (file-directory-p racer-rust-src-path)\n (warn! \"Couldn't find Rust's source code at RUST_SRC_PATH or `racer-rust-src-path'\"))))\n","new_contents":";; -*- lexical-binding: t; no-byte-compile: t; -*-\n;;; lang\/rust\/doctor.el\n\n(assert! (or (not (featurep! +lsp))\n (featurep! :tools lsp))\n \"This module requires (:tools lsp)\")\n\n(unless (executable-find \"rustc\")\n (warn! \"Couldn't find rustc binary\"))\n\n(unless (executable-find \"cargo\")\n (warn! \"Couldn't find cargo binary\"))\n\n(if (featurep! +lsp)\n (let ((lsp-server 'rls))\n (when (require 'rustic nil t)\n (setq lsp-server rustic-lsp-server))\n (pcase lsp-server\n (`rust-analyzer\n (unless (executable-find \"rust-analyzer\")\n (warn! \"Couldn't find rust analyzer (rust-analyzer)\")))\n (`rls\n (unless (executable-find \"rls\")\n (warn! \"Couldn't find rls\")))))\n (when (require 'racer nil t)\n ;; racer\n (unless (file-exists-p racer-cmd)\n (warn! \"Couldn't find the racer binary at `racer-cmd'\"))\n ;; rust source code (rustup component add rust-src)\n (unless (file-directory-p racer-rust-src-path)\n (warn! \"Couldn't find Rust's source code at RUST_SRC_PATH or `racer-rust-src-path'\"))))\n","subject":"Fix references to old rust-analyzer binary","message":"Fix references to old rust-analyzer binary\n\nCloses #2588\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"2ebd21dec78ece7517e36ae2f83eeb38526d1014","old_file":"layers\/my-yadm\/packages.el","new_file":"layers\/my-yadm\/packages.el","old_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-yadm-packages '(magit))\n\n(defun my-yadm\/post-init-magit ()\n (spacemacs\/set-leader-keys \"oy\" #'yadm-status)\n\n (when (configuration-layer\/package-used-p 'magit-todos)\n (advice-add 'magit-todos--insert-todos :around\n #'yadm--magit-todos-manual-scan-ad))\n\n (with-eval-after-load 'tramp\n (add-to-list 'tramp-methods\n '(\"yadm\"\n (tramp-login-program \"yadm\")\n (tramp-login-args ((\"enter\")))\n (tramp-login-env ((\"SHELL\") (\"\/bin\/sh\")))\n (tramp-remote-shell \"\/bin\/sh\")\n (tramp-remote-shell-args (\"-c\"))))))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-yadm-packages '(magit))\n\n(defun my-yadm\/post-init-magit ()\n (spacemacs\/set-leader-keys \"oy\" #'yadm-status)\n\n (when (configuration-layer\/package-used-p 'magit-todos)\n (advice-add 'magit-todos--insert-todos :around\n #'yadm--magit-todos-manual-scan-ad))\n\n (with-eval-after-load 'tramp\n (add-to-list 'tramp-methods\n '(\"yadm\"\n (tramp-login-program \"env\")\n (tramp-login-args ((\"SHELL=\/bin\/sh\") (\"yadm\") (\"enter\")))\n (tramp-remote-shell \"\/bin\/sh\")\n (tramp-remote-shell-args (\"-c\"))))))\n","subject":"Fix yadm integration to work with Emacs 27.1 as well","message":"Fix yadm integration to work with Emacs 27.1 as well\n\nSince tramp-login-env is no more, this achieves the same effect without it.\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"23495b5ca768c74bd78f78d10c7efe916bd28f9f","old_file":"lisp\/packages.el","new_file":"lisp\/packages.el","old_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '(magit flymake-ruby ruby-end inf-ruby htmlize yaml-mode bm gist haskell-mode)\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive t))\n\n;; Prepare package management\n(package-initialize)\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p))))\n","new_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '(magit flymake-ruby ruby-end inf-ruby htmlize yaml-mode\n bm gist haskell-mode switch-window)\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive t))\n\n;; Prepare package management\n(package-initialize)\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p))))\n","subject":"Add a package for switching windows easily","message":"Add a package for switching windows easily\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"594af9ff472d0e1ce33754f89d272b0bdccd5e5d","old_file":"emacs\/.emacs.d\/packages\/execpath.el","new_file":"emacs\/.emacs.d\/packages\/execpath.el","old_contents":"(use-package exec-path-from-shell\n :ensure t\n :if (memq window-system '(mac ns x))\n :config\n (exec-path-from-shell-copy-env \"LANG\")\n (exec-path-from-shell-copy-env \"MAKEFLAGS\")\n (exec-path-from-shell-initialize))\n","new_contents":"(use-package exec-path-from-shell\n :ensure t\n :if (memq window-system '(mac ns x))\n :config\n (exec-path-from-shell-copy-env \"PATH\")\n (exec-path-from-shell-copy-env \"LANG\")\n (exec-path-from-shell-copy-env \"MAKEFLAGS\")\n (exec-path-from-shell-initialize))\n","subject":"Copy $PATH env when running exec-path-from-shell","message":"Emacs: Copy $PATH env when running exec-path-from-shell\n","lang":"Emacs Lisp","license":"mit","repos":"benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles"} {"commit":"68a7b221e5cd0baca2389afeb804981c65b7df7d","old_file":"home\/.emacs.d\/lisp\/init-projectile.el","new_file":"home\/.emacs.d\/lisp\/init-projectile.el","old_contents":";;; init-projectile.el -- projetile setup\n\n;;; Commentary:\n;;; load projectile and customizations\n\n;;; Code:\n(require 'use-package)\n\n(use-package projectile\n :commands (projectile-global-mode)\n :config\n (projectile-global-mode 1)\n (define-key projectile-mode-map (kbd \"C-c p R\") 'my\/projectile-regenerate-tags)\n (with-eval-after-load 'evil\n (key-seq-define evil-normal-state-map \",t\" 'helm-projectile))\n :diminish projectile-mode\n :init\n (add-hook 'after-init-hook 'projectile-global-mode))\n\n(defun my\/projectile-regenerate-tags ()\n \"Regenerate projectile tags using git ctags.\"\n (interactive)\n (progn\n (start-process-shell-command\n \"tags\" nil (format \"cd %s; git ctags\"\n (projectile-project-root)))\n (message \"Generating tags file\")))\n\n(provide 'init-projectile)\n;;; init-projectile.el ends here\n","new_contents":";;; init-projectile.el -- projetile setup\n\n;;; Commentary:\n;;; load projectile and customizations\n\n;;; Code:\n(require 'use-package)\n\n(use-package projectile\n :commands (projectile-global-mode)\n :config\n (projectile-global-mode 1)\n (define-key projectile-mode-map (kbd \"C-c p R\") 'my\/projectile-regenerate-tags)\n (with-eval-after-load 'evil\n (key-seq-define evil-normal-state-map \",t\" 'helm-projectile))\n (setq projectile-switch-project-action 'projectile-commander)\n (def-projectile-commander-method ?s\n \"Open a *shell* buffer for the project.\"\n (projectile-run-shell))\n (def-projectile-commander-method ?d\n \"Open project root in dired.\"\n (projectile-dired))\n :diminish projectile-mode\n :init\n (add-hook 'after-init-hook 'projectile-global-mode))\n\n(defun my\/projectile-regenerate-tags ()\n \"Regenerate projectile tags using git ctags.\"\n (interactive)\n (progn\n (start-process-shell-command\n \"tags\" nil (format \"cd %s; git ctags\"\n (projectile-project-root)))\n (message \"Generating tags file\")))\n\n(provide 'init-projectile)\n;;; init-projectile.el ends here\n","subject":"Use projectile commander as default action","message":"Use projectile commander as default action\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"2e71ab1fb8bb22958948fe677494e701883d50fb","old_file":"init-slime.el","new_file":"init-slime.el","old_contents":"(require 'slime-autoloads)\n(global-set-key [f4] 'slime-selector)\n\n\n(eval-after-load \"slime\"\n '(progn\n (add-to-list 'load-path (concat (directory-of-library \"slime\") \"\/contrib\"))\n (add-hook 'slime-mode-hook 'pretty-lambdas)\n (add-hook 'slime-mode-hook 'enable-paredit-mode)\n (add-hook 'slime-repl-mode-hook 'enable-paredit-mode)\n (slime-setup '(slime-repl slime-fuzzy slime-highlight-edits))\n (setq slime-complete-symbol*-fancy t)\n (setq slime-complete-symbol-function 'slime-fuzzy-complete-symbol)\n\n (require 'ac-slime)\n (add-hook 'slime-mode-hook 'set-up-slime-ac)\n (add-hook 'slime-repl-mode-hook 'set-up-slime-ac)\n\n (require 'hippie-expand-slime)\n (add-hook 'slime-mode-hook 'set-up-slime-hippie-expand)\n (add-hook 'slime-repl-mode-hook 'set-up-slime-hippie-expand)))\n\n\n\n(provide 'init-slime)\n","new_contents":"(require 'slime-autoloads)\n(global-set-key [f4] 'slime-selector)\n\n\n(eval-after-load \"slime\"\n '(progn\n (add-to-list 'load-path (concat (directory-of-library \"slime\") \"\/contrib\"))\n (add-hook 'slime-mode-hook 'pretty-lambdas)\n (add-hook 'slime-mode-hook 'enable-paredit-mode)\n (add-hook 'slime-repl-mode-hook 'enable-paredit-mode)\n (slime-setup '(slime-repl slime-fuzzy slime-highlight-edits))\n (setq slime-complete-symbol*-fancy t)\n (setq slime-complete-symbol-function 'slime-fuzzy-complete-symbol)\n\n ;; Stop SLIME's REPL from grabbing DEL, which is annoying when backspacing over a '('\n (defun override-slime-repl-bindings-with-paredit ()\n (define-key slime-repl-mode-map (read-kbd-macro paredit-backward-delete-key) nil))\n (add-hook 'slime-repl-mode-hook 'override-slime-repl-bindings-with-paredit)\n\n (require 'ac-slime)\n (add-hook 'slime-mode-hook 'set-up-slime-ac)\n (add-hook 'slime-repl-mode-hook 'set-up-slime-ac)\n\n (require 'hippie-expand-slime)\n (add-hook 'slime-mode-hook 'set-up-slime-hippie-expand)\n (add-hook 'slime-repl-mode-hook 'set-up-slime-hippie-expand)))\n\n\n\n(provide 'init-slime)\n","subject":"Stop SLIME's REPL from grabbing DEL, which is annoying when backspacing over a '('","message":"Stop SLIME's REPL from grabbing DEL, which is annoying when backspacing over a '('\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zuoshifan\/emacs.d,zuoshifan\/emacs.d,ruiyang\/emacs.d,blueabysm\/emacs.d,whizzzkid\/emacs.d,zuoshifan\/emacs.d,jachinpy\/emacs.d,alant\/emacs.d,exclamaforte\/emacs.d,dhanunjaya\/emacs.d,kindoblue\/emacs.d,shafayetkhan\/emacs.d,zuoshifan\/emacs.d,DarkThrone\/emacs.d,dcorking\/emacs.d,zuoshifan\/emacs.d,krzysz00\/emacs.d,emuio\/emacs.d,zhaotai\/.emacs.d,Togal\/emacs.d,zuoshifan\/emacs.d,zhuoyikang\/emacs.d,haodaivshen\/emacs.d,ernest-dzf\/emacs.d,jachinpy\/emacs.d,hophacker\/emacs.d,ruiyang\/emacs.d,baohaojun\/emacs.d,farzadbekran\/emacs.d,46do14\/emacs.d,YangXin\/emacs.d,me020523\/emacs.d,zenith-john\/emacs.d,modkzs\/emcs.d,dongdonghu\/.emacs.d,boblannon\/emacs.d,pairyo\/emacs.d,zuoshifan\/emacs.d,mmqmzk\/emacs.d,scorpionis\/emacs.d,carlosliu\/emacs.d,svenyurgensson\/emacs.d,kongfy\/emacs.d,Enzo-Liu\/emacs.d,renatoriccio\/emacs.d,purcell\/emacs.d,roxolan\/emacs.d,qinshulei\/emacs.d,jkaessens\/emacs.d,arthurl\/emacs.d,lujianmei\/emacs.d,qianwan\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,LittleLmp\/emacs.d,cyjia\/emacs.d,lust4life\/emacs.d,jhpx\/emacs.d,hkcqr\/emacs.d,farzadbekran\/emacs.d,ilove0518\/emacs.d,braveoyster\/emacs.d,sgarciac\/emacs.d,Werewolflsp\/emacs.d,YangXin\/emacs.d,zuoshifan\/emacs.d,Guoozz\/emacs.d,farzadbekran\/emacs.d,mpwang\/emacs.d,cjqw\/emacs.d,blueseason\/emacs.d,Jadecity\/PurcellEmacs.d,farzadbekran\/emacs.d,jthetzel\/emacs.d,atreeyang\/emacs.d,caoyuanqi\/emacs.d,wenpincui\/emacs.d,Shanicky\/emacs.d,LKI\/emacs.d,lromang\/emacs.d,wegatron\/emacs.d,bibaijin\/emacs.d,benkha\/emacs.d,fengxl\/emacs.d,danfengcao\/emacs.d,gsmlg\/emacs.d"} {"commit":"1626c3946db7fad3d0cc032d70a154cdd6064ef3","old_file":".emacs.d\/lisp\/java.el","new_file":".emacs.d\/lisp\/java.el","old_contents":"\n(require 'eclim)\n(global-eclim-mode)\n\n\n(require 'eclimd)\n\n(set 'eclim-eclipse-dirs '(\"~\/code\/eclipse\"))\n(set 'eclim-executable \"~\/code\/eclipse\/eclim\")\n(set 'eclimd-wait-for-process nil)\n\n;; don't think we can change this now :(\n(set 'eclimd-workspace-dir \"~\/.eclipse-workspace\")\n\n\n\n(require 'ac-emacs-eclim-source)\n(ac-emacs-eclim-config)\n\n(defun java-keys ()\n (interactive)\n ;; (local-set-key (kbd \"M-.\") 'eclim-java-find-declaration)\n \n (local-set-key (kbd \"C-c\") '())\n\n ;; ;; Fix tab bindings (messed up by yas and\/or binding C-i\n ;; (local-set-key (kbd \"TAB\") '())\n ;; (set-tab)\n\n )\n(add-hook 'java-mode-hook 'java-keys)\n\n;; Run eclimd automatically when we open a java buffer (if not running\n;; already).\n(add-hook 'java-mode-hook \n (lambda () (unless (eclimd--running-p)\n (start-eclimd eclimd-workspace-dir)\n (define-key java-mode-map (kbd \"C-c\") nil))))\n\n","new_contents":"\n;; (require 'eclim)\n;; (global-eclim-mode)\n\n\n;; (require 'eclimd)\n\n;; (set 'eclim-eclipse-dirs '(\"~\/code\/eclipse\"))\n;; (set 'eclim-executable \"~\/code\/eclipse\/eclim\")\n;; (set 'eclimd-wait-for-process nil)\n\n;; ;; don't think we can change this now :(\n;; (set 'eclimd-workspace-dir \"~\/.eclipse-workspace\")\n\n\n\n;; (require 'ac-emacs-eclim-source)\n;; (ac-emacs-eclim-config)\n\n(defun java-keys ()\n (interactive)\n ;; (local-set-key (kbd \"M-.\") 'eclim-java-find-declaration)\n \n (local-set-key (kbd \"C-c\") '())\n\n ;; ;; Fix tab bindings (messed up by yas and\/or binding C-i\n ;; (local-set-key (kbd \"TAB\") '())\n ;; (set-tab)\n\n )\n(add-hook 'java-mode-hook 'java-keys)\n\n;; ;; Run eclimd automatically when we open a java buffer (if not running\n;; ;; already).\n;; (add-hook 'java-mode-hook\n;; (lambda () (unless (eclimd--running-p)\n;; (start-eclimd eclimd-workspace-dir)\n;; (define-key java-mode-map (kbd \"C-c\") nil))))\n\n","subject":"Disable eclim, it's too slow!","message":"Disable eclim, it's too slow!\n","lang":"Emacs Lisp","license":"cc0-1.0","repos":"davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles"} {"commit":"30cc02d3301db4c90928d1a27235b35ac857e6e6","old_file":"init-haml.el","new_file":"init-haml.el","old_contents":"(add-auto-mode 'haml-mode \"\\.haml$\")\n(add-auto-mode 'sass-mode \"\\.sass$\" \"\\.scss$\")\n\n(add-hook 'haml-mode-hook 'flymake-haml-load)\n(add-hook 'sass-mode-hook 'flymake-sass-load)\n\n\n(provide 'init-haml)\n","new_contents":"(add-auto-mode 'sass-mode \"\\.scss$\")\n\n(add-hook 'haml-mode-hook 'flymake-haml-load)\n(add-hook 'sass-mode-hook 'flymake-sass-load)\n\n\n(provide 'init-haml)\n","subject":"Remove redundant haml config that is provided by elpa packages","message":"Remove redundant haml config that is provided by elpa packages\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"braveoyster\/emacs.d,jachinpy\/emacs.d,modkzs\/emcs.d,46do14\/emacs.d,zuoshifan\/emacs.d,DarkThrone\/emacs.d,farzadbekran\/emacs.d,zenith-john\/emacs.d,dhanunjaya\/emacs.d,gsmlg\/emacs.d,shafayetkhan\/emacs.d,zhuoyikang\/emacs.d,renatoriccio\/emacs.d,roxolan\/emacs.d,fengxl\/emacs.d,cjqw\/emacs.d,zuoshifan\/emacs.d,YangXin\/emacs.d,lromang\/emacs.d,kongfy\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,exclamaforte\/emacs.d,bibaijin\/emacs.d,jhpx\/emacs.d,dcorking\/emacs.d,hophacker\/emacs.d,lust4life\/emacs.d,alant\/emacs.d,farzadbekran\/emacs.d,danfengcao\/emacs.d,caoyuanqi\/emacs.d,carlosliu\/emacs.d,ernest-dzf\/emacs.d,Jadecity\/PurcellEmacs.d,zuoshifan\/emacs.d,emuio\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,svenyurgensson\/emacs.d,blueseason\/emacs.d,mpwang\/emacs.d,dongdonghu\/.emacs.d,zuoshifan\/emacs.d,qinshulei\/emacs.d,ilove0518\/emacs.d,farzadbekran\/emacs.d,Shanicky\/emacs.d,YangXin\/emacs.d,kindoblue\/emacs.d,Werewolflsp\/emacs.d,LKI\/emacs.d,scorpionis\/emacs.d,qianwan\/emacs.d,ruiyang\/emacs.d,LittleLmp\/emacs.d,wegatron\/emacs.d,pairyo\/emacs.d,zhaotai\/.emacs.d,ruiyang\/emacs.d,baohaojun\/emacs.d,whizzzkid\/emacs.d,krzysz00\/emacs.d,mmqmzk\/emacs.d,purcell\/emacs.d,zuoshifan\/emacs.d,cyjia\/emacs.d,zuoshifan\/emacs.d,atreeyang\/emacs.d,zuoshifan\/emacs.d,benkha\/emacs.d,lujianmei\/emacs.d,jkaessens\/emacs.d,blueabysm\/emacs.d,haodaivshen\/emacs.d,arthurl\/emacs.d,jthetzel\/emacs.d,sgarciac\/emacs.d,hkcqr\/emacs.d,Togal\/emacs.d,Enzo-Liu\/emacs.d,Guoozz\/emacs.d,boblannon\/emacs.d,wenpincui\/emacs.d,farzadbekran\/emacs.d,me020523\/emacs.d"} {"commit":"bb1739109f98fb546b75771d358537ceeed7a699","old_file":"init-nxml.el","new_file":"init-nxml.el","old_contents":"(load-library \"rng-auto\")\n(add-to-list 'auto-mode-alist\n (cons (concat \"\\\\.\" (regexp-opt '(\"xml\" \"xsd\" \"sch\" \"rng\" \"xslt\" \"svg\" \"rss\") t) \"\\\\'\")\n 'nxml-mode))\n(unify-8859-on-decoding-mode)\n(setq magic-mode-alist (cons '(\"<\\?xml \" . nxml-mode) magic-mode-alist))\n(fset 'html-mode 'nxml-mode)\n(fset 'xml-mode 'nxml-mode)\n(add-hook 'nxml-mode-hook (lambda ()\n (make-variable-buffer-local 'ido-use-filename-at-point)\n (setq ido-use-filename-at-point nil)))\n","new_contents":"(load-library \"rng-auto\")\n(add-to-list 'auto-mode-alist\n (cons (concat \"\\\\.\" (regexp-opt '(\"xml\" \"xsd\" \"sch\" \"rng\" \"xslt\" \"svg\" \"rss\") t) \"\\\\'\")\n 'nxml-mode))\n(unify-8859-on-decoding-mode)\n(setq magic-mode-alist (cons '(\"<\\\\?xml \" . nxml-mode) magic-mode-alist))\n(fset 'html-mode 'nxml-mode)\n(fset 'xml-mode 'nxml-mode)\n(add-hook 'nxml-mode-hook (lambda ()\n (make-variable-buffer-local 'ido-use-filename-at-point)\n (setq ido-use-filename-at-point nil)))\n","subject":"Fix some odd unicode backslashes that sneaked in","message":"Fix some odd unicode backslashes that sneaked in\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zuoshifan\/emacs.d,zuoshifan\/emacs.d,YangXin\/emacs.d,purcell\/emacs.d,cyjia\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,wegatron\/emacs.d,fengxl\/emacs.d,hophacker\/emacs.d,ernest-dzf\/emacs.d,pairyo\/emacs.d,Guoozz\/emacs.d,farzadbekran\/emacs.d,renatoriccio\/emacs.d,jhpx\/emacs.d,zuoshifan\/emacs.d,shafayetkhan\/emacs.d,baohaojun\/emacs.d,Jadecity\/PurcellEmacs.d,modkzs\/emcs.d,me020523\/emacs.d,zuoshifan\/emacs.d,DarkThrone\/emacs.d,jkaessens\/emacs.d,LKI\/emacs.d,atreeyang\/emacs.d,mpwang\/emacs.d,emuio\/emacs.d,zuoshifan\/emacs.d,ruiyang\/emacs.d,46do14\/emacs.d,Enzo-Liu\/emacs.d,benkha\/emacs.d,svenyurgensson\/emacs.d,haodaivshen\/emacs.d,gsmlg\/emacs.d,jachinpy\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,dcorking\/emacs.d,qinshulei\/emacs.d,hkcqr\/emacs.d,bibaijin\/emacs.d,Shanicky\/emacs.d,qianwan\/emacs.d,zhuoyikang\/emacs.d,zuoshifan\/emacs.d,lromang\/emacs.d,lujianmei\/emacs.d,wenpincui\/emacs.d,dhanunjaya\/emacs.d,lust4life\/emacs.d,dongdonghu\/.emacs.d,scorpionis\/emacs.d,exclamaforte\/emacs.d,danfengcao\/emacs.d,Togal\/emacs.d,farzadbekran\/emacs.d,zhaotai\/.emacs.d,whizzzkid\/emacs.d,krzysz00\/emacs.d,Werewolflsp\/emacs.d,zenith-john\/emacs.d,carlosliu\/emacs.d,arthurl\/emacs.d,alant\/emacs.d,cjqw\/emacs.d,sgarciac\/emacs.d,boblannon\/emacs.d,roxolan\/emacs.d,farzadbekran\/emacs.d,mmqmzk\/emacs.d,ruiyang\/emacs.d,caoyuanqi\/emacs.d,blueseason\/emacs.d,braveoyster\/emacs.d,LittleLmp\/emacs.d,farzadbekran\/emacs.d,ilove0518\/emacs.d,kongfy\/emacs.d,blueabysm\/emacs.d,YangXin\/emacs.d,jthetzel\/emacs.d,kindoblue\/emacs.d,farzadbekran\/emacs.d"} {"commit":"78a27857a6a61467437d71a7ff38321cc40c6780","old_file":"modules\/module-php.el","new_file":"modules\/module-php.el","old_contents":";;; module-php.el\n\n(use-package php-mode\n :mode \"\\\\.\\\\(php\\\\|inc\\\\)$\"\n :init\n (setq php-template-compatibility nil)\n :config\n (require 'php-extras)\n (add-company-backend! php-mode '(php-extras-company))\n\n ;; TODO Tie into emr\n (require 'php-refactor-mode)\n (add-hook! php-mode '(turn-on-eldoc-mode emr-initialize php-refactor-mode)))\n\n(provide 'module-php)\n;;; module-php.el ends here\n","new_contents":";;; module-php.el\n\n(use-package php-mode\n :mode \"\\\\.\\\\(php\\\\|inc\\\\)$\"\n :init\n (setq php-template-compatibility nil\n php-extras-eldoc-functions-file (concat narf-temp-dir \"php-extras-eldoc-functions\"))\n :config\n (require 'php-extras)\n (add-company-backend! php-mode '(php-extras-company))\n\n ;; TODO Tie into emr\n (require 'php-refactor-mode)\n (add-hook! php-mode '(turn-on-eldoc-mode emr-initialize php-refactor-mode)))\n\n(provide 'module-php)\n;;; module-php.el ends here\n","subject":"Save php-extras-eldoc-functions-file in cache dir","message":"Save php-extras-eldoc-functions-file in cache dir\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,aminb\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,hlissner\/.emacs.d,keoko\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,keoko\/.emacs.d,hlissner\/.emacs.d,keoko\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,keoko\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,keoko\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,keoko\/.emacs.d,keoko\/.emacs.d,aminb\/.emacs.d,hlissner\/.emacs.d,aminb\/.emacs.d,keoko\/.emacs.d"} {"commit":"a1cab2dfa64c6638a6baef67a010a105ecdebb95","old_file":".emacs.d\/test\/lisp\/code\/languages\/sh-test.el","new_file":".emacs.d\/test\/lisp\/code\/languages\/sh-test.el","old_contents":"(kotct\/load-corresponding)\n\n(describe \"sh config\"\n (it \"adds a tab variable setter for `sh-basic-offset'\"\n (expect (assoc 'sh-basic-offset kotct\/tab-variable-setters) :to-be-truthy))\n (it \"adds a tab variable setter for `sh-indentation'\"\n (expect (assoc 'sh-indentation kotct\/tab-variable-setters) :to-be-truthy)))\n","new_contents":"(kotct\/load-corresponding)\n\n(describe \"sh config\"\n (it \"adds a tab variable setter for `sh-basic-offset'\"\n (expect (assoc 'sh-basic-offset kotct\/tab-variable-setters) :to-be-truthy))\n (it \"adds a tab variable setter for `sh-indentation'\"\n (expect (assoc 'sh-indentation kotct\/tab-variable-setters) :to-be-truthy))\n (it \"sets the indentation for case labels to 0\"\n (expect sh-indent-for-case-label :to-be 0))\n (it \"sets the indentation for case alts to be one level\"\n (expect sh-indent-for-case-alt :to-be '+)))\n","subject":"Add the rest of the specs for the sh configuration","message":"Add the rest of the specs for the sh configuration\n\nNote that I did not include a test for `sh-mode-hook` having `indent-tabs-mode` set to `t` by default. This is primarily due to concerns about equality checking, since it currently runs a `lambda`. I plan to make API changes to `indentation` to improve all of this, however, so it might be best to ship it like this.\n","lang":"Emacs Lisp","license":"mit","repos":"kotct\/dot,kotct\/dot"} {"commit":"a09eff87080fa9a5cfabc1c0db28f009f79a20fc","old_file":"emacs.d\/personal\/settings\/multiple-cursors.el","new_file":"emacs.d\/personal\/settings\/multiple-cursors.el","old_contents":"(require 'multiple-cursors)\n\n(smartrep-define-key global-map \"C-l v\" '((\"n\" . 'mc\/mark-next-lines)\n (\"p\" . 'mc\/mark-previous-lines)\n (\">\" . 'mc\/mark-next-like-this)\n (\"<\" . 'mc\/mark-previous-like-this)))\n\n(smartrep-define-key global-map \"C-l C-v\" '((\"C-n\" . 'mc\/mark-next-lines)\n (\"C-p\" . 'mc\/mark-previous-lines)\n (\"C->\" . 'mc\/mark-next-like-this)\n (\"C-<\" . 'mc\/mark-previous-like-this)))\n\n(mapc (lambda (cmd)\n (add-to-list 'mc\/cmds-to-run-for-all cmd))\n '(\n sp--self-insert-command\n god-mode-self-insert\n ))\n\n(mapc (lambda (cmd)\n (add-to-list 'mc\/cmds-to-run-once cmd))\n '(\n god-mode\n god-mode-all\n god-local-mode\n helm-confirm-and-exit-minibuffer\n split-window-horizontally\n split-window-vertically\n mc\/mark-next-lines\n mc\/mark-next-like-this\n undo-tree-visualizer-quit\n undo-tree-visualize\n keyboard-escape-quit\n ))\n","new_contents":"(require 'multiple-cursors)\n\n(smartrep-define-key global-map \"C-l v\" '((\"n\" . 'mc\/mark-next-lines)\n (\"p\" . 'mc\/mark-previous-lines)\n (\">\" . 'mc\/mark-next-like-this)\n (\"<\" . 'mc\/mark-previous-like-this)))\n\n(smartrep-define-key global-map \"C-l C-v\" '((\"C-n\" . 'mc\/mark-next-lines)\n (\"C-p\" . 'mc\/mark-previous-lines)\n (\"C->\" . 'mc\/mark-next-like-this)\n (\"C-<\" . 'mc\/mark-previous-like-this)))\n\n(mapc (lambda (cmd)\n (add-to-list 'mc\/cmds-to-run-for-all cmd))\n '(\n sp--self-insert-command\n god-mode-self-insert\n prelude-move-beginning-of-line\n ))\n\n(mapc (lambda (cmd)\n (add-to-list 'mc\/cmds-to-run-once cmd))\n '(\n god-mode\n god-mode-all\n god-local-mode\n helm-confirm-and-exit-minibuffer\n split-window-horizontally\n split-window-vertically\n mc\/mark-next-lines\n mc\/mark-next-like-this\n undo-tree-visualizer-quit\n undo-tree-visualize\n keyboard-escape-quit\n ))\n","subject":"Add prelude-move-beginning-of-line to mc all array","message":"Add prelude-move-beginning-of-line to mc all array\n","lang":"Emacs Lisp","license":"mit","repos":"caleb\/dotfiles,caleb\/dotfiles,caleb\/dotfiles"} {"commit":"c560eeca2a9ba9f805037d0296d19b63a882c193","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +prescient +fuzzy)\n (company +childframe)\n\n :ui\n doom\n doom-dashboard\n modeline\n ophints\n hl-todo\n nav-flash\n (popup +all +defaults)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n format\n\n :emacs\n (dired +icons)\n vc\n undo\n\n :tools\n lookup\n eval\n make\n (magit +forge)\n lsp\n editorconfig\n pdf\n direnv\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +roam)\n (cc +lsp)\n idris\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp)\n (javascript +lsp)\n rest\n data\n (rust +lsp)\n csharp\n coq\n ocaml\n (go +lsp)\n\n :checkers\n grammar\n (spell +flyspell)\n (syntax +childframe)\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n )\n\n\n;; Needs to be set early so it can't go into config\n(setq evil-respect-visual-line-mode t)\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +prescient +fuzzy)\n (company +childframe)\n\n :ui\n doom\n doom-dashboard\n modeline\n ophints\n hl-todo\n nav-flash\n (popup +all +defaults)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n format\n\n :emacs\n (dired +icons)\n vc\n undo\n\n :tools\n lookup\n eval\n make\n (magit +forge)\n lsp\n editorconfig\n pdf\n direnv\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +roam)\n (cc +lsp)\n idris\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp)\n (javascript +lsp)\n rest\n data\n (rust +lsp)\n csharp\n coq\n ocaml\n (go +lsp)\n\n :checkers\n grammar\n (spell +flyspell)\n syntax\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n )\n\n\n;; Needs to be set early so it can't go into config\n(setq evil-respect-visual-line-mode t)\n","subject":"Disable flycheck childframe. It's annoying","message":"[emacs] Disable flycheck childframe. It's annoying\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"dda2b7e5002d011c3f6629df7b36bae816446dcd","old_file":".emacs.d\/custom.el","new_file":".emacs.d\/custom.el","old_contents":";; custom.el\n(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(explicit-bash-args (quote (\"--noediting\" \"--login\" \"-i\")))\n '(ns-function-modifier (quote control))\n '(org-hide-emphasis-markers t)\n '(package-selected-packages\n (quote\n (yasnippet yaml-mode use-package markdown-mode magit helm exec-path-from-shell evil ess emmet-mode)))\n '(tramp-default-method \"ssh\"))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":";; custom.el\n(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(explicit-bash-args (quote (\"--noediting\" \"--login\" \"-i\")))\n '(js-indent-level 2)\n '(ns-function-modifier (quote control))\n '(org-hide-emphasis-markers t)\n '(package-selected-packages\n (quote\n (yasnippet yaml-mode use-package markdown-mode magit helm exec-path-from-shell evil ess emmet-mode)))\n '(tramp-default-method \"ssh\"))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Use indent level of 2 for javascript.","message":"Use indent level of 2 for javascript.\n","lang":"Emacs Lisp","license":"mit","repos":"PurityControl\/config-files,PurityControl\/config-files"} {"commit":"5fee3028e3b4ca43ffc3d1d2b3465b678a8f7fd5","old_file":"configs\/emacs.d\/pkgs\/pkg-idris.el","new_file":"configs\/emacs.d\/pkgs\/pkg-idris.el","old_contents":"(use-package idris-mode\n :ensure t\n )\n\n(provide 'pkg-idris)\n","new_contents":"(use-package idris-mode\n :ensure t\n :init\n (custom-set-faces\n '(idris-semantic-bound-face ((t (:foreground \"#fe8019\"))))\n '(idris-semantic-data-face ((t (:foreground \"#8ec07c\"))))\n '(idris-semantic-function-face ((t (:foreground \"#d3869b\"))))\n '(idris-semantic-implicit-face ((t (:foreground \"#303030\"))))\n ;; '(idris-semantic-module-face ((t (:foreground \"#\"))))\n ;; '(idris-semantic-namespace-face ((t (:foreground \"#\"))))\n '(idris-semantic-postulate-face ((t (:foreground \"#98971a\"))))\n '(idris-semantic-type-face ((t (:foreground \"#458588\"))))\n )\n )\n\n(provide 'pkg-idris)\n","subject":"Fix type faces of idris-mode","message":"Fix type faces of idris-mode\n","lang":"Emacs Lisp","license":"mit","repos":"noraesae\/dotfiles,noraesae\/dotfiles,noraesae\/dotfiles"} {"commit":"2e92e0bf656fc98601ac4c72d34a0d26043a10d5","old_file":".emacs.d\/lisp\/package\/dependencies.el","new_file":".emacs.d\/lisp\/package\/dependencies.el","old_contents":"(defvar kotct\/dependency-list\n '(linum-off ;; turn linum off in certain modes\n ido-vertical-mode ;; use vertical menus for ido\n ido-grid-mode ;; use a grid selection menu for ido\n smex ;; ido-enabled M-x\n anzu ;; nicer search environment\n volatile-highlights ;; highlight changed areas\n buffer-move ;; easily move buffers between windows\n expand-region ;; expand region to successively larger sexps\n magit ;; make Git and Emacs both way cooler\n auto-complete ;; code autocompletion\n markdown-mode ;; major mode for markdown\n smart-tabs-mode ;; indentation with tabs and spaces\n ace-jump-mode ;; immediately jump to any visible character\n ace-jump-zap ;; zap-to-char but harnessing ace-jump\n editorconfig ;; editorconfig plugin\n hl-todo ;; highlight TODO, FIXME, FAIL, etc.\n highlight-symbol ;; navigate between and highlight symbols\n web-mode ;; for editing web files\n elixir-mode ;; for editing Elixir code\n rust-mode ;; for editing Rust code\n buttercup ;; for tests\n\n ;; THEMES\n solarized-theme)\n \"A list of all packages required for operation.\")\n\n(provide 'dependencies)\n","new_contents":"(defvar kotct\/dependency-list\n '(linum-off ;; turn linum off in certain modes\n ido-vertical-mode ;; use vertical menus for ido\n ido-grid-mode ;; use a grid selection menu for ido\n smex ;; ido-enabled M-x\n anzu ;; nicer search environment\n volatile-highlights ;; highlight changed areas\n buffer-move ;; easily move buffers between windows\n expand-region ;; expand region to successively larger sexps\n magit ;; make Git and Emacs both way cooler\n auto-complete ;; code autocompletion\n markdown-mode ;; major mode for markdown\n smart-tabs-mode ;; indentation with tabs and spaces\n ace-jump-mode ;; immediately jump to any visible character\n ace-jump-zap ;; zap-to-char but harnessing ace-jump\n editorconfig ;; editorconfig plugin\n hl-todo ;; highlight TODO, FIXME, FAIL, etc.\n highlight-symbol ;; navigate between and highlight symbols\n web-mode ;; for editing web files\n elixir-mode ;; for editing Elixir code\n rust-mode ;; for editing Rust code\n buttercup ;; for tests\n smartparens ;; for dealing with paired control flow symbols\n\n ;; THEMES\n solarized-theme)\n \"A list of all packages required for operation.\")\n\n(provide 'dependencies)\n","subject":"Add smartparens as a dependency","message":"Add smartparens as a dependency\n","lang":"Emacs Lisp","license":"mit","repos":"kotct\/dot,kotct\/dot"} {"commit":"42d1fa292c34e5cd6b33231281df18d4e84e38d4","old_file":"user-lisp\/c-customisations.el","new_file":"user-lisp\/c-customisations.el","old_contents":"(require 'flycheck)\n\n;; todo: show eldoc in modeline, since the minibuffer is used by\n;; flycheck.\n(add-hook 'c-mode-hook #'c-turn-on-eldoc-mode)\n\n;; TODO: this doesn't belong here.\n(require 'which-func)\n(setq which-func-modes (list #'c-mode))\n(which-function-mode)\n\n;; C++\n(add-hook\n 'c++-mode-hook\n (lambda ()\n (setq flycheck-clang-language-standard \"c++11\"\n flycheck-clang-definitions '(\"__STDC_LIMIT_MACROS\"\n \"__STDC_CONSTANT_MACROS\"))))\n\n\n(provide 'c-customisations)\n","new_contents":"(require 'flycheck)\n\n;; todo: show eldoc in modeline, since the minibuffer is used by\n;; flycheck.\n(add-hook 'c-mode-hook #'c-turn-on-eldoc-mode)\n\n;; TODO: this doesn't belong here.\n(require 'which-func)\n(setq which-func-modes (list #'c-mode))\n(which-function-mode)\n\n;; C++\n(add-hook\n 'c++-mode-hook\n (lambda ()\n (setq flycheck-clang-language-standard \"c++11\"\n flycheck-clang-definitions '(\"__STDC_LIMIT_MACROS\"\n \"__STDC_CONSTANT_MACROS\"))))\n\n(add-hook\n 'c++-mode-hook\n (lambda ()\n ;; LLVM convention\n (setq c-basic-offset 2)))\n\n(provide 'c-customisations)\n","subject":"Use 2 spaces when indenting C++.","message":"Use 2 spaces when indenting C++.\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"00a7ed7d84ca1cf7f1553cf4123e87ba94c5cbb2","old_file":"lisp\/init-darcs.el","new_file":"lisp\/init-darcs.el","old_contents":"(require-package 'darcsum)\n(require-package 'vc-darcs)\n\n\n;; TODO: include this in the vc-darcs ELPA package\n(add-to-list 'vc-handled-backends 'DARCS)\n(autoload 'vc-darcs-find-file-hook \"vc-darcs\")\n(add-hook 'find-file-hooks 'vc-darcs-find-file-hook)\n\n(setq darcsum-whatsnew-switches \"-l\")\n\n(provide 'init-darcs)\n","new_contents":"(require-package 'darcsum)\n(require-package 'vc-darcs)\n\n\n;; TODO: include this in the vc-darcs ELPA package\n(add-to-list 'vc-handled-backends 'DARCS)\n(autoload 'vc-darcs-find-file-hook \"vc-darcs\")\n(add-hook 'find-file-hooks 'vc-darcs-find-file-hook)\n\n(after-load 'vc-darcs\n ;; This variable was removed in an Emacs 25.x snapshot, but vc-darcs\n ;; hasn't been fixed accordingly\n (unless (boundp 'vc-disable-async-diff)\n (setq vc-disable-async-diff nil)))\n\n(setq darcsum-whatsnew-switches \"-l\")\n\n(provide 'init-darcs)\n","subject":"Work around breakage of vc-darcs by Emacs 25.x changes","message":"Work around breakage of vc-darcs by Emacs 25.x changes\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"mmqmzk\/emacs.d,braveoyster\/emacs.d,qinshulei\/emacs.d,arthurl\/emacs.d,lust4life\/emacs.d,gsmlg\/emacs.d,baohaojun\/emacs.d,Shanicky\/emacs.d,zenith-john\/emacs.d,blueabysm\/emacs.d,fengxl\/emacs.d,purcell\/emacs.d,wegatron\/emacs.d,sgarciac\/emacs.d,LKI\/emacs.d,blueseason\/emacs.d,ernest-dzf\/emacs.d,46do14\/emacs.d,Werewolflsp\/emacs.d,jhpx\/emacs.d,cyjia\/emacs.d,zhaotai\/.emacs.d,kindoblue\/emacs.d,Enzo-Liu\/emacs.d,me020523\/emacs.d,emuio\/emacs.d,cjqw\/emacs.d,roxolan\/emacs.d,krzysz00\/emacs.d,dcorking\/emacs.d,benkha\/emacs.d,qianwan\/emacs.d,kongfy\/emacs.d,svenyurgensson\/emacs.d"} {"commit":"56f3d354bbb84e6eadfe31e089645c27e88f9b1e","old_file":"init-ibuffer.el","new_file":"init-ibuffer.el","old_contents":"(require 'ibuffer)\n\n(require 'ibuffer-vc)\n\n(defun ibuffer-set-up-preferred-filters ()\n (ibuffer-vc-set-filter-groups-by-vc-root)\n (ibuffer-do-sort-by-filename\/process))\n(add-hook 'ibuffer-mode-hook 'ibuffer-set-up-preferred-filters)\n\n\n\n\n;; Use human readable Size column instead of original one\n(define-ibuffer-column size-h\n (:name \"Size\" :inline t)\n (cond\n ((> (buffer-size) 1000) (format \"%7.1fk\" (\/ (buffer-size) 1000.0)))\n ((> (buffer-size) 1000000) (format \"%7.1fM\" (\/ (buffer-size) 1000000.0)))\n (t (format \"%8d\" (buffer-size)))))\n\n\n;; Modify the default ibuffer-formats\n(setq ibuffer-formats\n '((mark modified read-only vc-status-mini \" \"\n (name 18 18 :left :elide)\n \" \"\n (size-h 9 -1 :right)\n \" \"\n (mode 16 16 :left :elide)\n \" \"\n (vc-status 16 16 :left)\n \" \"\n filename-and-process)))\n\n\n(global-set-key (kbd \"C-x C-b\") 'ibuffer)\n\n(provide 'init-ibuffer)\n","new_contents":"(require 'ibuffer)\n\n(require 'ibuffer-vc)\n\n(defun ibuffer-set-up-preferred-filters ()\n (ibuffer-vc-set-filter-groups-by-vc-root)\n (ibuffer-do-sort-by-filename\/process))\n(add-hook 'ibuffer-mode-hook 'ibuffer-set-up-preferred-filters)\n\n\n\n\n;; Use human readable Size column instead of original one\n(define-ibuffer-column size-h\n (:name \"Size\" :inline t)\n (cond\n ((> (buffer-size) 1000000) (format \"%7.1fM\" (\/ (buffer-size) 1000000.0)))\n ((> (buffer-size) 1000) (format \"%7.1fk\" (\/ (buffer-size) 1000.0)))\n (t (format \"%8d\" (buffer-size)))))\n\n\n;; Modify the default ibuffer-formats\n(setq ibuffer-formats\n '((mark modified read-only vc-status-mini \" \"\n (name 18 18 :left :elide)\n \" \"\n (size-h 9 -1 :right)\n \" \"\n (mode 16 16 :left :elide)\n \" \"\n (vc-status 16 16 :left)\n \" \"\n filename-and-process)))\n\n\n(global-set-key (kbd \"C-x C-b\") 'ibuffer)\n\n(provide 'init-ibuffer)\n","subject":"Fix size-h ibuffer column definition borrowed from elsewhere, which was incorrect","message":"Fix size-h ibuffer column definition borrowed from elsewhere, which was incorrect\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"exclamaforte\/emacs.d,whizzzkid\/emacs.d,scorpionis\/emacs.d,LKI\/emacs.d,mpwang\/emacs.d,carlosliu\/emacs.d,zuoshifan\/emacs.d,Guoozz\/emacs.d,farzadbekran\/emacs.d,Werewolflsp\/emacs.d,braveoyster\/emacs.d,YangXin\/emacs.d,Enzo-Liu\/emacs.d,qinshulei\/emacs.d,ruiyang\/emacs.d,mmqmzk\/emacs.d,Togal\/emacs.d,farzadbekran\/emacs.d,cjqw\/emacs.d,hophacker\/emacs.d,cyjia\/emacs.d,lromang\/emacs.d,kindoblue\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,jhpx\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,kongfy\/emacs.d,wenpincui\/emacs.d,wegatron\/emacs.d,Jadecity\/PurcellEmacs.d,baohaojun\/emacs.d,renatoriccio\/emacs.d,svenyurgensson\/emacs.d,sgarciac\/emacs.d,dhanunjaya\/emacs.d,zhuoyikang\/emacs.d,me020523\/emacs.d,roxolan\/emacs.d,gsmlg\/emacs.d,arthurl\/emacs.d,zuoshifan\/emacs.d,zenith-john\/emacs.d,blueseason\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,jkaessens\/emacs.d,jachinpy\/emacs.d,hkcqr\/emacs.d,alant\/emacs.d,zuoshifan\/emacs.d,zhaotai\/.emacs.d,fengxl\/emacs.d,jachinpy\/emacs.d,Shanicky\/emacs.d,bibaijin\/emacs.d,boblannon\/emacs.d,lujianmei\/emacs.d,benkha\/emacs.d,DarkThrone\/emacs.d,LittleLmp\/emacs.d,caoyuanqi\/emacs.d,pairyo\/emacs.d,purcell\/emacs.d,emuio\/emacs.d,lust4life\/emacs.d,46do14\/emacs.d,ernest-dzf\/emacs.d,zuoshifan\/emacs.d,jthetzel\/emacs.d,dongdonghu\/.emacs.d,ilove0518\/emacs.d,danfengcao\/emacs.d,haodaivshen\/emacs.d,YangXin\/emacs.d,shafayetkhan\/emacs.d,zuoshifan\/emacs.d,modkzs\/emcs.d,krzysz00\/emacs.d,atreeyang\/emacs.d,dcorking\/emacs.d,blueabysm\/emacs.d,qianwan\/emacs.d,ruiyang\/emacs.d,zuoshifan\/emacs.d"} {"commit":"954861c9009f092396f26d1ced691fb07521595d","old_file":".emacs.d\/config\/pre-package-load.d\/abbrev-mode.el","new_file":".emacs.d\/config\/pre-package-load.d\/abbrev-mode.el","old_contents":"(setq abbrev-file-name \"~\/.emacs_abbrev_def\")\n(setq save-abbrevs t)\n(setq-default abbrev-mode t)\n(when (file-exists-p abbrev-file-name)\n (quietly-read-abbrev-file))\n","new_contents":"(setq abbrev-file-name \"~\/.emacs_abbrev_def\")\n(unless (file-exists-p abbrev-file-name)\n (write-region \"\" nil abbrev-file-name))\n(setq save-abbrevs t)\n(setq-default abbrev-mode t)\n(when (file-exists-p abbrev-file-name)\n (quietly-read-abbrev-file))\n","subject":"Create abbrev-file-name if it does not exist to avoid being asked later to create it.","message":"Create abbrev-file-name if it does not exist to avoid being asked later to create it.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs"} {"commit":"63b4dbf1b4e9c94adaa31288ca871a670e49307d","old_file":"modules\/ui\/unicode\/autoload.el","new_file":"modules\/ui\/unicode\/autoload.el","old_contents":";;; ui\/unicode\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(add-hook! 'doom-init-ui-hook\n (defun +unicode-init-fonts-h ()\n \"Set up `unicode-fonts' to eventually run; accommodating the daemon, if\nnecessary.\"\n (setq-default bidi-display-reordering t\n doom-unicode-font nil)\n (if initial-window-system\n (+unicode-setup-fonts-h (selected-frame))\n (add-hook 'after-make-frame-functions #'+unicode-setup-fonts-h))))\n\n;;;###autoload\n(defun +unicode-setup-fonts-h (&optional frame)\n \"Initialize `unicode-fonts', if in a GUI session.\"\n (when (and frame (display-graphic-p frame))\n (with-selected-frame frame\n (require 'unicode-fonts)\n ;; NOTE will impact startup time on first run\n (unicode-fonts-setup))))\n","new_contents":";;; ui\/unicode\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(add-hook! 'doom-init-ui-hook\n (defun +unicode-init-fonts-h ()\n \"Set up `unicode-fonts' to eventually run; accommodating the daemon, if\nnecessary.\"\n (setq-default bidi-display-reordering t\n doom-unicode-font nil)\n (if (display-graphic-p)\n (+unicode-setup-fonts-h (selected-frame))\n (add-hook 'after-make-frame-functions #'+unicode-setup-fonts-h))))\n\n;;;###autoload\n(defun +unicode-setup-fonts-h (&optional frame)\n \"Initialize `unicode-fonts', if in a GUI session.\"\n (when (and frame (display-graphic-p frame))\n (with-selected-frame frame\n (require 'unicode-fonts)\n ;; NOTE will impact startup time on first run\n (unicode-fonts-setup))))\n","subject":"Make unicode-fonts-setup run when emacs is started in daemon mode","message":"Make unicode-fonts-setup run when emacs is started in daemon mode\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d"} {"commit":"cb126b1eb76fd4e38de27545fc210b6fd60f381f","old_file":"emacs.d\/lisp\/init-ui.el","new_file":"emacs.d\/lisp\/init-ui.el","old_contents":"(if nixos\n (progn\n (set-face-attribute 'default nil :family \"Inconsolata\")\n (set-face-attribute 'default nil :height 130))\n (set-face-attribute 'default nil :family \"Input Mono\")\n (set-face-attribute 'default nil :height 130))\n\n(defun mjhoy\/proportional ()\n \"Use a proportional font\"\n (interactive)\n (setq buffer-face-mode-face '(:family \"Input Sans\" :height 130))\n (setq line-spacing 0.3)\n (buffer-face-mode))\n\n(defun mjhoy\/mono ()\n \"Use a monospace font\"\n (interactive)\n (setq buffer-face-mode-face '(:family \"Input Mono\" :height 130))\n (setq line-spacing 0.2)\n (buffer-face-mode))\n\n;; input is a little tight; increase the line-spacing\n(setq-default line-spacing 0.2)\n(menu-bar-mode 0)\n(when (string-equal system-type \"darwin\")\n (when (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))\n (when (fboundp 'tool-bar-mode) (tool-bar-mode -1))\n (when (fboundp 'menu-bar-mode) (menu-bar-mode -1)))\n\n;; right option key use as mac normal option (so i can type é easily)\n(setq ns-right-alternate-modifier 'none)\n\n(setq scroll-conservatively 10000)\n(show-paren-mode t)\n(setq ring-bell-function 'ignore)\n\n(provide 'init-ui)\n","new_contents":"(set-face-attribute 'default nil :family \"Input Mono\")\n(set-face-attribute 'default nil :height 130)\n\n(defun mjhoy\/proportional ()\n \"Use a proportional font\"\n (interactive)\n (setq buffer-face-mode-face '(:family \"Input Sans\" :height 130))\n (setq line-spacing 0.3)\n (buffer-face-mode))\n\n(defun mjhoy\/mono ()\n \"Use a monospace font\"\n (interactive)\n (setq buffer-face-mode-face '(:family \"Input Mono\" :height 130))\n (setq line-spacing 0.2)\n (buffer-face-mode))\n\n;; input is a little tight; increase the line-spacing\n(setq-default line-spacing 0.2)\n(menu-bar-mode 0)\n(when (string-equal system-type \"darwin\")\n (when (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))\n (when (fboundp 'tool-bar-mode) (tool-bar-mode -1))\n (when (fboundp 'menu-bar-mode) (menu-bar-mode -1)))\n\n;; right option key use as mac normal option (so i can type é easily)\n(setq ns-right-alternate-modifier 'none)\n\n(setq scroll-conservatively 10000)\n(show-paren-mode t)\n(setq ring-bell-function 'ignore)\n\n(provide 'init-ui)\n","subject":"Revert \"emacs: use inconsolata on nix\"","message":"Revert \"emacs: use inconsolata on nix\"\n\nThis reverts commit 2c912efc70f7f5ddd78cd9bc9658ca170206b73a.\n\nI've figured out how to install input on nix now.\n","lang":"Emacs Lisp","license":"mit","repos":"mjhoy\/dotfiles,mjhoy\/dotfiles,mjhoy\/dotfiles,mjhoy\/dotfiles,mjhoy\/dotfiles"} {"commit":"d7405cc774133a7ada1758f280de1dc11195df08","old_file":"init-elpa.el","new_file":"init-elpa.el","old_contents":"(require 'package)\n(package-initialize)\n\n(provide 'init-elpa)","new_contents":"(require 'package)\n(package-initialize)\n\n(when (> emacs-major-version 23)\n (setq package-archives (cons '(\"tromey\" . \"http:\/\/tromey.com\/elpa\/\") package-archives)))\n\n(provide 'init-elpa)\n","subject":"Add Tom Tromey's ELPA package archive when using Emacs 24, since the new gnu.org archive is almost empty","message":"Add Tom Tromey's ELPA package archive when using Emacs 24, since the new gnu.org archive is almost empty\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"benkha\/emacs.d,zuoshifan\/emacs.d,Werewolflsp\/emacs.d,whizzzkid\/emacs.d,jachinpy\/emacs.d,LittleLmp\/emacs.d,lromang\/emacs.d,zuoshifan\/emacs.d,46do14\/emacs.d,ernest-dzf\/emacs.d,wenpincui\/emacs.d,jhpx\/emacs.d,zuoshifan\/emacs.d,dongdonghu\/.emacs.d,shafayetkhan\/emacs.d,caoyuanqi\/emacs.d,blueseason\/emacs.d,lujianmei\/emacs.d,braveoyster\/emacs.d,svenyurgensson\/emacs.d,dcorking\/emacs.d,mpwang\/emacs.d,hkcqr\/emacs.d,kongfy\/emacs.d,blueabysm\/emacs.d,pairyo\/emacs.d,fengxl\/emacs.d,renatoriccio\/emacs.d,purcell\/emacs.d,boblannon\/emacs.d,Guoozz\/emacs.d,YangXin\/emacs.d,zhaotai\/.emacs.d,jkaessens\/emacs.d,Enzo-Liu\/emacs.d,ruiyang\/emacs.d,mmqmzk\/emacs.d,baohaojun\/emacs.d,zuoshifan\/emacs.d,jachinpy\/emacs.d,bibaijin\/emacs.d,zuoshifan\/emacs.d,scorpionis\/emacs.d,ruiyang\/emacs.d,farzadbekran\/emacs.d,krzysz00\/emacs.d,zuoshifan\/emacs.d,exclamaforte\/emacs.d,DarkThrone\/emacs.d,dhanunjaya\/emacs.d,alant\/emacs.d,farzadbekran\/emacs.d,carlosliu\/emacs.d,wegatron\/emacs.d,roxolan\/emacs.d,farzadbekran\/emacs.d,emuio\/emacs.d,YangXin\/emacs.d,me020523\/emacs.d,danfengcao\/emacs.d,jthetzel\/emacs.d,Shanicky\/emacs.d,zhuoyikang\/emacs.d,kindoblue\/emacs.d,qinshulei\/emacs.d,farzadbekran\/emacs.d,cyjia\/emacs.d,Togal\/emacs.d,lust4life\/emacs.d,modkzs\/emcs.d,gsmlg\/emacs.d,qianwan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,atreeyang\/emacs.d,ilove0518\/emacs.d,farzadbekran\/emacs.d,arthurl\/emacs.d,zenith-john\/emacs.d,hophacker\/emacs.d,LKI\/emacs.d,zuoshifan\/emacs.d,haodaivshen\/emacs.d,sgarciac\/emacs.d,cjqw\/emacs.d,Jadecity\/PurcellEmacs.d"} {"commit":"c71ef4421f39b0b7e48d8066794a30a3c1d73432","old_file":"init-anything.el","new_file":"init-anything.el","old_contents":"(require 'anything-config)\n\n(setq anything-sources\n '(anything-c-source-buffers\n anything-c-source-recentf\n anything-c-source-occur\n anything-c-source-files-in-current-dir\n anything-c-source-emacs-commands\n anything-c-source-emacs-functions))\n\n(setq anything-samewindow nil)\n(setq anything-input-idle-delay 0.05)\n\n(global-set-key [\\M-f10] 'anything)\n\n\n(provide 'init-anything)\n","new_contents":"(require 'anything-config)\n\n(setq anything-sources\n '(anything-c-source-org-headline\n anything-c-source-buffers\n anything-c-source-recentf\n anything-c-source-files-in-current-dir\n anything-c-source-emacs-commands\n anything-c-source-emacs-functions\n anything-c-source-minibuffer-history))\n\n(setq anything-samewindow nil)\n(setq anything-input-idle-delay 0.2)\n\n(global-set-key [\\M-f10] 'anything-at-point) ;; With C-u prefix, starts with symbol at point\n\n\n(provide 'init-anything)\n","subject":"Add to 'anything-sources, and bind 'anything-at-point instead of 'anything","message":"Add to 'anything-sources, and bind 'anything-at-point instead of 'anything\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"svenyurgensson\/emacs.d,Enzo-Liu\/emacs.d,ruiyang\/emacs.d,arthurl\/emacs.d,sgarciac\/emacs.d,zuoshifan\/emacs.d,atreeyang\/emacs.d,Werewolflsp\/emacs.d,scorpionis\/emacs.d,mpwang\/emacs.d,alant\/emacs.d,jthetzel\/emacs.d,purcell\/emacs.d,kongfy\/emacs.d,zenith-john\/emacs.d,Jadecity\/PurcellEmacs.d,46do14\/emacs.d,qianwan\/emacs.d,carlosliu\/emacs.d,haodaivshen\/emacs.d,caoyuanqi\/emacs.d,zuoshifan\/emacs.d,hkcqr\/emacs.d,wenpincui\/emacs.d,farzadbekran\/emacs.d,lujianmei\/emacs.d,blueabysm\/emacs.d,renatoriccio\/emacs.d,YangXin\/emacs.d,jkaessens\/emacs.d,ruiyang\/emacs.d,baohaojun\/emacs.d,fengxl\/emacs.d,Togal\/emacs.d,LKI\/emacs.d,boblannon\/emacs.d,cjqw\/emacs.d,blueseason\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,zhaotai\/.emacs.d,zuoshifan\/emacs.d,danfengcao\/emacs.d,pairyo\/emacs.d,zuoshifan\/emacs.d,me020523\/emacs.d,jhpx\/emacs.d,mmqmzk\/emacs.d,zhuoyikang\/emacs.d,hophacker\/emacs.d,exclamaforte\/emacs.d,DarkThrone\/emacs.d,Guoozz\/emacs.d,lromang\/emacs.d,farzadbekran\/emacs.d,wegatron\/emacs.d,LittleLmp\/emacs.d,lust4life\/emacs.d,farzadbekran\/emacs.d,dongdonghu\/.emacs.d,YangXin\/emacs.d,jachinpy\/emacs.d,whizzzkid\/emacs.d,zuoshifan\/emacs.d,bibaijin\/emacs.d,emuio\/emacs.d,benkha\/emacs.d,roxolan\/emacs.d,kindoblue\/emacs.d,dcorking\/emacs.d,krzysz00\/emacs.d,jachinpy\/emacs.d,gsmlg\/emacs.d,modkzs\/emcs.d,ilove0518\/emacs.d,braveoyster\/emacs.d,ernest-dzf\/emacs.d,shafayetkhan\/emacs.d,qinshulei\/emacs.d,Shanicky\/emacs.d,dhanunjaya\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,cyjia\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d"} {"commit":"eeb10ae6cdc32b9f67a6fab10350d372ff506c6f","old_file":"modules\/lang\/latex\/+viewers.el","new_file":"modules\/lang\/latex\/+viewers.el","old_contents":";;; lang\/latex\/+viewers.el -*- lexical-binding: t; -*-\n\n;; Update PDF buffers after successful LaTeX runs\n\n(when (featurep! +okular)\n ;; Configure Okular as viewer. Including a bug fix\n ;; (https:\/\/bugs.kde.org\/show_bug.cgi?id=373855)\n (add-to-list 'TeX-view-program-list '(\"Okular\" (\"okular --unique file:%o\" (mode-io-correlate \"#src:%n%a\"))))\n (add-to-list 'TeX-view-program-selection '(output-pdf \"Okular\")))\n\n;; Or Skim\n(when (featurep! +skim)\n (add-to-list 'TeX-view-program-selection 'output-pdf '(\"Skim\")))\n\n;; Or Zathura\n(when (featurep! +zathura)\n (add-to-list 'TeX-view-program-selection '(output-pdf \"Zathura\")))\n\n;; Or PDF-tools, but only if the module is also loaded\n(when (and (featurep! :tools pdf)\n (featurep! +pdf-tools))\n (add-to-list 'TeX-view-program-selection '(output-pdf \"PDF Tools\"))\n (add-hook 'TeX-after-compilation-finished-function #'TeX-revert-document-buffer))\n","new_contents":";;; lang\/latex\/+viewers.el -*- lexical-binding: t; -*-\n\n(when (featurep! +okular)\n ;; Configure Okular as viewer. Including a bug fix\n ;; (https:\/\/bugs.kde.org\/show_bug.cgi?id=373855)\n (add-to-list 'TeX-view-program-list '(\"Okular\" (\"okular --unique file:%o\" (mode-io-correlate \"#src:%n%a\"))))\n (add-to-list 'TeX-view-program-selection '(output-pdf \"Okular\")))\n\n;; Or Skim\n(when (featurep! +skim)\n (add-to-list 'TeX-view-program-selection 'output-pdf '(\"Skim\")))\n\n;; Or Zathura\n(when (featurep! +zathura)\n (add-to-list 'TeX-view-program-selection '(output-pdf \"Zathura\")))\n\n;; Or PDF-tools, but only if the module is also loaded\n(when (and (featurep! :tools pdf)\n (featurep! +pdf-tools))\n (add-to-list 'TeX-view-program-selection '(output-pdf \"PDF Tools\"))\n ;; Update PDF buffers after successful LaTeX runs\n (add-hook 'TeX-after-compilation-finished-function #'TeX-revert-document-buffer))\n","subject":"Put comment in right place","message":"Put comment in right place\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs"} {"commit":"618b7acedc24ad48911e0e8ead715e22c2017f23","old_file":".emacs.d\/init.el","new_file":".emacs.d\/init.el","old_contents":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; Set Package repositories ;;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(require 'package)\n(add-to-list 'package-archives\n '(\"melpa-stable\" . \"http:\/\/stable.melpa.org\/packages\/\") t)\n(add-to-list 'package-archives\n\t '(\"melpa\" . \"http:\/\/melpa.org\/packages\/\") t)\n(when (< emacs-major-version 24)\n ;; For important compatibility libraries like cl-lib\n (add-to-list 'package-archives '(\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")))\n(package-initialize)\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; Install use-package if it's not already installed. ;;\n;; package-refresh-contents ensure packages loaded in new emacs. ;;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n(unless (package-installed-p 'use-package)\n (package-refresh-contents)\n (package-install 'use-package))\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; From use-package README ;;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n(eval-when-compile\n (require 'use-package))\n(require 'diminish)\n(require 'bind-key)\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; Load the org config file ;;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n(org-babel-load-file (concat user-emacs-directory \"config.org\"))\n","new_contents":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; Set windowed interface before immediately to prevent choppy ui changes ;;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(when window-system\n (menu-bar-mode 1)\n (tool-bar-mode -1)\n (scroll-bar-mode -1)\n (tooltip-mode 1))\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; Set Package repositories ;;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(require 'package)\n(add-to-list 'package-archives\n '(\"melpa-stable\" . \"http:\/\/stable.melpa.org\/packages\/\") t)\n(add-to-list 'package-archives\n\t '(\"melpa\" . \"http:\/\/melpa.org\/packages\/\") t)\n(when (< emacs-major-version 24)\n ;; For important compatibility libraries like cl-lib\n (add-to-list 'package-archives '(\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")))\n(package-initialize)\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; Install use-package if it's not already installed. ;;\n;; package-refresh-contents ensure packages loaded in new emacs. ;;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n(unless (package-installed-p 'use-package)\n (package-refresh-contents)\n (package-install 'use-package))\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; From use-package README ;;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n(eval-when-compile\n (require 'use-package))\n(require 'diminish)\n(require 'bind-key)\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; Load the org config file ;;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n(org-babel-load-file (concat user-emacs-directory \"config.org\"))\n","subject":"Set up windowed gui at startup.","message":"Set up windowed gui at startup.\n","lang":"Emacs Lisp","license":"mit","repos":"PurityControl\/config-files,PurityControl\/config-files"} {"commit":"8787741a644ddfd46990f32bf283eb82feea509b","old_file":"elisp\/setup-help.el","new_file":"elisp\/setup-help.el","old_contents":";;; setup-help.el --- Help enhancements.\n;;; Commentary:\n;;; Code:\n\n;; Looking for a way to explore a keymap I found a pretty cool package:\n(use-package help-fns+\n :ensure t)\n\n;; Apparently it doesn't have autoload, so let's do this\n(require 'help-fns+)\n(define-key help-map \"\\M-k\" 'describe-keymap)\n\n;; I use `describe-face' quite often, I'd really like a key for it\n(define-key help-map (kbd \"C-f\") nil)\n(define-key help-map (kbd \"C-f\") #'counsel-describe-face)\n\n;; Command-log is useful sometimes, but let's not autoinstall as it\n;; will only slow first run time.\n(use-package command-log-mode\n :defer t)\n\n;; which-key seems like a really nice help\n(use-package which-key\n :ensure t\n :config\n (which-key-mode)\n :demand\n :diminish which-key-mode)\n\n(provide 'setup-help)\n;;; setup-help.el ends here\n","new_contents":";;; setup-help.el --- Help enhancements.\n;;; Commentary:\n;;; Code:\n\n;; Looking for a way to explore a keymap I found a pretty cool package:\n(use-package help-fns+\n :ensure t)\n\n;; Apparently it doesn't have autoload, so let's do this\n(require 'help-fns+)\n(define-key help-map \"\\M-k\" 'describe-keymap)\n\n;; I use `describe-face' quite often, I'd really like a key for it\n(define-key help-map (kbd \"C-f\") nil)\n(define-key help-map (kbd \"C-f\") #'counsel-describe-face)\n\n;; Command-log is useful sometimes, but let's not autoinstall as it\n;; will only slow first run time.\n(use-package command-log-mode\n :defer t)\n\n;; which-key seems like a really nice help\n(use-package which-key\n :ensure t\n :config\n (which-key-mode)\n :demand\n :diminish which-key-mode)\n\n;; I've been using woman\n(define-key help-map (kbd \"C-w\") 'woman)\n\n(provide 'setup-help)\n;;; setup-help.el ends here\n","subject":"Set up a woman key","message":"Set up a woman key\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"32628c02865298137097aeb232f172dc3216226b","old_file":"link\/.emacs.d\/site-lisp\/setup-irony.el","new_file":"link\/.emacs.d\/site-lisp\/setup-irony.el","old_contents":"\n(use-package irony\n :ensure t\n :config\n (add-hook 'c++-mode-hook 'irony-mode)\n (add-hook 'c-mode-hook 'irony-mode)\n (add-hook 'objc-mode-hook 'irony-mode)\n )\n\n;; replace the `completion-at-point' and `complete-symbol' bindings in\n;; irony-mode's buffers by irony-mode's function\n(defun my-irony-mode-hook ()\n (define-key irony-mode-map [remap completion-at-point]\n 'irony-completion-at-point-async)\n (define-key irony-mode-map [remap complete-symbol]\n 'irony-completion-at-point-async))\n\n(use-package company-irony\n :ensure t\n :config\n (add-to-list 'company-backends '(company-irony))\n (add-hook 'irony-mode-hook 'company-irony-setup-begin-commands)\n (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)\n (add-hook 'irony-mode-hook 'my-irony-mode-hook)\n )\n\n(use-package company-irony-c-headers\n :ensure t\n :config (add-to-list 'company-backends '(company-irony-c-headers))\n )\n\n(provide 'setup-irony)\n","new_contents":"\n(use-package irony\n :ensure t\n :config\n (add-hook 'c++-mode-hook 'irony-mode)\n (add-hook 'c-mode-hook 'irony-mode)\n (add-hook 'objc-mode-hook 'irony-mode)\n )\n\n;; replace the `completion-at-point' and `complete-symbol' bindings in\n;; irony-mode's buffers by irony-mode's function\n(defun my-irony-mode-hook ()\n (define-key irony-mode-map [remap completion-at-point]\n 'irony-completion-at-point-async)\n (define-key irony-mode-map [remap complete-symbol]\n 'irony-completion-at-point-async))\n\n(use-package company-irony\n :ensure t\n :config\n (add-to-list 'company-backends '(company-irony))\n (add-hook 'irony-mode-hook 'company-irony-setup-begin-commands)\n (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)\n (add-hook 'irony-mode-hook 'my-irony-mode-hook)\n )\n\n(use-package company-irony-c-headers\n :ensure t\n :config (add-to-list 'company-backends '(company-irony-c-headers))\n )\n\n(use-package irony-eldoc\n :ensure t\n (add-hook 'irony-mode-hook 'irony-eldoc)\n )\n\n(provide 'setup-irony)\n","subject":"Add irony-eldoc to emacs config","message":"Add irony-eldoc to emacs config\n","lang":"Emacs Lisp","license":"mit","repos":"SteVwonder\/dotfiles,SteVwonder\/dotfiles,SteVwonder\/dotfiles,SteVwonder\/dotfiles"} {"commit":"3549cb68451c6a0ba812e19c2d79b6f7b93d6b4d","old_file":"modules\/lang\/rust\/autoload.el","new_file":"modules\/lang\/rust\/autoload.el","old_contents":";;; lang\/rust\/autoload.el -*- lexical-binding: t; -*-\n\n;; TODO (defun +rust\/run-cargo () (interactive))\n\n;;;###autoload\n(defun +rust-cargo-project-p ()\n \"Return t if this is a cargo project.\"\n (locate-dominating-file buffer-file-name \"Cargo.toml\"))\n\n;;;###autoload\n(defun +rust-racer-lookup-documentation (identifier)\n \"A `+lookup\/documentation' handler for Rust + Racer.\"\n (let ((buf (racer--describe identifier)))\n (when buf\n (pop-to-buffer buf)\n t)))\n\n\n;;\n;;; Custom Cargo commands\n\n;;;###autoload\n(defun +rust\/cargo-audit ()\n \"Run 'cargo audit' for the current project.\"\n (interactive)\n (rustic-run-cargo-command \"cargo audit -f\"))\n","new_contents":";;; lang\/rust\/autoload.el -*- lexical-binding: t; -*-\n\n;; TODO (defun +rust\/run-cargo () (interactive))\n\n;;;###autoload\n(defun +rust-cargo-project-p ()\n \"Return t if this is a cargo project.\"\n (locate-dominating-file buffer-file-name \"Cargo.toml\"))\n\n;;;###autoload\n(defun +rust-racer-lookup-documentation (identifier)\n \"A `+lookup\/documentation' handler for Rust + Racer.\"\n (let ((buf (racer--describe identifier)))\n (when buf\n (pop-to-buffer buf)\n t)))\n\n\n;;\n;;; Custom Cargo commands\n\n;;;###autoload\n(defun +rust\/cargo-audit ()\n \"Run 'cargo audit' for the current project.\"\n (interactive)\n (rustic-run-cargo-command \"cargo audit\"))\n","subject":"Modify command to execute `cargo audit`","message":"Modify command to execute `cargo audit`\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d"} {"commit":"1cf6f01abc54efb6a1037bb015a0646d8cbc7a9c","old_file":"lisp\/ui.el","new_file":"lisp\/ui.el","old_contents":";; don't show the startup help screen\n(setq inhibit-startup-screen t)\n\n;; mode line settings\n(column-number-mode t)\n(line-number-mode t)\n(size-indication-mode t)\n\n;; remove clutter from the UI\n(menu-bar-mode -1)\n(tool-bar-mode -1)\n(tooltip-mode -1)\n\n(when (fboundp 'scroll-bar-mode)\n (scroll-bar-mode -1))\n\n;; blinking cursor\n(blink-cursor-mode t)\n\n;; enable mouse gestures in terminal\n(require 'mouse)\n(xterm-mouse-mode t)\n\n;; disable alarm bell beep\n(setq ring-bell-function 'ignore)\n\n;; powerline customization\n(setq powerline-arrow-shape 'arrow)\n\n;; font\n(set-default-font \"monospace 12\" nil t)\n","new_contents":";; don't show the startup help screen\n(setq inhibit-startup-screen t)\n\n;; mode line settings\n(column-number-mode t)\n(line-number-mode t)\n(size-indication-mode t)\n\n;; remove clutter from the UI\n(menu-bar-mode -1)\n(tool-bar-mode -1)\n(tooltip-mode -1)\n\n(when (fboundp 'scroll-bar-mode)\n (scroll-bar-mode -1))\n\n;; blinking cursor\n(blink-cursor-mode t)\n\n;; enable mouse gestures in terminal\n(require 'mouse)\n(xterm-mouse-mode t)\n\n;; disable alarm bell beep\n(setq ring-bell-function 'ignore)\n\n;; powerline customization\n(setq powerline-arrow-shape 'arrow)\n\n;; font\n(custom-set-faces\n '(default ((t (:family \"monospace\" :height 120)))))\n","subject":"Change way of customizing the font","message":"Change way of customizing the font\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"danielfm\/dotfiles-emacs"} {"commit":"3575a89e66336a948524b1e6ed16b2b1ba9de246","old_file":"emacs.d\/core\/jl-ui.el","new_file":"emacs.d\/core\/jl-ui.el","old_contents":";; disable menu\/toolbar\/scrollbar\n(scroll-bar-mode -1)\n(tool-bar-mode -1)\n(menu-bar-mode -1)\n\n;; open emacs blank scratch\n(setq inhibit-splash-screen t\n initial-scratch-message nil)\n\n;; status bar settings\n(column-number-mode t)\n\n;; display and format line numbers\n(global-linum-mode t)\n(setq linum-format \"%2d \")\n\n;; highlight current line\n(global-hl-line-mode 1)\n(set-face-background 'hl-line \"#330\")\n\n;; enable y\/n answers\n(fset 'yes-or-no-p 'y-or-n-p)\n\n;; show trailing whitespace\n(require 'whitespace)\n(setq whitespace-line-column 80\n whitespace-style '(face lines-tail trailing))\n(add-hook 'prog-mode-hook 'whitespace-mode)\n\n;; syntax highlighting everywhere\n(global-font-lock-mode 1)\n\n;; Add proper word wrapping\n(global-visual-line-mode t)\n\n;; set tabs to 2 spaces\n(setq-default indent-tabs-mode nil)\n(setq-default tab-width 2)\n(setq indent-line-function 'insert-tab)\n\n;; prefer utf8\n(prefer-coding-system 'utf-8)\n(when (display-graphic-p)\n (setq x-select-request-type '(UTF8_STRING COMPOUND_TEXT TEXT STRING)))\n\n;; load zenburn theme\n(load-theme 'zenburn t)\n\n(provide 'jl-ui)\n","new_contents":";; disable menu\/toolbar\/scrollbar\n(scroll-bar-mode -1)\n(tool-bar-mode -1)\n(menu-bar-mode -1)\n\n;; open emacs blank scratch\n(setq inhibit-splash-screen t\n initial-scratch-message nil)\n\n;; status bar settings\n(column-number-mode t)\n\n;; display and format line numbers\n(global-linum-mode t)\n(setq linum-format \"%2d \")\n\n;; highlight current line\n(global-hl-line-mode 1)\n(set-face-background 'hl-line \"#ggg\")\n\n;; enable y\/n answers\n(fset 'yes-or-no-p 'y-or-n-p)\n\n;; show trailing whitespace\n(require 'whitespace)\n(setq whitespace-line-column 80\n whitespace-style '(face lines-tail trailing))\n(add-hook 'prog-mode-hook 'whitespace-mode)\n\n;; syntax highlighting everywhere\n(global-font-lock-mode 1)\n\n;; Add proper word wrapping\n(global-visual-line-mode t)\n\n;; set tabs to 2 spaces\n(setq-default indent-tabs-mode nil)\n(setq-default tab-width 2)\n(setq indent-line-function 'insert-tab)\n\n;; prefer utf8\n(prefer-coding-system 'utf-8)\n(when (display-graphic-p)\n (setq x-select-request-type '(UTF8_STRING COMPOUND_TEXT TEXT STRING)))\n\n;; load zenburn theme\n(load-theme 'zenburn t)\n\n(provide 'jl-ui)\n","subject":"Set the current highlight line color to dark gray","message":"emacs: Set the current highlight line color to dark gray\n","lang":"Emacs Lisp","license":"mit","repos":"jdlehman\/dotfiles,jdlehman\/dotfiles"} {"commit":"b7b9485b9b03ff3bdf3e0388605073c2cb549264","old_file":"emacs\/init.el","new_file":"emacs\/init.el","old_contents":";; Load Evil\n(add-to-list 'load-path \"~\/.emacs.d\/evil\")\n(require 'evil)\n(evil-mode 1)\n\n;; Open .v files with Proof General's Coq mode\n(load \"~\/.emacs.d\/lisp\/PG\/generic\/proof-site\")\n\n(load-theme 'iceberg t)\n","new_contents":";; Load Evil\n(setq evil-want-abbrev-expand-on-insert-exit nil)\n(add-to-list 'load-path \"~\/.emacs.d\/evil\")\n(require 'evil)\n(evil-mode 1)\n\n;; Open .v files with Proof General's Coq mode\n(load \"~\/.emacs.d\/lisp\/PG\/generic\/proof-site\")\n\n(load-theme 'iceberg t)\n","subject":"Fix Evil and Proof General compatibility error","message":"emacs: Fix Evil and Proof General compatibility error\n\nSee\nhttps:\/\/github.com\/ProofGeneral\/PG\/issues\/174\nhttps:\/\/github.com\/syl20bnr\/spacemacs\/issues\/8853","lang":"Emacs Lisp","license":"mit","repos":"colajam93\/dotfiles"} {"commit":"75305f095f1c4664b2611f926dbaa7fb098ef87b","old_file":"modules\/lang\/java\/+lsp.el","new_file":"modules\/lang\/java\/+lsp.el","old_contents":";;; lang\/java\/+lsp.el -*- lexical-binding: t; -*-\n;;;###if (featurep! +lsp)\n\n(use-package! lsp-java\n :after (lsp-clients dap-mode)\n :preface\n (setq lsp-java-server-install-dir (concat doom-etc-dir \"eclipse.jdt.ls\/server\/\")\n lsp-java-workspace-dir (concat doom-etc-dir \"java-workspace\"))\n (add-hook! java-mode-local-vars #'lsp!)\n :config\n ;; TODO keybinds\n )\n","new_contents":";;; lang\/java\/+lsp.el -*- lexical-binding: t; -*-\n;;;###if (featurep! +lsp)\n\n(use-package! lsp-java\n :after (lsp-clients dap-mode)\n :preface\n (setq lsp-java-server-install-dir (concat doom-etc-dir \"eclipse.jdt.ls\/server\/\")\n lsp-java-workspace-dir (concat doom-etc-dir \"java-workspace\")\n lsp-jt-root (concat doom-etc-dir \"eclipse.jdt.ls\/server\/java-test\/server\/\"))\n (add-hook! java-mode-local-vars #'lsp!)\n :config\n ;; TODO keybinds\n )\n","subject":"Fix lsp-jt-root in case someone wants to experiment with java-test","message":"Fix lsp-jt-root in case someone wants to experiment with java-test\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs"} {"commit":"ea5e1ea741f65c8f84121f281a4543923d36eb87","old_file":"modes\/vterm-conf.el","new_file":"modes\/vterm-conf.el","old_contents":";;; vterm-conf.el -- Settings for `vterm' -*- lexical-binding: t -*-\n;;\n;;; Commentary:\n;;\n;;; Code:\n\n(require 'vterm)\n\n(declare-function puni-mode \"puni\")\n\n(custom-set-variables\n '(vterm-buffer-name-string \"vterm %s\"))\n\n(defun pjones:vterm-mode-hook ()\n \"Mode hook for `vterm-mode'.\"\n (puni-mode -1)) ; Disable puni mode.\n\n(add-hook 'vterm-mode-hook #'pjones:vterm-mode-hook)\n\n;;; vterm-conf.el ends here\n","new_contents":";;; vterm-conf.el -- Settings for `vterm' -*- lexical-binding: t -*-\n;;\n;;; Commentary:\n;;\n;;; Code:\n\n(require 'vterm)\n\n(declare-function puni-mode \"puni\")\n\n(custom-set-variables\n '(vterm-buffer-name-string \"vterm %s\"))\n\n(let ((map vterm-mode-map))\n (define-key map (kbd \"C-c C-d\") #'pjones:vterm-change-dir)\n (define-key map (kbd \"C-c C-g\") #'vterm-send-C-g)\n (define-key map (kbd \"C-c C-x\") #'vterm-send-C-x))\n\n(defun pjones:vterm-change-dir (dir)\n \"Change to DIR in the current vterm shell.\"\n (interactive (list (read-directory-name \"cd: \")))\n (vterm-insert \"cd \" dir)\n (vterm-send-return))\n\n(defun pjones:vterm-mode-hook ()\n \"Mode hook for `vterm-mode'.\"\n (puni-mode -1)) ; Disable puni mode.\n\n(defun pjones:vterm-copy-mode-hook ()\n \"Mode hook for `vterm-copy-mode'.\"\n ;; Restore cursor if it was forced to block:\n (setq cursor-type (alist-get 'cursor-type default-frame-alist))\n ;; Don't move beyond prompt, breaks copy mode:\n (setq-local next-line-add-newlines nil))\n\n(add-hook 'vterm-mode-hook #'pjones:vterm-mode-hook)\n(add-hook 'vterm-copy-mode-hook #'pjones:vterm-copy-mode-hook)\n\n;;; vterm-conf.el ends here\n","subject":"Add some useful key bindings and settings","message":"vterm: Add some useful key bindings and settings\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"c7aabbd8bedefb337b3d0661ba5e1e8f48707bce","old_file":"emacs\/.emacs.d\/config\/my-spellchecking.el","new_file":"emacs\/.emacs.d\/config\/my-spellchecking.el","old_contents":";; flyspell - On-the-fly spell checking in Emacs\n;; http:\/\/www-sop.inria.fr\/members\/Manuel.Serrano\/flyspell\/flyspell.html\n;; This package is installed manually\n(use-package flyspell\n :ensure flyspell\n :config\n (add-hook 'markdown-mode-hook 'flyspell-mode)\n (add-hook 'org-mode-hook 'flyspell-mode))\n\n;; popop - Visual Popup Interface Library for Emacs\n;; https:\/\/github.com\/auto-complete\/popup-el\n;; Custom keys not yet working\n(use-package popup\n :ensure popup\n :config\n (evil-define-key 'normal popup-menu-keymap\n (kbd \"j\") 'popup-next\n (kbd \"k\") 'popup-previous))\n\n;; flyspell-correct-popup - Correcting words with flyspell via custom interface.\n;; https:\/\/github.com\/d12frosted\/flyspell-correct\n(use-package flyspell-correct-popup\n :ensure flyspell-correct-popup\n :config\n (evil-leader\/set-key \"z\" 'flyspell-correct-previous-word-generic))\n\n;; auto-dictionaryEmacs: Automatic dictionary switcher for flyspell \n;; https:\/\/github.com\/nschum\/auto-dictionary-mode\n(use-package auto-dictionary\n :ensure auto-dictionary\n :config\n (add-hook 'flyspell-mode-hook 'auto-dictionary-mode))\n\n(provide 'my-spellchecking)\n","new_contents":";; flyspell - On-the-fly spell checking in Emacs\n;; http:\/\/www-sop.inria.fr\/members\/Manuel.Serrano\/flyspell\/flyspell.html\n;; This package is installed manually\n(use-package flyspell\n :ensure flyspell\n :config\n (add-hook 'markdown-mode-hook 'flyspell-mode)\n (add-hook 'org-mode-hook 'flyspell-mode))\n\n;; popop - Visual Popup Interface Library for Emacs\n;; https:\/\/github.com\/auto-complete\/popup-el\n;; Custom keys not yet working\n(use-package popup\n :ensure popup\n :config\n (evil-define-key 'nil popup-menu-keymap\n (kbd \"j\") 'popup-next\n (kbd \"k\") 'popup-previous))\n\n;; flyspell-correct-popup - Correcting words with flyspell via custom interface.\n;; https:\/\/github.com\/d12frosted\/flyspell-correct\n(use-package flyspell-correct-popup\n :ensure flyspell-correct-popup\n :config\n (evil-leader\/set-key \"z\" 'flyspell-correct-previous-word-generic))\n\n;; auto-dictionaryEmacs: Automatic dictionary switcher for flyspell \n;; https:\/\/github.com\/nschum\/auto-dictionary-mode\n(use-package auto-dictionary\n :ensure auto-dictionary\n :config\n (add-hook 'flyspell-mode-hook 'auto-dictionary-mode))\n\n(provide 'my-spellchecking)\n","subject":"Fix evil keys not working in popup-menu","message":"Fix evil keys not working in popup-menu\n","lang":"Emacs Lisp","license":"unlicense","repos":"Llewxamris\/dotfiles"} {"commit":"89863dfd081497ce78cf4c007933dc4b8cbf76d6","old_file":"elisp\/.dir-locals.el","new_file":"elisp\/.dir-locals.el","old_contents":"((\"verilog-mode\/src\"\n . ((nil . ((do-not-delete-trailing-whitespace . t)\n ;; Thu Jan 26 11:12:48 EST 2017 - kmodi\n ;; Do not turn on whitespace-mode as magit does not like it.\n ;; user-error: Whitespace-Mode isn’t compatible with Magit. See\n ;; `magit-diff-paint-whitespace' for an alternative.\n ;; (eval . (whitespace-mode 1))\n ))\n (emacs-lisp-mode . ((lisp-indent-function . lisp-indent-function)\n (aggressive-indent-mode . nil)))))\n (\"matlab-emacs\/src\"\n . ((emacs-lisp-mode . ((lisp-indent-function . lisp-indent-function)\n (aggressive-indent-mode . nil))))))\n","new_contents":"((\"verilog-mode\/src\"\n . ((nil . ((do-not-delete-trailing-whitespace . t)\n ;; Thu Jan 26 11:12:48 EST 2017 - kmodi\n ;; Do not turn on whitespace-mode as magit does not like it.\n ;; user-error: Whitespace-Mode isn’t compatible with Magit. See\n ;; `magit-diff-paint-whitespace' for an alternative.\n ;; (eval . (whitespace-mode 1))\n (fill-column . 70)))\n (emacs-lisp-mode . ((lisp-indent-function . lisp-indent-function)\n (aggressive-indent-mode . nil)))))\n (\"matlab-emacs\/src\"\n . ((emacs-lisp-mode . ((lisp-indent-function . lisp-indent-function)\n (aggressive-indent-mode . nil))))))\n","subject":"Set fill-column to the default 70 for files in verilog-mode repo","message":"Set fill-column to the default 70 for files in verilog-mode repo\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"b8f3d395fd2ac6b969d4b19cc47d37663056803a","old_file":"layers\/!lang\/haskell\/config.el","new_file":"layers\/!lang\/haskell\/config.el","old_contents":";;; config.el --- Haskell Layer configuration File for Spacemacs\n;;\n;; Copyright (c) 2015 Bjarke Vad Andersen\n;;\n;; Author: Bjarke Vad Andersen \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n;; Variables\n\n(spacemacs|defvar-company-backends haskell-mode)\n(spacemacs|defvar-company-backends haskell-cabal-mode)\n\n(defvar haskell-enable-ghci-ng-support nil\n \"If non-nil ghci-ng support is enabled\")\n\n(defvar haskell-enable-shm-support nil\n \"If non-nil structured-haskell-mode support is enabled\")\n\n(defvar haskell-enable-hindent-style nil\n \"Style to use for formatting with hindent; available are: fundamental johan-tibell chris-done andrew-gibiansky. If nil hindent is disabled.\")\n\n(defvar haskell-enable-ghc-mod-support t\n \"If non-nil ghc-mod support is enabled\")\n","new_contents":";;; config.el --- Haskell Layer configuration File for Spacemacs\n;;\n;; Copyright (c) 2015 Bjarke Vad Andersen\n;;\n;; Author: Bjarke Vad Andersen \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n;; Variables\n\n(spacemacs|defvar-company-backends haskell-mode)\n(spacemacs|defvar-company-backends haskell-cabal-mode)\n\n(defvar haskell-enable-ghci-ng-support nil\n \"If non-nil ghci-ng support is enabled\")\n\n(defvar haskell-enable-shm-support nil\n \"If non-nil structured-haskell-mode support is enabled\")\n\n(defvar haskell-enable-hindent-style nil\n \"Style to use for formatting with hindent; available are: fundamental johan-tibell chris-done gibiansky. If nil hindent is disabled.\")\n\n(defvar haskell-enable-ghc-mod-support t\n \"If non-nil ghc-mod support is enabled\")\n","subject":"Update doc string for haskell-enable-hindent-style","message":"Update doc string for haskell-enable-hindent-style\n\nInfo was updated in README file, but not in doc string. Following #1786.","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"ee2eab9692c5b4b1dc55c3bbf17ec01ccb17df8b","old_file":"lisp\/init-http.el","new_file":"lisp\/init-http.el","old_contents":"(maybe-require-package 'httprepl)\n(when (maybe-require-package 'restclient)\n (defun sanityinc\/restclient ()\n (interactive)\n (with-current-buffer (get-buffer-create \"*restclient*\")\n (restclient-mode)\n (pop-to-buffer (current-buffer)))))\n\n\n(provide 'init-http)\n","new_contents":"(maybe-require-package 'httprepl)\n(when (maybe-require-package 'restclient)\n (add-auto-mode 'restclient-mode \"\\\\.rest\\\\'\")\n\n (defun sanityinc\/restclient ()\n (interactive)\n (with-current-buffer (get-buffer-create \"*restclient*\")\n (restclient-mode)\n (pop-to-buffer (current-buffer)))))\n\n\n(provide 'init-http)\n","subject":"Use restclient-mode for .rest files","message":"Use restclient-mode for .rest files\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"arthurl\/emacs.d,svenyurgensson\/emacs.d,sgarciac\/emacs.d,cjqw\/emacs.d,blueabysm\/emacs.d,dcorking\/emacs.d,gsmlg\/emacs.d,braveoyster\/emacs.d,baohaojun\/emacs.d,krzysz00\/emacs.d,purcell\/emacs.d,wegatron\/emacs.d,blueseason\/emacs.d,kindoblue\/emacs.d,kongfy\/emacs.d,benkha\/emacs.d,emuio\/emacs.d,mmqmzk\/emacs.d,qianwan\/emacs.d,lust4life\/emacs.d,roxolan\/emacs.d,me020523\/emacs.d"} {"commit":"3d0fa2ee4ca499d5247e73e4241e42b6efe8b192","old_file":"custom\/21-coffeescript.el","new_file":"custom\/21-coffeescript.el","old_contents":";; coffee-mode\n(require 'coffee-mode)\n\n(defun coffee-custom ()\n \"coffee-mode-hook\"\n (set (make-local-variable 'tab-width) 2)\n (set (make-local-variable 'coffee-tab-width) 2))\n\n(add-hook 'coffee-mode-hook\n '(lambda() (coffee-custom)))\n\n;; flymake-coffee\n(require 'flymake-coffee)\n(add-hook 'coffee-mode-hook 'flymake-coffee-load)\n(setq flymake-coffee-coffeelint-configuration-file (expand-file-name \"~\/.emacs.d\/coffeelint.json\"))\n","new_contents":";; coffee-mode\n(require 'coffee-mode)\n\n(defun coffee-custom ()\n \"coffee-mode-hook\"\n (set (make-local-variable 'tab-width) 2)\n (set (make-local-variable 'coffee-tab-width) 2))\n\n(add-hook 'coffee-mode-hook\n '(lambda() (coffee-custom)))\n\n;; ;; flymake-coffee\n;; ;; Removed 26\/09\/2016 as it stopped search and replace accross multiple coffeescript files from working.\n;; (require 'flymake-coffee)\n;; (add-hook 'coffee-mode-hook 'flymake-coffee-load)\n;; (setq flymake-coffee-coffeelint-configuration-file (expand-file-name \"~\/.emacs.d\/coffeelint.json\"))\n","subject":"Fix search and replace across coffeescript files","message":"Fix search and replace across coffeescript files\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"67cc380aef0c3c496d7934aed680a5c77f5c003f","old_file":"emacs\/cust-c-mode.el","new_file":"emacs\/cust-c-mode.el","old_contents":";;\n;; cust-c-mode.el\n;;\n\n;; Function to insert a system header:\n(defun system-include-header (&optional header)\n \"Insert an #include for a system header\"\n (interactive)\n (while (or (not header) (string= header \"\"))\n (setq header (read-string \"Header name: \")))\n (insert \"#include <\" (symbol-value 'header) \">\\n\"))\n\n;; function to insert a local header:\n(defun local-include-header (&optional header)\n \"insert an #include for a local header file\"\n (interactive)\n (while (or (not header) (string= header \"\"))\n (setq header (read-string \"header name (minus the .h): \")))\n (insert \"#ifndef \" (upcase header) \"_H\\n\"\n\t \"#define \" (upcase header) \"_H\\n\"\n\t \"#include \\\"\" (symbol-value 'header) \".h\\\"\\n\"\n\t \"#endif\\n\"\n\t ))\n\n;;\n(add-hook 'c-mode-hook\n\t (function (lambda ()\n\t\t (require 'easymenu)\n\t\t (easy-menu-define c-menu c-mode-map \"C Menu\"\n\t\t\t'(\"Insert\"\n\t\t\t [\"Insert System Header\" system-include-header t]\n\t\t\t [\"Insert Local Header\" local-include-header t]\n\t\t\t ))\n\t\t ;;\n\t\t (define-key c-mode-map \"\\C-csh\" 'system-include-header)\n\t\t (define-key c-mode-map \"\\C-clh\" 'local-include-header)\n;;\n;; cust-c-mode.el\n;;\n","new_contents":";;\n;; cust-c-mode.el\n;;\n\n;; Function to insert a system header:\n(defun system-include-header (&optional header)\n \"Insert an #include for a system header\"\n (interactive)\n (while (or (not header) (string= header \"\"))\n (setq header (read-string \"Header name: \")))\n (insert \"#include <\" (symbol-value 'header) \">\\n\"))\n\n;; function to insert a local header:\n(defun local-include-header (&optional header)\n \"insert an #include for a local header file\"\n (interactive)\n (while (or (not header) (string= header \"\"))\n (setq header (read-string \"header name (minus the .h): \")))\n (insert \"#ifndef \" (upcase header) \"_H\\n\"\n\t \"#define \" (upcase header) \"_H\\n\"\n\t \"#include \\\"\" (symbol-value 'header) \".h\\\"\\n\"\n\t \"#endif\\n\"\n\t ))\n\n;;\n(add-hook 'c-mode-hook\n\t (function (lambda ()\n\t\t (require 'easymenu)\n\t\t (easy-menu-define c-menu c-mode-map \"C Menu\"\n\t\t\t'(\"Insert\"\n\t\t\t [\"Insert System Header\" system-include-header t]\n\t\t\t [\"Insert Local Header\" local-include-header t]\n\t\t\t ))\n\t\t ;;\n\t\t (define-key c-mode-map \"\\C-csh\" 'system-include-header)\n\t\t (define-key c-mode-map \"\\C-clh\" 'local-include-header)\n\t\t )))\n;;\n;; cust-c-mode.el\n;;\n","subject":"Fix missing brackets in c-mode.","message":"Fix missing brackets in c-mode.\n","lang":"Emacs Lisp","license":"mit","repos":"shaunashby\/Desktop-Env,shaunashby\/Desktop-Env,shaunashby\/Desktop-Env,shaunashby\/Desktop-Env"} {"commit":"e767eab82c2141ed04d6d6ec7238c4bc788cc92e","old_file":"modules\/my-python.el","new_file":"modules\/my-python.el","old_contents":";;; my-python.el --- Python settings & customisations -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(defun my-python-mode-hook ()\n (add-to-list 'company-backends 'company-jedi))\n\n(use-package company-jedi\n :defer t\n :init\n (eval-after-load \"company\"\n '(add-hook 'python-mode-hook 'my-python-mode-hook)))\n\n(use-package anaconda-mode\n :defer t\n :config\n (add-hook 'python-mode-hook 'anaconda-mode)\n (add-hook 'python-mode-hook 'anaconda-eldoc-mode))\n\n(use-package company-anaconda\n :defer t\n :config\n (eval-after-load \"company\"\n '(add-to-list 'company-backends 'company-anaconda)))\n\n(provide 'my-python)\n\n;;; my-python.el ends here\n\n","new_contents":";;; my-python.el --- Python settings & customisations -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(defun my-python-mode-hook ()\n (add-to-list 'company-backends 'company-jedi))\n\n(use-package company-jedi\n :defer t\n :init\n (eval-after-load \"company\"\n '(add-hook 'python-mode-hook 'my-python-mode-hook)))\n\n(use-package anaconda-mode\n :defer t\n :config\n (add-hook 'python-mode-hook 'anaconda-mode)\n (add-hook 'python-mode-hook 'anaconda-eldoc-mode))\n\n(use-package company-anaconda\n :defer t\n :config\n (eval-after-load \"company\"\n '(add-to-list 'company-backends 'company-anaconda)))\n\n(use-package pyvenv)\n\n(provide 'my-python)\n\n;;; my-python.el ends here\n\n","subject":"Add support for Python virtual environments","message":"Add support for Python virtual environments\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"timanin\/emacs.d"} {"commit":"562d15d88352cd09c8a577cabb266afd8710bd7c","old_file":"lisp\/init-clojure.el","new_file":"lisp\/init-clojure.el","old_contents":";; Basic clojure support, even in Emacs 23\n;; See also init-clojure-cider.el\n\n(require-package 'clojure-mode)\n(require-package 'cljsbuild-mode)\n(require-package 'elein)\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; Slime with Clojure\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(defun slime-clojure-repl-setup ()\n \"Some REPL setup additional to that in durendal.\"\n (when (string-equal (slime-lisp-implementation-name) \"clojure\")\n (when (slime-inferior-process)\n (message \"Setting up repl for clojure\")\n (slime-redirect-inferior-output))\n\n (set-syntax-table clojure-mode-syntax-table)\n (setq lisp-indent-function 'clojure-indent-function)\n (let (font-lock-mode)\n (clojure-mode-font-lock-setup))))\n\n(after-load 'slime-repl\n (add-hook 'slime-repl-mode-hook 'slime-clojure-repl-setup))\n\n\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; Misc clojure tweaks\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(after-load 'clojure-mode\n (add-hook 'clojure-mode-hook 'sanityinc\/lisp-setup)\n (add-hook 'clojure-mode-hook 'subword-mode))\n\n\f\n\n;; Use clojure-mode for clojurescript, since clojurescript-mode\n;; pulls in Slime\n(add-auto-mode 'clojure-mode \"\\\\.cljs\\\\'\")\n\n\n(provide 'init-clojure)\n","new_contents":";; Basic clojure support, even in Emacs 23\n;; See also init-clojure-cider.el\n\n(require-package 'clojure-mode)\n(require-package 'cljsbuild-mode)\n(require-package 'elein)\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; Misc clojure tweaks\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n(after-load 'clojure-mode\n (add-hook 'clojure-mode-hook 'sanityinc\/lisp-setup)\n (add-hook 'clojure-mode-hook 'subword-mode))\n\n\n(provide 'init-clojure)\n","subject":"Remove some defunct clojure config","message":"Remove some defunct clojure config\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"cyjia\/emacs.d,LittleLmp\/emacs.d,benkha\/emacs.d,jachinpy\/emacs.d,zenith-john\/emacs.d,alant\/emacs.d,gsmlg\/emacs.d,Shanicky\/emacs.d,jachinpy\/emacs.d,roxolan\/emacs.d,jkaessens\/emacs.d,me020523\/emacs.d,blueseason\/emacs.d,emuio\/emacs.d,braveoyster\/emacs.d,zhuoyikang\/emacs.d,blueabysm\/emacs.d,mmqmzk\/emacs.d,Werewolflsp\/emacs.d,cjqw\/emacs.d,lujianmei\/emacs.d,shafayetkhan\/emacs.d,LKI\/emacs.d,krzysz00\/emacs.d,lust4life\/emacs.d,wegatron\/emacs.d,svenyurgensson\/emacs.d,qinshulei\/emacs.d,dcorking\/emacs.d,kindoblue\/emacs.d,46do14\/emacs.d,arthurl\/emacs.d,Enzo-Liu\/emacs.d,zhaotai\/.emacs.d,qianwan\/emacs.d,ernest-dzf\/emacs.d,purcell\/emacs.d,baohaojun\/emacs.d,sgarciac\/emacs.d,kongfy\/emacs.d,jhpx\/emacs.d,fengxl\/emacs.d"} {"commit":"6c36e18ed5c0d0173e216f2ed827ded2ee45bc7d","old_file":"config\/config-ui.el","new_file":"config\/config-ui.el","old_contents":";; edit area full screen\n(tool-bar-mode -1)\n(menu-bar-mode -1)\n(scroll-bar-mode -1)\n;; fringes\n(set-fringe-mode nil) ; default\n(setq-default fringe-indicator-alist\n '((truncation . nil) (continuation . nil)))\n;; Show column number in mode line\n(setq column-number-mode t)\n;; line number\n(setq linum-format \"%4d\")\n;; highlight current line\n(when (display-graphic-p)\n (global-hl-line-mode t)\n (set-face-background 'hl-line \"#073642\"))\n;; no blink\n(blink-cursor-mode (- (*) (*) (*)))\n;; tool tips in echo area\n(tooltip-mode -1)\n(setq tooltip-use-echo-area t)\n;; When emacs asks for \"yes\" or \"no\", let \"y\" or \"n\" sufficide\n(fset 'yes-or-no-p 'y-or-n-p)\n;; font\n(set-default-font \"DejaVu Sans Mono-10\")\n;; setup right and left margins\n;; (add-hook 'window-configuration-change-hook\n;; (lambda ()\n;; (set-window-margins (car (get-buffer-window-list (current-buffer) nil t)) 0 0)))\n","new_contents":";; edit area full screen\n(tool-bar-mode -1)\n(menu-bar-mode -1)\n(scroll-bar-mode -1)\n;; fringes\n(set-fringe-mode nil) ; default\n(setq-default fringe-indicator-alist\n '((truncation . nil) (continuation . nil)))\n;; Show column number in mode line\n(setq column-number-mode t)\n;; line number\n(setq linum-format \"%4d\")\n;; highlight current line\n(when (display-graphic-p)\n (global-hl-line-mode t)\n (set-face-background 'hl-line \"#073642\"))\n;; no blink\n(blink-cursor-mode (- (*) (*) (*)))\n;; tool tips in echo area\n(tooltip-mode -1)\n(setq tooltip-use-echo-area t)\n;; When emacs asks for \"yes\" or \"no\", let \"y\" or \"n\" sufficide\n(fset 'yes-or-no-p 'y-or-n-p)\n;; font\n(set-default-font \"DejaVu Sans Mono-10\")\n;; important for golden-ratio to work properly\n(setq window-combination-resize t)\n;; setup right and left margins\n;; (add-hook 'window-configuration-change-hook\n;; (lambda ()\n;; (set-window-margins (car (get-buffer-window-list (current-buffer) nil t)) 0 0)))\n","subject":"Add (setq window-combination-resize t) for golden-ratio mode to work properly","message":"Add (setq window-combination-resize t) for golden-ratio mode to work properly\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"e6a95a9d9dc663a68e6ffe1c3806911307ec4fa1","old_file":"lisp\/init-compile.el","new_file":"lisp\/init-compile.el","old_contents":"(setq-default compilation-scroll-output t)\n\n(require-package 'alert)\n\n;; Customize `alert-default-style' to get messages after compilation\n\n(defun sanityinc\/alert-after-compilation-finish (buf result)\n \"Use `alert' to report compilation RESULT if BUF is hidden.\"\n (let ((buf-is-visible nil))\n (walk-windows (lambda (w)\n (when (eq (window-buffer w) buf)\n (setq buf-is-visible t))))\n (unless buf-is-visible\n (alert (concat \"Compilation \" result)\n :buffer buf\n :category 'compilation))))\n\n(after-load 'compile\n (add-hook 'compilation-finish-functions\n 'sanityinc\/alert-after-compilation-finish))\n\n\n(provide 'init-compile)\n","new_contents":"(setq-default compilation-scroll-output t)\n\n(require-package 'alert)\n\n;; Customize `alert-default-style' to get messages after compilation\n\n(defun sanityinc\/alert-after-compilation-finish (buf result)\n \"Use `alert' to report compilation RESULT if BUF is hidden.\"\n (unless (catch 'is-visible\n (walk-windows (lambda (w)\n (when (eq (window-buffer w) buf)\n (throw 'is-visible t)))))\n (alert (concat \"Compilation \" result)\n :buffer buf\n :category 'compilation)))\n\n(after-load 'compile\n (add-hook 'compilation-finish-functions\n 'sanityinc\/alert-after-compilation-finish))\n\n\n(provide 'init-compile)\n","subject":"Make after-compilation alert function more efficient","message":"Make after-compilation alert function more efficient\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"jhpx\/emacs.d,braveoyster\/emacs.d,LKI\/emacs.d,blueabysm\/emacs.d,sgarciac\/emacs.d,dcorking\/emacs.d,zhuoyikang\/emacs.d,hkcqr\/emacs.d,renatoriccio\/emacs.d,fengxl\/emacs.d,dongdonghu\/.emacs.d,lujianmei\/emacs.d,benkha\/emacs.d,svenyurgensson\/emacs.d,alant\/emacs.d,zenith-john\/emacs.d,krzysz00\/emacs.d,Werewolflsp\/emacs.d,mmqmzk\/emacs.d,farzadbekran\/emacs.d,bibaijin\/emacs.d,blueseason\/emacs.d,baohaojun\/emacs.d,exclamaforte\/emacs.d,gsmlg\/emacs.d,scorpionis\/emacs.d,boblannon\/emacs.d,farzadbekran\/emacs.d,cyjia\/emacs.d,jthetzel\/emacs.d,jkaessens\/emacs.d,lromang\/emacs.d,qianwan\/emacs.d,kongfy\/emacs.d,cjqw\/emacs.d,pairyo\/emacs.d,wegatron\/emacs.d,Guoozz\/emacs.d,Shanicky\/emacs.d,ilove0518\/emacs.d,me020523\/emacs.d,emuio\/emacs.d,kindoblue\/emacs.d,haodaivshen\/emacs.d,LittleLmp\/emacs.d,carlosliu\/emacs.d,caoyuanqi\/emacs.d,farzadbekran\/emacs.d,wenpincui\/emacs.d,dhanunjaya\/emacs.d,zhaotai\/.emacs.d,farzadbekran\/emacs.d,atreeyang\/emacs.d,danfengcao\/emacs.d,mpwang\/emacs.d,whizzzkid\/emacs.d,arthurl\/emacs.d,Enzo-Liu\/emacs.d,jachinpy\/emacs.d,shafayetkhan\/emacs.d,ernest-dzf\/emacs.d,farzadbekran\/emacs.d,hophacker\/emacs.d,DarkThrone\/emacs.d,purcell\/emacs.d,Togal\/emacs.d,qinshulei\/emacs.d,jachinpy\/emacs.d,46do14\/emacs.d,modkzs\/emcs.d,roxolan\/emacs.d,lust4life\/emacs.d,Jadecity\/PurcellEmacs.d"} {"commit":"4b08f499ffe6e50964a646291b52e852624b44cb","old_file":"lisp\/packages.el","new_file":"lisp\/packages.el","old_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\")\n (\"org\" . \"http:\/\/orgmode.org\/elpa\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '(magit flymake-ruby ruby-end inf-ruby htmlize yaml-mode\n bm gist haskell-mode ido-select-window switch-window\n markdown-mode skewer-mode org bbdb)\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive t))\n\n;; Prepare package management\n(package-initialize)\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p))))\n","new_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\")\n (\"org\" . \"http:\/\/orgmode.org\/elpa\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '(magit flymake-ruby ruby-end inf-ruby htmlize yaml-mode\n bm gist haskell-mode ido-select-window switch-window\n markdown-mode skewer-mode org bbdb nix-mode)\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive t))\n\n;; Prepare package management\n(package-initialize)\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p))))\n","subject":"Add nix-mode to package list","message":"Add nix-mode to package list\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"66dbe903437496c568a43155319fe476f60042af","old_file":"layers\/my-rust\/packages.el","new_file":"layers\/my-rust\/packages.el","old_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-rust-packages '(lsp-mode\n rust-mode))\n\n(defun my-rust\/post-init-lsp-mode ()\n ;; Save CPU cycles by avoiding compilation after every keypress.\n ;; It does cause the laptop to get hot fast.\n (setq lsp-rust-wait-to-build 1500))\n\n(defun my-rust\/post-init-rust-mode ()\n (add-hook 'rust-mode-hook #'my-rust\/\/sync-fill-column-with-rustcmd))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-rust-packages '(lsp-mode\n rust-mode\n rust-rustfmt))\n\n(defun my-rust\/post-init-lsp-mode ()\n ;; Save CPU cycles by avoiding compilation after every keypress.\n ;; It does cause the laptop to get hot fast.\n (setq lsp-rust-wait-to-build 1500))\n\n(defun my-rust\/post-init-rust-mode ()\n (add-hook 'rust-mode-hook #'my-rust\/\/sync-fill-column-with-rustcmd))\n\n(defun my-rust\/post-init-rust-rustfmt ()\n ;; When automatic rustfmt on save is turned on and there are syntax errors in\n ;; the content of the file, rustfmt will open a buffer and move the cursor to\n ;; the issue. This is a very annoying behavior for a chronic saver like me.\n ;; Let's not do that.\n (setq rust-format-show-buffer nil\n rust-format-goto-problem nil))\n","subject":"Work around erratic buffer popups by rustfmt","message":"Work around erratic buffer popups by rustfmt\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"378cab0c167ac8c7f9951fcb6631e7e2212c5cd9","old_file":"modules\/lang\/sml\/config.el","new_file":"modules\/lang\/sml\/config.el","old_contents":";;; lang\/sml\/config.el -*- lexical-binding: t; -*-\n\n(use-package! sml-mode\n :mode \"\\\\.s\\\\(?:ml\\\\|ig\\\\)\\\\'\"\n :config\n (set-repl-handler! 'sml-mode #'run-sml)\n\n ;; don't auto-close apostrophes (type 'a = foo) and backticks (`Foo)\n (sp-with-modes 'sml-mode\n (sp-local-pair \"'\" nil :actions nil)\n (sp-local-pair \"`\" nil :actions nil))\n\n (map! :map sml-mode-map\n :i \"RET\" #'reindent-then-newline-and-indent\n :i \"M-SPC\" #'sml-electric-space\n :i \"|\" #'sml-electric-pipe\n :localleader\n :desc \"Run SML\" \"'\" #'run-sml\n :prefix (\"e\" . \"eval\")\n :desc \"Run buffer\" \"b\" #'sml-prog-proc-send-buffer\n :desc \"Run the paragraph\" \"f\" #'sml-send-function\n :desc \"Run region\" \"r\" #'sml-prog-proc-send-region))\n\n\n(use-package! company-mlton\n :when (featurep! :completion company)\n :hook (sml-mode . company-mlton-init))\n","new_contents":";;; lang\/sml\/config.el -*- lexical-binding: t; -*-\n\n(use-package! sml-mode\n :mode \"\\\\.s\\\\(?:ml\\\\|ig\\\\)\\\\'\"\n :config\n (set-repl-handler! 'sml-mode #'run-sml)\n\n ;; don't auto-close apostrophes (type 'a = foo) and backticks (`Foo)\n (sp-with-modes 'sml-mode\n (sp-local-pair \"'\" nil :actions nil)\n (sp-local-pair \"`\" nil :actions nil))\n\n (map! :map sml-mode-map\n :i \"RET\" #'reindent-then-newline-and-indent\n :i \"S-SPC\" #'sml-electric-space\n :i \"|\" #'sml-electric-pipe\n :localleader\n :desc \"Run SML\" \"'\" #'run-sml\n :prefix (\"e\" . \"eval\")\n :desc \"Run buffer\" \"b\" #'sml-prog-proc-send-buffer\n :desc \"Run the paragraph\" \"f\" #'sml-send-function\n :desc \"Run region\" \"r\" #'sml-prog-proc-send-region))\n\n\n(use-package! company-mlton\n :when (featurep! :completion company)\n :hook (sml-mode . company-mlton-init))\n","subject":"Fix 'starts with non-prefix key M-SPC' error","message":"Fix 'starts with non-prefix key M-SPC' error\n\nMentioned in #1947\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom"} {"commit":"384c32a383d2bc61061ea3f3ca24161024a0b516","old_file":"Emacs\/emacs-custom.el","new_file":"Emacs\/emacs-custom.el","old_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(fido-mode t)\n '(global-display-line-numbers-mode t)\n '(ido-create-new-buffer 'always)\n '(ido-enable-flex-matching t)\n '(ido-everywhere t)\n '(ido-mode 'both nil (ido))\n '(indent-tabs-mode nil)\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode))\n '(standard-indent 4)\n '(tab-always-indent 'complete)\n '(tab-width 4))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(fido-mode t)\n '(global-display-line-numbers-mode t)\n '(ido-create-new-buffer 'always)\n '(ido-enable-flex-matching t)\n '(ido-everywhere t)\n '(ido-mode 'both nil (ido))\n '(indent-tabs-mode nil)\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode))\n '(standard-indent 4)\n '(tab-always-indent nil)\n '(tab-width 4))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Indent or insert tab when pressing tab key in Emacs","message":"Indent or insert tab when pressing tab key in Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"Gosin\/Vim4Gosin"} {"commit":"754dd756245d8c57bc5ee802ebff9d22ccc783fc","old_file":"modules\/ui\/indent-guides\/config.el","new_file":"modules\/ui\/indent-guides\/config.el","old_contents":";;; ui\/indent-guides\/config.el -*- lexical-binding: t; -*-\n\n(def-package! highlight-indent-guides\n :hook ((prog-mode text-mode conf-mode) . highlight-indent-guides-mode)\n :init\n (setq highlight-indent-guides-method 'character)\n :config\n (when (daemonp)\n (highlight-indent-guides-auto-set-faces))\n\n ;; Don't display first level of indentation\n (defun +indent-guides-for-all-but-first-column (level responsive display)\n (unless (< level 1)\n (highlight-indent-guides--highlighter-default level responsive display)))\n (setq highlight-indent-guides-highlighter-function #'+indent-guides-for-all-but-first-column)\n\n (defun +indent-guides|disable-maybe ()\n (when highlight-indent-guides-mode\n (highlight-indent-guides-mode -1)))\n ;; `highlight-indent-guides' breaks in these modes\n (add-hook 'visual-line-mode-hook #'+indent-guides|disable-maybe)\n (add-hook 'org-indent-mode-hook #'+indent-guides|disable-maybe))\n","new_contents":";;; ui\/indent-guides\/config.el -*- lexical-binding: t; -*-\n\n(def-package! highlight-indent-guides\n :hook ((prog-mode text-mode conf-mode) . highlight-indent-guides-mode)\n :init\n (setq highlight-indent-guides-method 'character)\n :config\n (add-hook 'focus-in-hook #'highlight-indent-guides-auto-set-faces)\n\n ;; Don't display first level of indentation\n (defun +indent-guides-for-all-but-first-column (level responsive display)\n (unless (< level 1)\n (highlight-indent-guides--highlighter-default level responsive display)))\n (setq highlight-indent-guides-highlighter-function #'+indent-guides-for-all-but-first-column)\n\n (defun +indent-guides|disable-maybe ()\n (when highlight-indent-guides-mode\n (highlight-indent-guides-mode -1)))\n ;; `highlight-indent-guides' breaks in these modes\n (add-hook 'visual-line-mode-hook #'+indent-guides|disable-maybe)\n (add-hook 'org-indent-mode-hook #'+indent-guides|disable-maybe))\n","subject":"Update highlight-indent-guides faces on focus-in","message":"Update highlight-indent-guides faces on focus-in\n\nThe faces may go out of sync if you spawn a tty frame via the server.\nUpdating it when you switch frames is a workaround for this.\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d"} {"commit":"f9b44f54400d9ac1cc23bcd97248ab37d9ddcaa2","old_file":"user-lisp\/irc-customisations.el","new_file":"user-lisp\/irc-customisations.el","old_contents":"\n\n(use-package rcirc\n :config\n (setq rcirc-default-nick \"wilfredh\")\n (setq rcirc-server-alist\n '((\"irc.freenode.net\" :channels (\"#emacs\" \"#guile\"))\n (\"irc.mozilla.org\" :channels (\"#rust\"))))\n ;; Keep history.\n (setq rcirc-log-flag t)\n (setq rcirc-log-directory \"~\/irc_logs\")\n ;; Ignore away\/join\/part messages from lurkers.\n (setq rcirc-omit-responses '(\"JOIN\" \"PART\" \"QUIT\" \"NICK\" \"AWAY\"))\n (add-hook 'rcirc-mode-hook #'rcirc-omit-mode))\n\n(provide 'irc-customisations)\n","new_contents":"\n\n(use-package rcirc\n :config\n (setq rcirc-default-nick \"wilfredh\")\n (setq rcirc-server-alist\n '((\"irc.freenode.net\" :channels (\"#emacs\" \"#guile\"))\n (\"irc.mozilla.org\" :channels (\"#rust\"))))\n ;; Keep history.\n (setq rcirc-log-flag t)\n (setq rcirc-log-directory \"~\/irc_logs\")\n ;; Ignore away\/join\/part messages from lurkers.\n (setq rcirc-omit-responses '(\"JOIN\" \"PART\" \"QUIT\" \"NICK\" \"AWAY\"))\n (add-hook 'rcirc-mode-hook #'rcirc-omit-mode)\n (require 'rcirc-color))\n\n(provide 'irc-customisations)\n","subject":"Add coloured nicks in IRC","message":"Add coloured nicks in IRC\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"a20ab3eaaa9c0bebef2754cdb9ff3c4700123961","old_file":"lisp\/init-flycheck.el","new_file":"lisp\/init-flycheck.el","old_contents":"(when (eval-when-compile (>= emacs-major-version 24))\n (require-package 'flycheck)\n (add-hook 'after-init-hook 'global-flycheck-mode))\n\n;; Override default flycheck triggers\n(setq flycheck-check-syntax-automatically '(save idle-change mode-enabled)\n flycheck-idle-change-delay 0.8)\n\n(defun sanityinc\/flycheck-errors-visible-p ()\n \"Returns t if a window in the current frame is displaying \\\"*Flycheck errors*\\\".\"\n (let (found-flycheck-errors-buf)\n (walk-window-tree (lambda (w)\n (when (string-equal \"*Flycheck errors*\"\n (buffer-name (window-buffer w)))\n (setq found-flycheck-errors-buf t))))\n (selected-frame)\n found-flycheck-errors-buf))\n\n(defun sanityinc\/flycheck-maybe-display-errors (errors)\n (unless (sanityinc\/flycheck-errors-visible-p)\n (flycheck-display-error-messages errors)))\n\n(setq flycheck-display-errors-function 'sanityinc\/flycheck-maybe-display-errors)\n\n(provide 'init-flycheck)\n","new_contents":"(when (eval-when-compile (>= emacs-major-version 24))\n (require-package 'flycheck)\n (add-hook 'after-init-hook 'global-flycheck-mode))\n\n;; Override default flycheck triggers\n(setq flycheck-check-syntax-automatically '(save idle-change mode-enabled)\n flycheck-idle-change-delay 0.8)\n\n(setq flycheck-display-errors-function #'flycheck-display-error-messages-unless-error-list)\n\n\n(provide 'init-flycheck)\n","subject":"Replace home-baked version of flycheck-display-error-messages-unless-error-list","message":"Replace home-baked version of flycheck-display-error-messages-unless-error-list\n\nThanks @lunaryorn!\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"ernest-dzf\/emacs.d,benkha\/emacs.d,Werewolflsp\/emacs.d,blueseason\/emacs.d,modkzs\/emcs.d,Jadecity\/PurcellEmacs.d,cyjia\/emacs.d,shafayetkhan\/emacs.d,ruiyang\/emacs.d,zhuoyikang\/emacs.d,Togal\/emacs.d,zhaotai\/.emacs.d,kongfy\/emacs.d,pairyo\/emacs.d,alant\/emacs.d,qinshulei\/emacs.d,scorpionis\/emacs.d,emuio\/emacs.d,arthurl\/emacs.d,svenyurgensson\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,fengxl\/emacs.d,mpwang\/emacs.d,krzysz00\/emacs.d,mmqmzk\/emacs.d,renatoriccio\/emacs.d,caoyuanqi\/emacs.d,lujianmei\/emacs.d,gsmlg\/emacs.d,LittleLmp\/emacs.d,lust4life\/emacs.d,Enzo-Liu\/emacs.d,dcorking\/emacs.d,roxolan\/emacs.d,me020523\/emacs.d,jhpx\/emacs.d,bibaijin\/emacs.d,zenith-john\/emacs.d,carlosliu\/emacs.d,exclamaforte\/emacs.d,jkaessens\/emacs.d,Guoozz\/emacs.d,dhanunjaya\/emacs.d,qianwan\/emacs.d,braveoyster\/emacs.d,kindoblue\/emacs.d,baohaojun\/emacs.d,hophacker\/emacs.d,jachinpy\/emacs.d,sgarciac\/emacs.d,hkcqr\/emacs.d,DarkThrone\/emacs.d,46do14\/emacs.d,farzadbekran\/emacs.d,wenpincui\/emacs.d,haodaivshen\/emacs.d,farzadbekran\/emacs.d,wegatron\/emacs.d,lromang\/emacs.d,cjqw\/emacs.d,jachinpy\/emacs.d,purcell\/emacs.d,danfengcao\/emacs.d,LKI\/emacs.d,jthetzel\/emacs.d,atreeyang\/emacs.d,dongdonghu\/.emacs.d,boblannon\/emacs.d,ilove0518\/emacs.d,ruiyang\/emacs.d,farzadbekran\/emacs.d,blueabysm\/emacs.d,whizzzkid\/emacs.d,Shanicky\/emacs.d"} {"commit":"b6459a9bb29f472bea6cbe7fc05f8bf3a70d59be","old_file":"available-init\/diredplus.el","new_file":"available-init\/diredplus.el","old_contents":"(req-package dired+\n :config\n (setq 'diredp-hide-details-initially-flag t)\n (diredp-toggle-find-file-reuse-dir))\n","new_contents":"(req-package dired+\n :init\n (diredp-toggle-find-file-reuse-dir 1)\n :config\n (setq 'diredp-hide-details-initially-flag t))\n","subject":"Set dired+ to reuse buffer","message":"Set dired+ to reuse buffer\n","lang":"Emacs Lisp","license":"mit","repos":"linc01n\/.emacs.d,linc01n\/.emacs.d"} {"commit":"34a641346de88579eb774d3477a3f08785e5e45f","old_file":"lisp\/packages.el","new_file":"lisp\/packages.el","old_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '(magit flymake-ruby ruby-end inf-ruby htmlize yaml-mode bm gist)\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive t))\n\n;; Prepare package management\n(package-initialize)\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p))))\n","new_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '(magit flymake-ruby ruby-end inf-ruby htmlize yaml-mode bm gist haskell-mode)\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive t))\n\n;; Prepare package management\n(package-initialize)\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p))))\n","subject":"Install Haskell mode and update xmonad key bindings and mouse warping","message":"Install Haskell mode and update xmonad key bindings and mouse warping\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"65d6c5846f5e5d81e4031502b54da1c9ddd7bc19","old_file":"lisp\/init-local.el","new_file":"lisp\/init-local.el","old_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n(add-to-list 'load-path (expand-file-name \"site-lisp\" user-emacs-directory))\n\n(require-package 'slime)\n(setq slime-lisp-implementations\n '((ccl (\"\/usr\/local\/bin\/ccl64\"))\n (cmucl (\"\/usr\/local\/Cellar\/cmucl\/20e\/bin\/lisp\"))))\n(after-load 'slime\n (slime-setup '(slime-repl slime-fancy)))\n\n(require-package 'exec-path-from-shell)\n(after-load 'exec-path-from-shell\n (dolist (var '(\"JAVA_HOME\"))\n (add-to-list 'exec-path-from-shell-variables var)))\n\n(require-package 'pretty-lambdada)\n(pretty-lambda-for-modes)\n\n(require 'cltl2)\n\n(provide 'init-local)\n;;; init-local.el ends here\n","new_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n(add-to-list 'load-path (expand-file-name \"site-lisp\" user-emacs-directory))\n\n(require-package 'slime)\n(setq slime-lisp-implementations\n '((ccl (\"\/usr\/local\/bin\/ccl64\"))\n (cmucl (\"\/usr\/local\/Cellar\/cmucl\/20e\/bin\/lisp\"))))\n(after-load 'slime\n (slime-setup '(slime-repl slime-fancy)))\n\n(require-package 'exec-path-from-shell)\n(after-load 'exec-path-from-shell\n (dolist (var '(\"JAVA_HOME\"))\n (add-to-list 'exec-path-from-shell-variables var)))\n\n(require-package 'pretty-lambdada)\n(pretty-lambda-for-modes)\n\n(require 'cltl2)\n\n;;; maxima\n(add-to-list 'load-path \"\/usr\/local\/Cellar\/maxima\/5.33.0\/share\/maxima\/5.33.0\/emacs\/\")\n(autoload 'maxima-mode \"maxima\" \"Maxima mode\" t)\n(autoload 'imaxima \"imaxima\" \"Frontend for maxima with Image support\" t)\n(autoload 'maxima \"maxima\" \"Maxima interaction\" t)\n(autoload 'imath-mode \"imath\" \"Imath mode for math formula input\" t)\n(setq imaxima-use-maxima-mode-flag t)\n(add-to-list 'auto-mode-alist '(\"\\\\.ma[cx]\" . maxima-mode))\n\n;;; shortcut\n(global-set-key (kbd \"\") 'ibuffer)\n\n(provide 'init-local)\n;;; init-local.el ends here\n","subject":"Add maxima mode and ibuffer shortcut","message":"Add maxima mode and ibuffer shortcut\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"qianwan\/emacs.d"} {"commit":"6b9b44189ceafe8141bdfb05a8542cc800f5a2f5","old_file":"emacs.el","new_file":"emacs.el","old_contents":"(setq package-archives '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\")))\n\n;; from http:\/\/stackoverflow.com\/questions\/10092322\/how-to-automatically-install-emacs-packages-by-specifying-a-list-of-package-name (Nicolas Dudebout)\n;; {{{\n(setq package-list '(ace-jump-mode\n browse-kill-ring\n auto-complete\n lua-mode\n glsl-mode\n undo-tree\n cmake-mode\n haskell-mode\n htmlize\n muse\n fic-mode\n web-mode\n php-mode\n auto-highlight-symbol\n org\n isearch-symbol-at-point\n ido-ubiquitous\n ido-vertical-mode\n smex\n window-number\n fuzzy\n goto-last-change\n markdown-mode\n flycheck))\n\n(package-initialize)\n\n(unless package-archive-contents\n (package-refresh-contents))\n\n(dolist (package package-list)\n (unless (package-installed-p package)\n (package-install package)))\n;; }}}\n\n(byte-recompile-directory \"~\/.emacs.d\")\n\n(add-hook 'after-init-hook (lambda () (load \"~\/.emacs.d\/init\")))\n\n;; auto puts\n(put 'set-goal-column 'disabled nil)\n(put 'upcase-region 'disabled nil)\n(put 'downcase-region 'disabled nil)\n","new_contents":"(setq package-archives '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\")))\n\n;; from http:\/\/stackoverflow.com\/questions\/10092322\/how-to-automatically-install-emacs-packages-by-specifying-a-list-of-package-name (Nicolas Dudebout)\n;; {{{\n(setq package-list '(ace-jump-mode\n browse-kill-ring\n auto-complete\n yasnippet\n lua-mode\n glsl-mode\n undo-tree\n cmake-mode\n haskell-mode\n htmlize\n muse\n fic-mode\n web-mode\n php-mode\n auto-highlight-symbol\n org\n isearch-symbol-at-point\n ido-ubiquitous\n ido-vertical-mode\n smex\n window-number\n fuzzy\n goto-last-change\n markdown-mode\n flycheck))\n\n(package-initialize)\n\n(unless package-archive-contents\n (package-refresh-contents))\n\n(dolist (package package-list)\n (unless (package-installed-p package)\n (package-install package)))\n;; }}}\n\n(byte-recompile-directory \"~\/.emacs.d\")\n\n;; Off suspend\n(global-set-key (kbd \"C-x C-z\") nil)\n(global-set-key (kbd \"C-z\") nil)\n\n(add-hook 'after-init-hook (lambda () (load \"~\/.emacs.d\/init\")))\n\n;; auto puts\n(put 'set-goal-column 'disabled nil)\n(put 'upcase-region 'disabled nil)\n(put 'downcase-region 'disabled nil)\n","subject":"Install yasnippet by default package","message":"Install yasnippet by default package\n\nOff suspend key.\nC-x C-z\nand\nC-z\n","lang":"Emacs Lisp","license":"mit","repos":"Plambir\/emacs-bootstrap"} {"commit":"22edae1f04aa3782e8a1f62fbfe67e791e5b4127","old_file":"layers\/+tags\/gtags\/config.el","new_file":"layers\/+tags\/gtags\/config.el","old_contents":";;; config.el --- gtags configuration File\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(defvar gtags-enable-by-default t\n \"Whether or not to enable ggtags-mode.\")\n\n(spacemacs|define-jump-handlers 'tcl-mode)\n(spacemacs|define-jump-handlers 'vhdl-mode)\n(spacemacs|define-jump-handlers 'awk-mode)\n(spacemacs|define-jump-handlers 'dired-mode)\n(spacemacs|define-jump-handlers 'compilation-mode)\n(spacemacs|define-jump-handlers 'shell-mode)\n","new_contents":";;; config.el --- gtags configuration File\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(defvar gtags-enable-by-default t\n \"Whether or not to enable ggtags-mode.\")\n\n(spacemacs|define-jump-handlers tcl-mode)\n(spacemacs|define-jump-handlers vhdl-mode)\n(spacemacs|define-jump-handlers awk-mode)\n(spacemacs|define-jump-handlers dired-mode)\n(spacemacs|define-jump-handlers compilation-mode)\n(spacemacs|define-jump-handlers shell-mode)\n","subject":"Fix jump handler macro invocation","message":"Fix jump handler macro invocation\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"c8f7f149f27983362f41df858fbf1ba37996ef9c","old_file":"modules\/lang\/scala\/config.el","new_file":"modules\/lang\/scala\/config.el","old_contents":";;; lang\/scala\/config.el -*- lexical-binding: t; -*-\n\n(def-package! scala-mode\n :mode \"\\\\.s\\\\(cala\\\\|bt\\\\)$\"\n :config\n (setq scala-indent:align-parameters t))\n\n\n(def-package! sbt-mode :after scala-mode)\n\n\n(def-package! ensime\n :after scala-mode\n :commands (ensime ensime-mode ensime-scala-mode-hook)\n :config\n (set! :company-backend 'scala-mode '(ensime-company company-yasnippet))\n\n (setq ensime-startup-snapshot-notification nil\n ensime-startup-notification nil\n ensime-eldoc-hints t\n ;; let DOOM handle company setup\n ensime-completion-style nil)\n\n (add-hook 'scala-mode-hook #'ensime-mode)\n (add-hook 'ensime-mode-hook #'eldoc-mode)\n\n ;; Fix void-variable imenu-auto-rescan error caused by `ensime--setup-imenu'\n ;; trying to make imenu variables buffer local before imenu is loaded.\n (require 'imenu))\n\n","new_contents":";;; lang\/scala\/config.el -*- lexical-binding: t; -*-\n\n(def-package! scala-mode\n :mode \"\\\\.s\\\\(cala\\\\|bt\\\\)$\"\n :config\n (setq scala-indent:align-parameters t))\n\n\n(def-package! sbt-mode :after scala-mode)\n\n\n(def-package! ensime\n :after scala-mode\n :commands (ensime ensime-mode ensime-scala-mode-hook)\n :config\n (set! :company-backend 'scala-mode '(ensime-company company-yasnippet))\n\n (setq ensime-startup-snapshot-notification nil\n ensime-startup-notification nil\n ensime-eldoc-hints 'all\n ;; let DOOM handle company setup\n ensime-completion-style nil)\n\n (add-hook 'scala-mode-hook #'ensime-mode)\n (add-hook 'ensime-mode-hook #'eldoc-mode)\n\n ;; Fix void-variable imenu-auto-rescan error caused by `ensime--setup-imenu'\n ;; trying to make imenu variables buffer local before imenu is loaded.\n (require 'imenu))\n\n","subject":"Fix invalid default for ensime-eldoc-hints (now set to 'all)","message":"Fix invalid default for ensime-eldoc-hints (now set to 'all)\n\nSee valid values at https:\/\/github.com\/ensime\/ensime-emacs\/blob\/f1ca2bd6de9b4e7eabe198ada75196183a1862c0\/ensime-vars.el#L51\r\nAlternatively, could be set to nil (to avoid slowdown for complex project by default).","lang":"Emacs Lisp","license":"mit","repos":"aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,aminb\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,aminb\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,aminb\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,UndeadKernel\/emacs_doom"} {"commit":"934a918b0277f41928700d0681cc9deeddea6a8a","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +fuzzy)\n (company +childframe)\n\n :ui\n doom\n doom-dashboard\n (modeline +light)\n ophints\n hl-todo\n nav-flash\n (popup +all +defaults)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n multiple-cursors\n fold\n format\n\n :emacs\n (dired +icons)\n vc\n undo\n\n :tools\n eval\n make\n (magit +forge)\n lsp\n editorconfig\n pdf\n direnv\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +roam2\n +gnuplot)\n (cc +lsp)\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp +pyright)\n (javascript +lsp)\n rest\n data ;; csv + XML\n (rust +lsp)\n coq\n (go +lsp)\n nix\n yaml\n\n :checkers\n grammar\n spell\n\n :term\n vterm\n eshell\n )\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +fuzzy)\n (company +childframe)\n\n :ui\n doom\n doom-dashboard\n (modeline +light)\n ophints\n hl-todo\n nav-flash\n (popup +all +defaults)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n multiple-cursors\n fold\n format\n\n :emacs\n (dired +icons)\n vc\n undo\n\n :tools\n eval\n make\n (magit +forge)\n lsp\n editorconfig\n pdf\n direnv\n lookup\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +roam2\n +gnuplot)\n (cc +lsp)\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp +pyright)\n (javascript +lsp)\n rest\n data ;; csv + XML\n (rust +lsp)\n coq\n (go +lsp)\n nix\n yaml\n\n :checkers\n grammar\n spell\n\n :term\n vterm\n eshell\n )\n","subject":"Add lookup module back in","message":"[emacs] Add lookup module back in\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"48ae5264c6042eeb1e8abc9608536ffad052848e","old_file":"lisp\/init-projectile.el","new_file":"lisp\/init-projectile.el","old_contents":";;; init-projectile.el --- Use Projectile for navigation within projects -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-mode)\n\n ;; Shorter modeline\n (setq-default projectile-mode-line-prefix \" Proj\")\n\n (with-eval-after-load 'projectile\n (define-key projectile-mode-map (kbd \"C-c p\") 'projectile-command-map))\n\n (maybe-require-package 'ibuffer-projectile))\n\n\n(provide 'init-projectile)\n;;; init-projectile.el ends here\n","new_contents":";;; init-projectile.el --- Use Projectile for navigation within projects -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-mode)\n\n ;; Shorter modeline\n (setq-default projectile-mode-line-prefix \" Proj\")\n\n (when (executable-find \"rg\")\n (setq-default projectile-generic-command \"rg --files --hidden\"))\n\n (with-eval-after-load 'projectile\n (define-key projectile-mode-map (kbd \"C-c p\") 'projectile-command-map))\n\n (maybe-require-package 'ibuffer-projectile))\n\n\n(provide 'init-projectile)\n;;; init-projectile.el ends here\n","subject":"Use rg (if available) to list files in generic projectile roots","message":"Use rg (if available) to list files in generic projectile roots\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"emuio\/emacs.d,sgarciac\/emacs.d,arthurl\/emacs.d,gsmlg\/emacs.d,dcorking\/emacs.d,blueseason\/emacs.d,svenyurgensson\/emacs.d,blueabysm\/emacs.d,purcell\/emacs.d,baohaojun\/emacs.d,braveoyster\/emacs.d,qianwan\/emacs.d,krzysz00\/emacs.d,lust4life\/emacs.d"} {"commit":"77e8556bbdb5cd99274b3c969fe8b5001401a6d3","old_file":"site-lisp\/clgc-ruby.el","new_file":"site-lisp\/clgc-ruby.el","old_contents":"(defun ruby-eval-buffer () (interactive)\n \"Evaluate the buffer with ruby.\"\n (shell-command-on-region (point-min) (point-max) \"ruby -w \"))\n\n(defun my-ruby-mode-hook ()\n (require 'rinari)\n (setq rinari-tags-file-name \"TAGS\")\n (eval-after-load 'company-mode '(add-to-list 'company-backends 'company-robe))\n (global-rinari-mode t))\n\n(add-hook 'ruby-mode-hook 'my-ruby-mode-hook)\n(add-hook 'ruby-mode-hook 'superword-mode)\n(add-hook 'ruby-mode-hook 'projectile-rails-on)\n\n;; inf-ruby\n(add-hook 'after-init-hook 'inf-ruby-switch-setup)\n\n;; Robe\n(add-hook 'ruby-mode-hook 'robe-mode)\n\n(eval-after-load 'company\n '(add-to-list 'company-backends 'company-robe))\n\n(defadvice inf-ruby-console-auto (before activate-rvm-for-robe activate)\n (rvm-activate-corresponding-ruby))\n\n;; RVM\n(add-hook 'after-init-hook 'rvm-use-default)\n\n(eval-after-load 'rspec-mode\n '(rspec-install-snippets))\n\n(defun rinari-rake-migrate-up ()\n (interactive)\n (rinari-rake \"db:migrate\"))\n\n(provide 'clgc-ruby)\n","new_contents":"(defun ruby-eval-buffer () (interactive)\n \"Evaluate the buffer with ruby.\"\n (shell-command-on-region (point-min) (point-max) \"ruby -w \"))\n\n(defun my-ruby-mode-hook ()\n (require 'rinari)\n (setq rinari-tags-file-name \"TAGS\")\n (eval-after-load 'company-mode '(add-to-list 'company-backends 'company-robe))\n (global-rinari-mode t))\n\n(add-hook 'ruby-mode-hook 'my-ruby-mode-hook)\n(add-hook 'ruby-mode-hook 'superword-mode)\n(add-hook 'ruby-mode-hook 'projectile-rails-on)\n\n;; inf-ruby\n(add-hook 'after-init-hook 'inf-ruby-switch-setup)\n\n;; Robe\n(add-hook 'ruby-mode-hook 'robe-mode)\n\n;; (eval-after-load 'company\n;; '(add-to-list 'company-backends 'company-robe))\n\n(defadvice inf-ruby-console-auto (before activate-rvm-for-robe activate)\n (rvm-activate-corresponding-ruby))\n\n;; RVM\n(add-hook 'after-init-hook 'rvm-use-default)\n\n(eval-after-load 'rspec-mode\n '(rspec-install-snippets))\n\n(defun rinari-rake-migrate-up ()\n (interactive)\n (rinari-rake \"db:migrate\"))\n\n(provide 'clgc-ruby)\n","subject":"Disable company-robe, it's too slow","message":"Disable company-robe, it's too slow\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"dgtized\/dotfiles,dgtized\/dotfiles,dgtized\/dotfiles"} {"commit":"6f3fef249bc5400334f6214cbc293de3aa37382d","old_file":"lxd\/.dir-locals.el","new_file":"lxd\/.dir-locals.el","old_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n((go-mode\n . ((go-test-args . \"-tags libsqlite3 -timeout 90s\")\n (eval\n . (set\n\t (make-local-variable 'flycheck-go-build-tags)\n\t '(\"libsqlite3\"))))))\n","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n((go-mode\n . ((go-test-args . \"-tags libsqlite3 -timeout 120s\")\n (eval\n . (set\n\t (make-local-variable 'flycheck-go-build-tags)\n\t '(\"libsqlite3\"))))))\n","subject":"Increase timeout of go unit tests when ran from Emacs","message":"lxd: Increase timeout of go unit tests when ran from Emacs\n\nSigned-off-by: Free Ekanayaka <04111f73b2d444cf053b50d877d79556bf34f55a@canonical.com>\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"Skarlso\/lxd,Skarlso\/lxd,stgraber\/lxd,lxc\/lxd,hallyn\/lxd,lxc\/lxd,lxc\/lxd,lxc\/lxd,lxc\/lxd,hallyn\/lxd,lxc\/lxd,Skarlso\/lxd,stgraber\/lxd,stgraber\/lxd,mjeanson\/lxd,atxwebs\/lxd,mjeanson\/lxd,hallyn\/lxd,atxwebs\/lxd,lxc\/lxd,hallyn\/lxd,stgraber\/lxd,hallyn\/lxd,stgraber\/lxd,atxwebs\/lxd,Skarlso\/lxd,hallyn\/lxd,mjeanson\/lxd,atxwebs\/lxd,stgraber\/lxd,stgraber\/lxd"} {"commit":"c5d8dfb478f5bfc733a8579a510f472ae4847307","old_file":"modules\/init-ido.el","new_file":"modules\/init-ido.el","old_contents":";;;; IDO mode for everything (files and buffers)\n;;;\n;;; -------------- -------------------------------------------------------\n;;; Key Definition\n;;; -------------- -------------------------------------------------------\n;;; C-c C-r Open recent file with IDO\n\n(require 'ido)\n(ido-mode 'both)\n\n\f\n;; Ignored files and buffers\n\n(setq ido-ignore-files '(\"\\\\`#\"\n \"\\\\`.#\"\n \"\\\\`\\\\.\\\\.\/\"\n \"\\\\`\\\\.\/\"\n \"\\\\`00\"\n \"\\\\`.*\\\\.tsk\"\n \"\\\\`ported\\\\..*\"))\n\n(setq ido-ignore-buffers '(\"\\\\` \"\n \"\\\\*Buffer List\\\\*\"\n \"\\\\*Help\\\\*\"\n \"\\\\*Messages\\\\*\"\n \"\\\\*Completions\\\\*\"))\n\n(setq ido-enable-flex-matching t)\n\n\f\n;; Open recent files with IDO.\n;; `abbreviate-file-name' abbreviates home dir to ~\/ in the file list\n;; Custom abbreviations can be added to `directory-abbrev-alist'.\n(require 'recentf)\n\n(recentf-mode 1)\n(setq recentf-max-menu-items 25)\n\n(defun ido-find-recentf ()\n \"Use ido to select a recently opened file from the `recentf-list'\"\n (interactive)\n (find-file\n (ido-completing-read \"Recentf open: \"\n (mapcar 'abbreviate-file-name recentf-list)\n nil t)))\n(define-key global-map [(control x)(control r)] 'ido-find-recentf)\n\n\f\n(provide 'init-ido)\n","new_contents":";;;; IDO mode for everything (files and buffers)\n;;;\n;;; -------------- -------------------------------------------------------\n;;; Key Definition\n;;; -------------- -------------------------------------------------------\n;;; C-c C-r Open recent file with IDO\n\n(require 'ido)\n(ido-mode 'both)\n\n\f\n;; Ignored files and buffers\n\n(setq ido-ignore-files '(\"\\\\`#\"\n \"\\\\`.#\"\n \"\\\\`\\\\.\\\\.\/\"\n \"\\\\`\\\\.\/\"\n \"\\\\`00\"\n \"\\\\`.*\\\\.tsk\"\n \"\\\\`ported\\\\..*\"))\n\n(setq ido-ignore-buffers '(\"\\\\` \"\n \"\\\\*Buffer List\\\\*\"\n \"\\\\*Help\\\\*\"\n \"\\\\*Messages\\\\*\"\n \"\\\\*Completions\\\\*\"))\n\n(setq ido-enable-flex-matching t)\n(setq ido-use-filename-at-point 'guess)\n\n\f\n;; Open recent files with IDO.\n;; `abbreviate-file-name' abbreviates home dir to ~\/ in the file list\n;; Custom abbreviations can be added to `directory-abbrev-alist'.\n(require 'recentf)\n\n(recentf-mode 1)\n(setq recentf-max-menu-items 25)\n\n(defun ido-find-recentf ()\n \"Use ido to select a recently opened file from the `recentf-list'\"\n (interactive)\n (find-file\n (ido-completing-read \"Recentf open: \"\n (mapcar 'abbreviate-file-name recentf-list)\n nil t)))\n(define-key global-map [(control x)(control r)] 'ido-find-recentf)\n\n\f\n(provide 'init-ido)\n","subject":"Add ido guesss for find file at point","message":"Add ido guesss for find file at point\n\nC-x C-f will guess a file to open based on the text at point.\n","lang":"Emacs Lisp","license":"mit","repos":"psipika\/exordium,jbibollet\/exordium,dvamin\/dot.emacs,fcassirer\/dot.emacs,steve-downey\/dot.emacs,philippe-grenet\/exordium,pkryger\/exordium"} {"commit":"b32e73bd0090bcb2dc661141a4196416391a75e0","old_file":"emacs\/.doom.d\/config.el","new_file":"emacs\/.doom.d\/config.el","old_contents":";;; ~\/.doom.d\/config.el -*- lexical-binding: t; -*-\n\n(setq doom-font (font-spec :family \"Source Code Pro\" :size 20)\n doom-big-font (font-spec :family \"Source Code Pro\" :size 26)\n display-line-numbers-type nil\n org-log-done 'time\n evil-escape-excluded-states '(normal multiedit emacs motion)\n )\n\n;;\n;; Key bindings\n(map! :leader\n (:prefix \"c\"\n :desc \"Sort lines alphabetically\" :v \"s\" #'sort-lines)\n (:prefix \"w\"\n \"F\" #'make-frame))\n\n(after! projectile\n (projectile-register-project-type\n 'bazel '(\"WORKSPACE\")\n :compile \"bazel build \/\/...\"\n :test \"bazel test \/\/...\"))\n\n(after! org\n (load \"~\/Sync\/org\/orgmode.el\"))\n\n(direnv-mode)\n","new_contents":";;; ~\/.doom.d\/config.el -*- lexical-binding: t; -*-\n\n(setq doom-font (font-spec :family \"Source Code Pro\" :size 20)\n doom-big-font (font-spec :family \"Source Code Pro\" :size 26)\n display-line-numbers-type nil\n org-log-done 'time\n evil-escape-excluded-states '(normal multiedit emacs motion)\n )\n\n;;\n;; Key bindings\n(map! :leader\n (:prefix \"c\"\n :desc \"Sort lines alphabetically\" :v \"s\" #'sort-lines)\n (:prefix \"w\"\n \"F\" #'make-frame)\n (:prefix \"\/\"\n ; Universal argument doesn't seem to work with the function wrapper\n :desc \"Search project\" \"p\" #'counsel-rg))\n\n(after! projectile\n (projectile-register-project-type\n 'bazel '(\"WORKSPACE\")\n :compile \"bazel build \/\/...\"\n :test \"bazel test \/\/...\"))\n\n(after! org\n (load \"~\/Sync\/org\/orgmode.el\"))\n\n(direnv-mode)\n","subject":"Support universal argument when searching project","message":"Support universal argument when searching project\n","lang":"Emacs Lisp","license":"unlicense","repos":"jdnavarro\/dotfiles"} {"commit":"712ac3349a18849fa518349b37c9c01ec1398b10","old_file":"modules\/editor\/lispy\/config.el","new_file":"modules\/editor\/lispy\/config.el","old_contents":";;; editor\/lispy\/config.el -*- lexical-binding: t; -*-\n\n(use-package! lispy\n :hook ((common-lisp-mode . lispy-mode)\n (emacs-lisp-mode . lispy-mode)\n (scheme-mode . lispy-mode)\n (racket-mode . lispy-mode)\n (hy-mode . lispy-mode)\n (lfe-mode . lispy-mode)\n (clojure-mode . lispy-mode))\n :config\n (setq lispy-close-quotes-at-end-p t)\n (add-hook 'lispy-mode-hook #'turn-off-smartparens-mode))\n\n(use-package! lispyville\n :when (featurep! :editor evil)\n :hook (lispy-mode . lispyville-mode)\n :config\n (lispyville-set-key-theme\n '((operators normal)\n c-w\n (prettify insert)\n (atom-movement normal visual)\n slurp\/barf-lispy\n (wrap normal insert)\n additional\n additional-insert\n (additional-wrap normal insert)\n (escape insert))))\n","new_contents":";;; editor\/lispy\/config.el -*- lexical-binding: t; -*-\n\n(use-package! lispy\n :hook ((common-lisp-mode . lispy-mode)\n (emacs-lisp-mode . lispy-mode)\n (scheme-mode . lispy-mode)\n (racket-mode . lispy-mode)\n (hy-mode . lispy-mode)\n (lfe-mode . lispy-mode)\n (dune-mode . lispy-mode)\n (clojure-mode . lispy-mode))\n :config\n (setq lispy-close-quotes-at-end-p t)\n (add-hook 'lispy-mode-hook #'turn-off-smartparens-mode))\n\n(use-package! lispyville\n :when (featurep! :editor evil)\n :hook (lispy-mode . lispyville-mode)\n :config\n (lispyville-set-key-theme\n '((operators normal)\n c-w\n (prettify insert)\n (atom-movement normal visual)\n slurp\/barf-lispy\n (wrap normal insert)\n additional\n additional-insert\n (additional-wrap normal insert)\n (escape insert))))\n","subject":"Add dune-mode to lispy modes","message":"Add dune-mode to lispy modes\n\nDune uses an sexpression based syntax as well\n\nSigned-off-by: Rudi Grinberg \n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d"} {"commit":"e59a5889c5d87a2a5cc6d3c87c1222ed5008c1de","old_file":"emacs\/emacs.d\/my-gui.el","new_file":"emacs\/emacs.d\/my-gui.el","old_contents":"(let ((theme (car '(\n solarized-dark\n spacemacs-dark\n leuven\n solarized-light\n ))))\n (when theme\n (load-theme theme t)\n (custom-theme-set-faces\n theme\n '(dired-header ((t (:foreground \"#268bd2\"\n :underline t\n :background nil)))))))\n\n(add-hook 'focus-out-hook\n (lambda ()\n (when (and buffer-file-name (buffer-modified-p))\n (save-buffer))))\n\n(let ((shell-path (shell-command-to-string \"$SHELL -c 'echo -n $PATH'\")))\n (setenv \"PATH\" shell-path)\n (setq exec-path (split-string shell-path path-separator)))\n\n;; Center Emacs's position on screen\n(let* ((height 40)\n (width 82)\n (top 0)\n (left (\/ (- (display-pixel-width)\n (frame-pixel-width))\n 2)))\n (add-to-list 'default-frame-alist '(ns-transparent-titlebar . t))\n (add-to-list 'default-frame-alist '(ns-appearance . dark))\n (add-to-list 'default-frame-alist (cons 'height height))\n (add-to-list 'default-frame-alist (cons 'width width))\n (add-to-list 'default-frame-alist (cons 'top top))\n (add-to-list 'default-frame-alist (cons 'left left)))\n\n(set-frame-parameter nil 'alpha '(100 100))\n\n(setq frame-title-format nil)\n","new_contents":"(let ((theme (car '(\n solarized-dark\n spacemacs-dark\n leuven\n solarized-light\n ))))\n (when theme\n (load-theme theme t)\n (custom-theme-set-faces\n theme\n '(dired-header ((t (:foreground \"#268bd2\"\n :underline t\n :background nil)))))))\n\n(add-hook 'focus-out-hook\n (lambda ()\n (when (and buffer-file-name (buffer-modified-p))\n (save-buffer))))\n\n(let ((shell-path (shell-command-to-string \"$SHELL -l -c 'echo -n $PATH'\")))\n (setenv \"PATH\" shell-path)\n (setq exec-path (split-string shell-path path-separator)))\n\n;; Center Emacs's position on screen\n(let* ((height 40)\n (width 82)\n (top 0)\n (left (\/ (- (display-pixel-width)\n (frame-pixel-width))\n 2)))\n (add-to-list 'default-frame-alist '(ns-transparent-titlebar . t))\n (add-to-list 'default-frame-alist '(ns-appearance . dark))\n (add-to-list 'default-frame-alist (cons 'height height))\n (add-to-list 'default-frame-alist (cons 'width width))\n (add-to-list 'default-frame-alist (cons 'top top))\n (add-to-list 'default-frame-alist (cons 'left left)))\n\n(set-frame-parameter nil 'alpha '(100 100))\n\n(setq frame-title-format nil)\n","subject":"Use login shell to get the path","message":"Use login shell to get the path\n\nThe `-l' option will probably only work with Bash but that should be\nfine as most places have standardized on it.\n","lang":"Emacs Lisp","license":"mit","repos":"sri\/dotfiles,sri\/dotfiles,sri\/dotfiles"} {"commit":"c39fd82f936bd38151e9f8ba05e9803aa6036c5a","old_file":"emacs\/.emacs.d\/lisp\/ds-sql.el","new_file":"emacs\/.emacs.d\/lisp\/ds-sql.el","old_contents":"\n(require 'use-package)\n(require 'sql)\n\n(use-package sqlup-mode\n :ensure t\n :diminish sqlup-mode\n :config\n (add-to-list 'sqlup-blacklist \"user\")\n (add-to-list 'sqlup-blacklist \"name\")\n (add-to-list 'sqlup-blacklist \"group\")\n (add-to-list 'sqlup-blacklist \"data\")\n (add-to-list 'sqlup-blacklist \"version\")\n (add-to-list 'sqlup-blacklist \"type\")\n (add-hook 'sql-mode-hook #'sqlup-mode t))\n\n(add-hook 'sql-mode-hook #'flycheck-mode)\n\n(defun ds\/set-product-postgres ()\n (sql-set-product \"postgres\"))\n(add-hook 'sql-mode-hook #'ds\/set-product-postgres)\n\n\n(use-package sql-indent\n :ensure t\n :config\n (add-hook 'sql-mode-hook #'sql-indent-minor-mode)\n (setq-default sqlind-indentation-offsets-alist\n `((select-clause +)\n (insert-clause +)\n (delete-clause +)\n (update-clause +)\n (statement-continuation +)\n ,@sqlind-default-indentation-offsets-alist))\n (setq-default sqlind-basic-offset 4)\n )\n","new_contents":"\n(require 'use-package)\n(require 'sql)\n\n(use-package sqlup-mode\n :ensure t\n :diminish sqlup-mode\n :config\n (add-to-list 'sqlup-blacklist \"user\")\n (add-to-list 'sqlup-blacklist \"name\")\n (add-to-list 'sqlup-blacklist \"group\")\n (add-to-list 'sqlup-blacklist \"data\")\n (add-to-list 'sqlup-blacklist \"version\")\n (add-to-list 'sqlup-blacklist \"type\")\n (add-hook 'sql-mode-hook #'sqlup-mode t))\n\n(add-hook 'sql-mode-hook #'flycheck-mode)\n\n(defun ds\/set-product-postgres ()\n (sql-set-product \"postgres\"))\n(add-hook 'sql-mode-hook #'ds\/set-product-postgres)\n\n\n(use-package sql-indent\n :ensure t\n :config\n (add-hook 'sql-mode-hook #'sqlind-minor-mode)\n (setq-default sqlind-indentation-offsets-alist\n `((select-clause +)\n (insert-clause +)\n (delete-clause +)\n (update-clause +)\n (statement-continuation +)\n ,@sqlind-default-indentation-offsets-alist))\n (setq-default sqlind-basic-offset 4)\n )\n","subject":"Use the better emacs sql indentation mode","message":"Use the better emacs sql indentation mode\n","lang":"Emacs Lisp","license":"cc0-1.0","repos":"davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles"} {"commit":"cf313ce4c7195cc10376f3cf8b7012460f7411bd","old_file":"setup-files\/setup-server.el","new_file":"setup-files\/setup-server.el","old_contents":";; Time-stamp: <2015-06-24 08:58:33 kmodi>\n\n;; server setup\n\n;; Start emacs server\n;; Now all new opened files will open in the same emacs instance if\n;; opened using `emacsclient FILENAME&`\n\n;; create the server directory if it doesn't exist\n(use-package server\n :init\n (progn\n (setq server-auth-dir (concat user-emacs-directory \"server_\"\n emacs-version-short \"\/\"))\n\n (unless (file-exists-p server-auth-dir)\n (make-directory server-auth-dir)))\n :config\n (progn\n ;; Suppress error \"directory ~\/.emacs.d\/server is unsafe\" when\n ;; running on cygwin\n (>=e \"23.0\"\n (when (equal window-system 'x)\n (setq server-use-tcp t)\n (defun server-ensure-safe-dir (dir) \"Noop\" t)))\n\n ;; start a server only if one is not already running\n ;; `server-running-p' returns \"t\" if a server is already running\n (defvar modi\/server-temp nil\n \"If t, start a “temp” server if a server is already running;\notherwise do nothing.\")\n\n (if (not (server-running-p))\n (progn\n (server-start))\n (progn\n (when modi\/server-temp\n (setq server-name \"temp\")\n (server-start))))))\n\n\n(provide 'setup-server)\n","new_contents":";; Time-stamp: <2015-11-05 12:12:04 kmodi>\n\n;; server\/daemon setup\n\n(use-package server\n :init\n (progn\n (setq server-auth-dir (let ((dir (concat user-emacs-directory\n \"server_\" emacs-version-short\n \"\/\"))) ; must end with \/\n (make-directory dir :parents)\n dir)))\n :config\n (progn\n ;; (setq server-use-tcp t)\n (when (equal window-system 'w32)\n ;; Suppress error \"directory ~\/.emacs.d\/server is unsafe\". It is needed\n ;; needed for the server to start on Windows.\n ;; On Windows, also set the EMACS_SERVER_FILE environment variable to\n ;; point to the `server' file. For example, for emacs 25.0, that location\n ;; would be \"PATH\\TO\\.emacs.d\\server_25_0\\server\".\n (defun server-ensure-safe-dir (dir) \"Noop\" t))\n\n ;; Start a server only if one is not already running\n ;; `server-running-p' returns \"t\" if a server is already running\n (defvar modi\/server-temp nil\n \"If t, start a “temp” server if a server is already running;\notherwise do nothing.\")\n\n (if (not (server-running-p))\n (progn\n (server-start))\n (progn\n (when modi\/server-temp\n (setq server-name \"temp\")\n (server-start))))))\n\n\n (provide 'setup-server)\n","subject":"Update server setup; code cleanup","message":"Update server setup; code cleanup\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"a104b5da851ffae01489406333ce91c632d79f28","old_file":"lisp\/init-projectile.el","new_file":"lisp\/init-projectile.el","old_contents":";;; init-projectile.el --- Use Projectile for navigation within projects -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-mode)\n\n ;; Shorter modeline\n (setq-default projectile-mode-line-prefix \" Proj\")\n\n (after-load 'projectile\n (define-key projectile-mode-map (kbd \"C-c C-p\") 'projectile-command-map))\n\n (maybe-require-package 'ibuffer-projectile))\n\n\n(provide 'init-projectile)\n;;; init-projectile.el ends here\n","new_contents":";;; init-projectile.el --- Use Projectile for navigation within projects -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(when (maybe-require-package 'projectile)\n (add-hook 'after-init-hook 'projectile-mode)\n\n ;; Shorter modeline\n (setq-default projectile-mode-line-prefix \" Proj\")\n\n (after-load 'projectile\n (define-key projectile-mode-map (kbd \"C-c p\") 'projectile-command-map))\n\n (maybe-require-package 'ibuffer-projectile))\n\n\n(provide 'init-projectile)\n;;; init-projectile.el ends here\n","subject":"Use recommended C-c p for projectile rather than C-c C-p","message":"Use recommended C-c p for projectile rather than C-c C-p\n\nFixes #684\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"wegatron\/emacs.d,emuio\/emacs.d,krzysz00\/emacs.d,arthurl\/emacs.d,benkha\/emacs.d,me020523\/emacs.d,cjqw\/emacs.d,dcorking\/emacs.d,purcell\/emacs.d,lust4life\/emacs.d,mmqmzk\/emacs.d,blueabysm\/emacs.d,qianwan\/emacs.d,kongfy\/emacs.d,gsmlg\/emacs.d,baohaojun\/emacs.d,braveoyster\/emacs.d,svenyurgensson\/emacs.d,blueseason\/emacs.d,sgarciac\/emacs.d"} {"commit":"33f2db9b991b9a3ddd813a564c9d3629463ba7d8","old_file":"lisp\/init-popwin.el","new_file":"lisp\/init-popwin.el","old_contents":"(require-package 'popwin)\n\n(require 'popwin)\n(popwin-mode 1)\n\n(setq popwin:popup-window-height 40)\n\n(push '(\"^\\*helm.+\\*$\" :regexp t) popwin:special-display-config)\n\n;; disable popwin-mode in an active Helm session It should be disabled\n;; otherwise it will conflict with other window opened by Helm persistent\n;; action, such as *Help* window.\n(add-hook 'helm-after-initialize-hook (lambda ()\n (popwin:display-buffer helm-buffer t)\n (popwin-mode -1)))\n\n ;; Restore popwin-mode after a Helm session finishes.\n (add-hook 'helm-cleanup-hook (lambda () (popwin-mode 1)))\n\n\n(provide 'init-popwin)\n","new_contents":"(require-package 'popwin)\n\n(require 'popwin)\n(popwin-mode 1)\n\n(setq popwin:popup-window-height 0.4)\n\n(push '(\"^\\*helm.+\\*$\" :regexp t) popwin:special-display-config)\n\n;; disable popwin-mode in an active Helm session It should be disabled\n;; otherwise it will conflict with other window opened by Helm persistent\n;; action, such as *Help* window.\n(add-hook 'helm-after-initialize-hook (lambda ()\n (popwin:display-buffer helm-buffer t)\n (popwin-mode -1)))\n\n ;; Restore popwin-mode after a Helm session finishes.\n (add-hook 'helm-cleanup-hook (lambda () (popwin-mode 1)))\n\n\n(provide 'init-popwin)\n","subject":"Make popwin high relative, not absolute","message":"Make popwin high relative, not absolute\n","lang":"Emacs Lisp","license":"mit","repos":"lstoll\/repo,lstoll\/dotfiles,lstoll\/repo,lstoll\/repo,lstoll\/dotfiles,lstoll\/dotfiles"} {"commit":"6bc9d58468e0f9f5f3f23f74fc65be4783af9372","old_file":"setup-ido.el","new_file":"setup-ido.el","old_contents":";; Interactively Do Things\n\n(require 'ido)\n(ido-mode t)\n(setq ido-enable-prefix nil\n ido-enable-flex-matching t\n ido-create-new-buffer 'always\n ido-use-filename-at-point nil\n ido-max-prospects 10)\n\n;; Use C-w to go back up a dir to better match normal usage of C-w\n;; - insert current file name with C-x C-w instead.\n(define-key ido-file-completion-map (kbd \"C-w\") 'ido-delete-backward-updir)\n(define-key ido-file-completion-map (kbd \"C-x C-w\") 'ido-copy-current-file-name)\n\n;; Always rescan buffer for imenu\n(set-default 'imenu-auto-rescan t)\n\n(add-to-list 'ido-ignore-directories \"target\")\n(add-to-list 'ido-ignore-directories \"node_modules\")\n\n;; Use ido everywhere\n(require 'ido-ubiquitous)\n(ido-ubiquitous-mode 1)\n\n(provide 'setup-ido)\n","new_contents":";; Interactively Do Things\n\n(require 'ido)\n(ido-mode t)\n(setq ido-enable-prefix nil\n ido-enable-flex-matching t\n ido-create-new-buffer 'always\n ido-use-filename-at-point nil\n ido-max-prospects 10)\n\n(add-hook\n 'ido-setup-hook\n #'(lambda ()\n\n ;; Use C-w to go back up a dir to better match normal usage of C-w\n ;; - insert current file name with C-x C-w instead.\n (define-key ido-file-completion-map (kbd \"C-w\") 'ido-delete-backward-updir)\n (define-key ido-file-completion-map (kbd \"C-x C-w\") 'ido-copy-current-file-name)))\n\n;; Always rescan buffer for imenu\n(set-default 'imenu-auto-rescan t)\n\n(add-to-list 'ido-ignore-directories \"target\")\n(add-to-list 'ido-ignore-directories \"node_modules\")\n\n;; Use ido everywhere\n(require 'ido-ubiquitous)\n(ido-ubiquitous-mode 1)\n\n(provide 'setup-ido)\n","subject":"Use C-w to go back up a dir to better match normal usage of C-w","message":"Use C-w to go back up a dir to better match normal usage of C-w\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"9ae0b05ec3be73aac23320e88e5a5abed556efd1","old_file":"emacs\/.emacs.d\/lisp\/ds-js.el","new_file":"emacs\/.emacs.d\/lisp\/ds-js.el","old_contents":"(require 'js)\n\n\n(defun ds\/disable-electric-semicolon ()\n (interactive)\n (add-to-list 'electric-layout-rules (cons ?\\; nil)))\n(add-hook 'js-mode-hook #'ds\/disable-electric-semicolon)\n\n(add-hook 'js-mode-hook #'electric-operator-mode)\n\n(require 'grep)\n(add-to-list 'grep-find-ignored-files \"*.min.js\")\n(add-to-list 'grep-find-ignored-files \"*.min.js.map\")\n\n;; Don't really know what these are but they show up in the biosite repo\n(add-to-list 'grep-find-ignored-files \"*.bmml\")\n\n(add-hook 'js-mode-hook #'aggressive-indent-mode)\n\n;; Show function as lambda. Append prettify-symbols-mode so that symbol for\n;; function is added before the mode is enabled.\n(defun ds\/pretty-function ()\n (add-to-list 'prettify-symbols-alist '(\"function\" . 955)))\n(add-hook 'js-mode-hook #'ds\/pretty-function)\n(add-hook 'js-mode-hook #'prettify-symbols-mode t)\n\n(font-lock-add-keywords\n 'js-mode '((\"\\\\<\\\\(expect\\\\)\\\\>\" . font-lock-keyword-face)))\n\n","new_contents":"(require 'js)\n\n\n(defun ds\/disable-electric-semicolon ()\n (interactive)\n (add-to-list 'electric-layout-rules (cons ?\\; nil)))\n(add-hook 'js-mode-hook #'ds\/disable-electric-semicolon)\n\n(add-hook 'js-mode-hook #'electric-operator-mode)\n\n(require 'grep)\n(add-to-list 'grep-find-ignored-files \"*.min.js\")\n(add-to-list 'grep-find-ignored-files \"*.min.js.map\")\n\n;; Don't really know what these are but they show up in the biosite repo\n(add-to-list 'grep-find-ignored-files \"*.bmml\")\n\n(add-hook 'js-mode-hook #'aggressive-indent-mode)\n\n;; Show function as lambda. Append prettify-symbols-mode so that symbol for\n;; function is added before the mode is enabled.\n(defun ds\/pretty-function ()\n (add-to-list 'prettify-symbols-alist '(\"function\" . 955)))\n(add-hook 'js-mode-hook #'ds\/pretty-function)\n(add-hook 'js-mode-hook #'prettify-symbols-mode t)\n\n(font-lock-add-keywords\n 'js-mode '((\"\\\\<\\\\(expect\\\\)\\\\>\" . font-lock-keyword-face)))\n\n\n(font-lock-add-keywords\n 'js-mode '((\"\\\\<\\\\(then\\\\)\\\\>\" . font-lock-keyword-face)))\n","subject":"Make `then` a js keyword","message":"Make `then` a js keyword\n","lang":"Emacs Lisp","license":"cc0-1.0","repos":"davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles"} {"commit":"b31ed61553443e7f62bfa6eb6f6815b8dc8184b5","old_file":"lisp\/init-local.el","new_file":"lisp\/init-local.el","old_contents":";; rails reloaded plugin\n(push \"~\/.emacs.d\/site-lisp\/rails-reloaded\" load-path)\n;; (require 'rails-autoload)\n\n(require-package 'sml-mode)\n(require 'sml-mode)\n\n;;; http:\/\/www.emacswiki.org\/emacs\/ruby-debug\n(require 'ruby-debug)\n(provide 'init-ruby-debug)\n\n(provide 'init-local)\n","new_contents":";; rails reloaded plugin\n(push \"~\/.emacs.d\/site-lisp\/rails-reloaded\" load-path)\n;; (require 'rails-autoload)\n\n(require-package 'sml-mode)\n(require 'sml-mode)\n\n;;; http:\/\/www.emacswiki.org\/emacs\/ruby-debug\n;; (require 'ruby-debug)\n;; (provide 'init-ruby-debug)\n\n(provide 'init-local)","subject":"Disable ruby-debug as not ready yet","message":"Disable ruby-debug as not ready yet\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"dcorking\/emacs.d"} {"commit":"e1c04dc584189e9b7d7ee4ba2cdd28f095793695","old_file":"init-haml.el","new_file":"init-haml.el","old_contents":"(add-auto-mode 'haml-mode \"\\.haml$\")\n(add-auto-mode 'sass-mode \"\\.sass$\")\n(autoload 'haml-mode \"haml-mode\" \"Mode for editing haml files\" t)\n(autoload 'sass-mode \"sass-mode\" \"Mode for editing sass files\" t)\n\n(require 'flymake-haml)\n(add-hook 'haml-mode-hook 'flymake-haml-load)\n(add-hook 'sass-mode-hook 'flymake-sass-load)\n\n(add-hook 'sass-mode-hook 'ac-css-keywords-setup)\n\n\n(provide 'init-haml)","new_contents":"(add-auto-mode 'haml-mode \"\\.haml$\")\n(add-auto-mode 'sass-mode \"\\.sass$\")\n(autoload 'haml-mode \"haml-mode\" \"Mode for editing haml files\" t)\n(autoload 'sass-mode \"sass-mode\" \"Mode for editing sass files\" t)\n\n(require 'flymake-haml)\n(add-hook 'haml-mode-hook 'flymake-haml-load)\n(add-hook 'sass-mode-hook 'flymake-sass-load)\n\n\n(provide 'init-haml)","subject":"Remove obsolete ac hook for css keywords","message":"Remove obsolete ac hook for css keywords\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"qianwan\/emacs.d,renatoriccio\/emacs.d,zuoshifan\/emacs.d,Enzo-Liu\/emacs.d,shafayetkhan\/emacs.d,dhanunjaya\/emacs.d,modkzs\/emcs.d,zuoshifan\/emacs.d,mmqmzk\/emacs.d,zuoshifan\/emacs.d,jkaessens\/emacs.d,whizzzkid\/emacs.d,cyjia\/emacs.d,qinshulei\/emacs.d,braveoyster\/emacs.d,zenith-john\/emacs.d,gsmlg\/emacs.d,boblannon\/emacs.d,ernest-dzf\/emacs.d,DarkThrone\/emacs.d,wenpincui\/emacs.d,roxolan\/emacs.d,caoyuanqi\/emacs.d,ilove0518\/emacs.d,scorpionis\/emacs.d,ruiyang\/emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,jachinpy\/emacs.d,exclamaforte\/emacs.d,pairyo\/emacs.d,46do14\/emacs.d,zuoshifan\/emacs.d,Shanicky\/emacs.d,fengxl\/emacs.d,zhuoyikang\/emacs.d,svenyurgensson\/emacs.d,LKI\/emacs.d,zuoshifan\/emacs.d,cjqw\/emacs.d,farzadbekran\/emacs.d,wegatron\/emacs.d,kongfy\/emacs.d,purcell\/emacs.d,kindoblue\/emacs.d,danfengcao\/emacs.d,dcorking\/emacs.d,lust4life\/emacs.d,jthetzel\/emacs.d,atreeyang\/emacs.d,farzadbekran\/emacs.d,sgarciac\/emacs.d,jachinpy\/emacs.d,arthurl\/emacs.d,Werewolflsp\/emacs.d,LittleLmp\/emacs.d,Togal\/emacs.d,lujianmei\/emacs.d,hkcqr\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,lromang\/emacs.d,me020523\/emacs.d,ruiyang\/emacs.d,haodaivshen\/emacs.d,jhpx\/emacs.d,hophacker\/emacs.d,farzadbekran\/emacs.d,dongdonghu\/.emacs.d,Jadecity\/PurcellEmacs.d,mpwang\/emacs.d,benkha\/emacs.d,carlosliu\/emacs.d,alant\/emacs.d,zhaotai\/.emacs.d,baohaojun\/emacs.d,emuio\/emacs.d,bibaijin\/emacs.d,YangXin\/emacs.d,blueabysm\/emacs.d,YangXin\/emacs.d,blueseason\/emacs.d,krzysz00\/emacs.d,Guoozz\/emacs.d"} {"commit":"a352684f70ea8a4b5ff13ebc8422039b44445e56","old_file":"emacs\/config\/init-javascript-mode.el","new_file":"emacs\/config\/init-javascript-mode.el","old_contents":"(require-package 'js3-mode)\n(require-package 'tern)\n(require-package 'company-tern)\n(require-package 'web-beautify)\n\n(add-to-list 'auto-mode-alist '(\"\\\\.js$\" . js3-mode))\n(add-hook 'js3-mode-hook (lambda ()\n (tern-mode t)\n (add-hook 'before-save-hook (lambda ()\n (when (string-equal major-mode \"js3-mode\"))\n (web-beautify-js)))\n (add-to-list 'company-backends 'company-tern)\n\n (setq-default js3-global-externs\n '(\"module\" \"require\" \"__dirname\" \"process\" \"console\" \"define\"\n \"JSON\" \"$\" \"_\" \"Backbone\" \"buster\" \"sinon\" \"moment\" \"_gaq\"\n \"Zenbox\" \"Mousetrap\" \"Comoyo\"))\n (setq-default js3-indent-tabs-mode t)\n (setq-default js3-indent-level 4)\n (setq-default js3-auto-indent-p t) ; it's nice for commas to right themselves.\n (setq-default js3-enter-indents-newline t) ; don't need to push tab before typing\n (setq-default js3-indent-on-enter-key t)))\n\n(provide 'init-javascript-mode)\n","new_contents":"(require-package 'js3-mode)\n(require-package 'tern)\n(require-package 'company-tern)\n(require-package 'web-beautify)\n\n(add-to-list 'auto-mode-alist '(\"\\\\.js$\" . js3-mode))\n(add-hook 'js3-mode-hook (lambda ()\n (tern-mode t)\n (add-hook 'before-save-hook 'web-beautify-js-buffer t t)\n (add-to-list 'company-backends 'company-tern)\n\n (setq-default js3-global-externs\n '(\"module\" \"require\" \"__dirname\" \"process\" \"console\" \"define\"\n \"JSON\" \"$\" \"_\" \"Backbone\" \"buster\" \"sinon\" \"moment\" \"_gaq\"\n \"Zenbox\" \"Mousetrap\" \"Comoyo\"))\n (setq-default js3-indent-tabs-mode t)\n (setq-default js3-indent-level 4)\n (setq-default js3-auto-indent-p t) ; it's nice for commas to right themselves.\n (setq-default js3-enter-indents-newline t) ; don't need to push tab before typing\n (setq-default js3-indent-on-enter-key t)))\n\n(provide 'init-javascript-mode)\n","subject":"Fix running js-beautify only in current JS buffer.","message":"Emacs: Fix running js-beautify only in current JS buffer.\n","lang":"Emacs Lisp","license":"mit","repos":"romanoaugusto88\/dotfiles"} {"commit":"480e40f477422207917834bfdbfa7547e1c854dc","old_file":"setup-files\/setup-navigation.el","new_file":"setup-files\/setup-navigation.el","old_contents":";; Time-stamp: <2014-01-20 13:35:50 kmodi>\n\n;; iy-go-to-char\n;; https:\/\/github.com\/doitian\/iy-go-to-char\n(require 'iy-go-to-char)\n\n\n(setq setup-navigation-loaded t)\n(provide 'setup-navigation)\n","new_contents":";; Time-stamp: <2014-03-13 00:00:27 kmodi>\n\n;; iy-go-to-char\n;; https:\/\/github.com\/doitian\/iy-go-to-char\n(require 'iy-go-to-char)\n\n;; Make C-a toggle between beginning of line and indentation\n;; https:\/\/github.com\/lunaryorn\/stante-pede\/blob\/master\/init.el\n(defun back-to-indentation-or-beginning-of-line (arg)\n \"Move point back to indentation of beginning of line.\nMove point to the first non-whitespace character on this line.\nIf point is already there, move to the beginning of the line.\nEffectively toggle between the first non-whitespace character and\nthe beginning of the line.\nIf ARG is not nil or 1, move forward ARG - 1 lines first. If\npoint reaches the beginning or end of the buffer, stop there.\"\n (interactive \"^p\")\n (setq arg (or arg 1))\n\n ;; Move lines first\n (when (\/= arg 1)\n (let ((line-move-visual nil))\n (forward-line (1- arg))))\n\n (let ((orig-point (point)))\n (back-to-indentation)\n (when (= orig-point (point))\n (move-beginning-of-line 1))))\n\n\n(setq setup-navigation-loaded t)\n(provide 'setup-navigation)\n","subject":"Make C-a toggle between beginning of line and indentation","message":"Make C-a toggle between beginning of line and indentation\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"c071ec4de0ffee483b0a890cf8c138e412abe8ce","old_file":"mfa-neotree\/packages.el","new_file":"mfa-neotree\/packages.el","old_contents":"(defconst mfa-neotree-packages '(neotree))\n\n(defun mfa-neotree\/post-init-neotree ()\n ;; Bind neotree-find to a key.\n (spacemacs\/set-leader-keys \"fd\" #'neotree-find)\n\n (with-eval-after-load 'neotree\n ;; Enlarge the NeoTree window.\n (setq neo-window-width 40)\n\n ;; Make neotree-projectile select the current file when opened.\n (defun neotree-find-project-root-descend-advice (orig-fun &rest args)\n (let ((cur-file (buffer-file-name)))\n (prog1\n (apply orig-fun args)\n (when (and (neo-global--window-exists-p) cur-file)\n (neotree-find cur-file)))))\n (advice-add 'neotree-find-project-root :around #'neotree-find-project-root-descend-advice)))\n","new_contents":"(defconst mfa-neotree-packages '(neotree))\n\n(defun mfa-neotree\/post-init-neotree ()\n ;; Bind neotree-find to a key.\n (spacemacs\/set-leader-keys \"fd\" #'neotree-find)\n\n (with-eval-after-load 'neotree\n ;; Enlarge the NeoTree window.\n (setq neo-window-width 40)\n\n","subject":"Remove neotree hook to select current file","message":"Remove neotree hook to select current file\n\nSpacemacs does take care of this.\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"7f49929800a0244eab0384a1abb769491e46f04e","old_file":"lisp\/init-vc.el","new_file":"lisp\/init-vc.el","old_contents":"(when (maybe-require-package 'diff-hl)\n (add-hook 'prog-mode-hook 'diff-hl-mode)\n (add-hook 'vc-dir-mode-hook 'diff-hl-mode)\n (add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh)\n\n (after-load 'diff-hl\n (define-key diff-hl-mode-map\n (kbd \" \")\n 'diff-hl-diff-goto-hunk)))\n\n(maybe-require-package 'browse-at-remote)\n\n(provide 'init-vc)\n","new_contents":"(when (maybe-require-package 'diff-hl)\n (add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh)\n (add-hook 'after-init-hook 'global-diff-hl-mode)\n\n (after-load 'diff-hl\n (define-key diff-hl-mode-map\n (kbd \" \")\n 'diff-hl-diff-goto-hunk)))\n\n(maybe-require-package 'browse-at-remote)\n\n(provide 'init-vc)\n","subject":"Enable diff-hl globally, not just in prog-mode","message":"Enable diff-hl globally, not just in prog-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"emuio\/emacs.d,benkha\/emacs.d,krzysz00\/emacs.d,arthurl\/emacs.d,sgarciac\/emacs.d,qianwan\/emacs.d,purcell\/emacs.d,lust4life\/emacs.d,kongfy\/emacs.d,svenyurgensson\/emacs.d,mmqmzk\/emacs.d,dcorking\/emacs.d,braveoyster\/emacs.d,baohaojun\/emacs.d,cjqw\/emacs.d,blueseason\/emacs.d,gsmlg\/emacs.d,blueabysm\/emacs.d,me020523\/emacs.d,wegatron\/emacs.d,kindoblue\/emacs.d"} {"commit":"3573e759a5d013d2220803a6a5122cc5f246f964","old_file":"lisp\/completion.el","new_file":"lisp\/completion.el","old_contents":";;; completion.el -- Configuration for completion, abbreviations, and shortcuts.\n\n;; I don't want to type \"yes\".\n(defalias 'yes-or-no-p 'y-or-n-p)\n\n;; ido mode for mini-buffer completion (see also modes\/ido-conf.el)\n(require 'ido)\n(ido-mode t)\n\n;; Hippie expand\n(setq hippie-expand-try-functions-list\n '(try-expand-dabbrev\n try-expand-dabbrev-all-buffers\n try-expand-dabbrev-from-kill\n try-complete-lisp-symbol-partially\n try-complete-lisp-symbol\n try-complete-file-name-partially\n try-complete-file-name\n try-expand-whole-kill\n try-expand-line))\n","new_contents":";;; completion.el -- Configuration for completion, abbreviations, and shortcuts.\n\n;; I don't want to type \"yes\".\n(defalias 'yes-or-no-p 'y-or-n-p)\n\n;; ido mode for mini-buffer completion (see also modes\/ido-conf.el)\n(require 'ido)\n(ido-mode t)\n\n;; If the current line is already indented, have the tab key try to\n;; auto-complete the word at point.\n(setq tab-always-indent 'complete)\n\n;; Replace completion-at-point with hippie expand\n(defun pjones:hippie-expand () (hippie-expand nil))\n(defalias 'completion-at-point 'pjones:hippie-expand)\n\n;; Hippie expand functions\n(setq hippie-expand-try-functions-list\n '(try-expand-dabbrev\n try-expand-dabbrev-all-buffers\n try-expand-dabbrev-from-kill\n try-complete-lisp-symbol-partially\n try-complete-lisp-symbol\n try-complete-file-name-partially\n try-complete-file-name\n try-expand-whole-kill\n try-expand-line))\n","subject":"Update the tab key to run hippie-expand","message":"Update the tab key to run hippie-expand\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"14d1861a58af674722601275c83c20bf79ba7e9b","old_file":"settings\/lk\/ivy.el","new_file":"settings\/lk\/ivy.el","old_contents":"(use-package ivy\n :ensure t\n :diminish ivy-mode\n :config\n (ivy-mode 1)\n (bind-key \"C-c C-r\" 'ivy-resume))\n\n(use-package projectile\n :ensure t\n :config\n (projectile-mode +1)\n (setq projectile-remember-window-configs t)\n (setq projectile-git-command \"git ls-files -z -c --recurse-submodules\")\n (setq projectile-completion-system 'ivy)\n (projectile-mode +1)\n :bind\n (\"C-c n p\" . projectile-find-file))\n\n(use-package counsel\n :ensure t\n :bind\n (\"M-x\" . counsel-M-x)\n (\"C-c n i\" . counsel-imenu)\n (\"C-c n b\" . counsel-ibuffer)\n (\"C-c n g\" . counsel-git-grep))\n\n(provide 'lk\/ivy)\n","new_contents":"(use-package ivy\n :ensure t\n :diminish ivy-mode\n :config\n (ivy-mode 1)\n (bind-key \"C-c C-r\" 'ivy-resume))\n\n(use-package counsel\n :ensure t\n :bind\n (\"M-x\" . counsel-M-x)\n (\"C-c n i\" . counsel-imenu)\n (\"C-c n b\" . counsel-ibuffer)\n (\"C-c n g\" . counsel-git-grep))\n\n(use-package projectile\n :after ivy\n :ensure t\n :init\n (setq projectile-completion-system 'ivy)\n :config\n (setq projectile-remember-window-configs t)\n (setq projectile-git-command \"git ls-files -z -c --recurse-submodules\")\n (projectile-mode +1))\n\n(provide 'lk\/ivy)\n","subject":"Fix projectile mode map and remove obsolete keyboard shortcut","message":"Fix projectile mode map and remove obsolete keyboard shortcut\n","lang":"Emacs Lisp","license":"mit","repos":"lukaszkorecki\/cult-leader"} {"commit":"7f87e538b2264bc0080f7ff22ac4f17de489b936","old_file":"emacs.d\/langs.el","new_file":"emacs.d\/langs.el","old_contents":"(add-hook 'prog-mode-hook\n (function (lambda()\n (hs-minor-mode)\n (fic-mode 1))))\n\n(add-hook 'python-mode-hook\n (function (lambda ()\n (setq evil-shift-width python-indent))))\n\n(add-hook 'js-mode-hook\n (function (lambda ()\n (flycheck-select-checker 'javascript-standard)\n (setq js-indent-level 2)\n (setq evil-shift-width 2))))\n","new_contents":"(add-hook 'prog-mode-hook\n (function (lambda()\n (hs-minor-mode)\n (fic-mode 1))))\n\n(add-hook 'python-mode-hook\n (function (lambda ()\n (setq evil-shift-width python-indent)\n (modify-syntax-entry ?_ \"w\"))))\n\n(add-hook 'js-mode-hook\n (function (lambda ()\n (flycheck-select-checker 'javascript-standard)\n (setq js-indent-level 2)\n (setq evil-shift-width 2))))\n","subject":"Add \"_\" to a word in python modes","message":"Add \"_\" to a word in python modes\n","lang":"Emacs Lisp","license":"mit","repos":"bbenne10\/dotfiles,bbenne10\/dotfiles"} {"commit":"4213899b01d41487a188ca9f5b30f01c9bd861d7","old_file":"modules\/ui\/treemacs\/autoload.el","new_file":"modules\/ui\/treemacs\/autoload.el","old_contents":";;; ui\/treemacs\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(defun +treemacs\/toggle ()\n \"Initialize or toggle treemacs.\n* If the treemacs window is visible hide it.\n* If a treemacs buffer exists, but is not visible show it.\n* If no treemacs buffer exists for the current frame create and show it.\n* If the workspace is empty additionally ask for the root path of the first\n project to add.\"\n (interactive)\n (require 'treemacs)\n (-pcase (treemacs--current-visibility)\n ['visible (delete-window (treemacs--is-visible?))]\n ['exists (treemacs-select-window)]\n ['none\n (let ((project-root (doom-project-root 'nocache)))\n (when project-root\n (unless (treemacs--find-project-for-path project-root)\n (treemacs-add-project-at (treemacs--canonical-path project-root)\n (doom-project-name 'nocache))))\n (treemacs--init project-root))]))\n","new_contents":";;; ui\/treemacs\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(defun +treemacs\/toggle ()\n \"Initialize or toggle treemacs.\n* If the treemacs window is visible hide it.\n* If a treemacs buffer exists, but is not visible show it.\n* If no treemacs buffer exists for the current frame create and show it.\n* If the workspace is empty additionally ask for the root path of the first\n project to add.\"\n (interactive)\n (require 'treemacs)\n (pcase (treemacs--current-visibility)\n (`visible (delete-window (treemacs--is-visible?)))\n (`exists (treemacs-select-window))\n (`none\n (let ((project-root (doom-project-root 'nocache)))\n (when project-root\n (unless (treemacs--find-project-for-path project-root)\n (treemacs-add-project-at (treemacs--canonical-path project-root)\n (doom-project-name 'nocache))))\n (treemacs--init project-root)))))\n","subject":"Refactor out -pcase in +treemacs\/toggle","message":"Refactor out -pcase in +treemacs\/toggle\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"7aa0ad592d93088391e707120a4b650142377d64","old_file":"home\/.emacs.d\/lisp\/init-shell.el","new_file":"home\/.emacs.d\/lisp\/init-shell.el","old_contents":";;; init-shell.el -- Setup shell inside Emacs\n\n;;; Commentary:\n;;; Eshell and term setup\n\n;;; Code:\n(require 'use-package)\n\n(use-package eshell\n :config\n (add-hook 'eshell-mode-hook (lambda () (company-mode -1)))\n (add-hook 'eshell-mode-hook\n (lambda ()\n (substitute-key-definition\n 'eshell-list-history 'helm-eshell-history eshell-mode-map)))\n (add-hook 'eshell-mode-hook\n (lambda ()\n (substitute-key-definition\n 'eshell-pcomplete 'helm-esh-pcomplete eshell-mode-map)))\n :ensure nil)\n\n(use-package shell\n :config\n (bind-keys :map shell-mode-map (\"C-C C-l\" . helm-comint-input-ring))\n :ensure nil)\n\n(provide 'init-shell)\n;;; init-shell.el ends here\n","new_contents":";;; init-shell.el -- Setup shell inside Emacs\n\n;;; Commentary:\n;;; Eshell and term setup\n\n;;; Code:\n(require 'use-package)\n\n(use-package eshell\n :config\n (add-hook 'eshell-mode-hook (lambda () (company-mode -1)))\n (add-hook 'eshell-mode-hook\n (lambda ()\n (substitute-key-definition\n 'eshell-list-history 'helm-eshell-history eshell-mode-map)))\n (add-hook 'eshell-mode-hook\n (lambda ()\n (substitute-key-definition\n 'eshell-pcomplete 'helm-esh-pcomplete eshell-mode-map)))\n :ensure nil)\n\n(use-package shell\n :config\n (bind-keys :map shell-mode-map (\"C-C C-l\" . helm-comint-input-ring))\n :ensure nil)\n\n(use-package eshell-fringe-status\n :commands (eshell-fringe-status-mode)\n :init\n (add-hook 'eshell-mode-hook 'eshell-fringe-status-mode))\n\n(use-package eshell-did-you-mean\n :commands (eshell-did-you-mean-setup)\n :init\n (add-hook 'eshell-mode-hook 'eshell-did-you-mean-setup))\n\n\n(use-package eshell-prompt-extras\n :init\n (with-eval-after-load \"esh-opt\"\n (autoload 'epe-theme-lambda \"eshell-prompt-extras\")\n (setq eshell-highlight-prompt nil\n eshell-prompt-function 'epe-theme-lambda)))\n\n(provide 'init-shell)\n;;; init-shell.el ends here\n","subject":"Add some tweaks to eshell","message":"Add some tweaks to eshell\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"bc51c2904dcab208a06aa2c874fe9760b025df00","old_file":"exercises\/bob\/example.el","new_file":"exercises\/bob\/example.el","old_contents":";;; bob.el --- Bob exercise (exercism)\n\n;;; Commentary:\n\n;;; Code:\n(require 'subr-x)\n\n(defun response-for (phrase)\n \"Provides Bob's response to PHRASE.\"\n (let ((stripped-phrase (string-trim phrase)))\n (cond ((string-empty-p stripped-phrase) \"Fine. Be that way!\")\n ((shout-questionp stripped-phrase) \"Calm down, I know what I'm doing!\")\n ((shoutp stripped-phrase) \"Whoa, chill out!\")\n ((questionp stripped-phrase) \"Sure.\")\n (t \"Whatever.\"))))\n\n(defun shoutp (phrase)\n \"Determines if PHRASE is shouted.\"\n (and (string-match \"[A-Z]\" phrase)\n (string= (upcase phrase) phrase)))\n\n(defun questionp (phrase)\n \"Determines if PHRASE is a question.\"\n (string-suffix-p \"?\" phrase))\n\n(defun shout-questionp (phrase)\n \"Determines if PHRASE is a shouted question.\"\n (and (shoutp phrase) (questionp phrase)))\n\n(provide 'bob)\n;;; bob.el ends here\n","new_contents":";;; bob.el --- Bob exercise (exercism)\n\n;;; Commentary:\n\n;;; Code:\n(require 'subr-x)\n\n(defun response-for (phrase)\n \"Provides Bob's response to PHRASE.\"\n (let ((stripped-phrase (string-trim phrase)))\n (cond ((string-empty-p stripped-phrase)\n \"Fine. Be that way!\")\n\n ((shout-questionp stripped-phrase)\n \"Calm down, I know what I'm doing!\")\n\n ((shoutp stripped-phrase)\n \"Whoa, chill out!\")\n\n ((questionp stripped-phrase)\n \"Sure.\")\n\n (t \"Whatever.\"))))\n\n(defun shoutp (phrase)\n \"Determines if PHRASE is shouted.\"\n (and (string-match \"[A-Z]\" phrase)\n (string= (upcase phrase) phrase)))\n\n(defun questionp (phrase)\n \"Determines if PHRASE is a question.\"\n (string-suffix-p \"?\" phrase))\n\n(defun shout-questionp (phrase)\n \"Determines if PHRASE is a shouted question.\"\n (and (shoutp phrase) (questionp phrase)))\n\n(provide 'bob)\n;;; bob.el ends here\n","subject":"Introduce some whitespace for readability","message":"Introduce some whitespace for readability\n","lang":"Emacs Lisp","license":"mit","repos":"exercism\/xelisp"} {"commit":"bf0562c23cd42cb796ee296f88349e4d0d98c094","old_file":"setup-files\/setup-shell.el","new_file":"setup-files\/setup-shell.el","old_contents":";; Time-stamp: <2015-01-30 08:47:09 kmodi>\n\n;; Shell Script Mode\n\n(use-package shell-script-mode\n :mode ((\"\\\\.alias\\\\'\" . shell-script-mode)\n (\"\\\\.setup.*\\\\'\" . shell-script-mode)\n (\"\\\\.gpms\\\\'\" . shell-script-mode)\n (\"\\\\.cfg\\\\'\" . shell-script-mode)\n (\"\\\\.*csh.*\\\\'\" . shell-script-mode)\n (\"crontab.*\\\\'\" . shell-script-mode)))\n\n(defun my\/tcsh-set-indent-functions ()\n (when (buffer-file-name) ; do this only if the buffer is a file\n (when (string-match \".*csh\" (format \"%s\" sh-shell))\n (require 'csh-mode) ; https:\/\/github.com\/Tux\/tcsh\/blob\/master\/csh-mode.el\n (setq-local indent-line-function 'csh-indent-line)\n (setq-local indent-region-function 'csh-indent-region))))\n(add-hook 'sh-set-shell-hook #'my\/tcsh-set-indent-functions)\n\n\n(provide 'setup-shell)\n","new_contents":";; Time-stamp: <2015-02-06 10:48:29 kmodi>\n\n;; Shell Script Mode\n\n(use-package shell-script-mode\n :mode ((\"\\\\.alias\\\\'\" . shell-script-mode)\n (\"\\\\.setup.*\\\\'\" . shell-script-mode)\n (\"\\\\.gpms\\\\'\" . shell-script-mode)\n (\"\\\\.cfg\\\\'\" . shell-script-mode)\n (\"\\\\.*csh.*\\\\'\" . shell-script-mode)\n (\"crontab.*\\\\'\" . shell-script-mode)))\n\n(defun my\/tcsh-set-indent-functions ()\n (when (buffer-file-name) ; do this only if the buffer is a file\n (when (string-match \".*csh\" (format \"%s\" sh-shell))\n (require 'csh-mode) ; https:\/\/github.com\/Tux\/tcsh\/blob\/master\/csh-mode.el\n (setq-local indent-line-function 'csh-indent-line)\n (setq-local indent-region-function 'csh-indent-region))))\n(add-hook 'sh-set-shell-hook #'my\/tcsh-set-indent-functions)\n\n;; Also set the csh indent functions in conf mode (for files like .tmux.conf )\n(add-hook 'conf-space-mode-hook #'my\/tcsh-set-indent-functions)\n\n\n(provide 'setup-shell)\n","subject":"Use the csh-mode indentation functions for conf-space-mode too","message":"Use the csh-mode indentation functions for conf-space-mode too\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"096c33d268293465a4be4305f64d5eed3a504bb2","old_file":".emacs.d\/lisp\/package\/dependencies.el","new_file":".emacs.d\/lisp\/package\/dependencies.el","old_contents":"(defvar dependency-list\n '(linum-off ;; turn linum off in certain modes\n ido-vertical-mode ;; use vertical menus for ido\n ido-grid-mode ;; use a grid selection menu for ido\n smex ;; ido-enabled M-x\n anzu ;; nicer search environment\n volatile-highlights ;; highlight changed areas\n\n ;; THEMES\n solarized-theme\n )\n \"A list of all packages required for operation.\")\n\n(provide 'dependencies)\n","new_contents":"(defvar dependency-list\n '(linum-off ;; turn linum off in certain modes\n ido-vertical-mode ;; use vertical menus for ido\n ido-grid-mode ;; use a grid selection menu for ido\n smex ;; ido-enabled M-x\n anzu ;; nicer search environment\n volatile-highlights ;; highlight changed areas\n\n ;; THEMES\n solarized-theme\n\n magit ;; make Git and Emacs both way cooler\n )\n \"A list of all packages required for operation.\")\n\n(provide 'dependencies)\n","subject":"Add magit as a dependency","message":"Add magit as a dependency\n","lang":"Emacs Lisp","license":"mit","repos":"kotct\/dot,kotct\/dot"} {"commit":"27f99f040cad25b8eb56ca8f4b48488c8fa3ed22","old_file":"core\/packages.el","new_file":"core\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; core\/packages.el\n\n;; core-os.el\n(package! exec-path-from-shell :ignore (not IS-MAC))\n(package! osx-clipboard :ignore (not IS-MAC))\n\n;; core-ui.el\n(package! all-the-icons)\n(package! hide-mode-line)\n(package! highlight-indentation)\n(package! highlight-numbers)\n(unless (boundp 'display-line-numbers)\n (package! nlinum)\n (package! nlinum-hl)\n (package! nlinum-relative))\n(package! rainbow-delimiters)\n(package! visual-fill-column)\n\n;; core-popups.el\n(package! shackle)\n\n;; core-editor.el\n(package! ace-link)\n(package! ace-window)\n(package! avy)\n(package! command-log-mode)\n(package! expand-region)\n(package! helpful)\n(package! pcre2el)\n(package! smartparens)\n(package! undo-tree)\n\n;; core-projects.el\n(package! projectile)\n\n;; core-keybinds.el\n(package! which-key)\n(package! hydra)\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; core\/packages.el\n\n;; core-os.el\n(package! exec-path-from-shell :ignore (not IS-MAC))\n(package! osx-clipboard :ignore (not IS-MAC))\n\n;; core-ui.el\n(package! all-the-icons)\n(package! hide-mode-line)\n(package! highlight-indentation)\n(package! highlight-numbers)\n(unless (boundp 'display-line-numbers)\n (package! nlinum)\n (package! nlinum-hl)\n (package! nlinum-relative))\n(package! rainbow-delimiters)\n(package! visual-fill-column)\n\n;; core-editor.el\n(package! ace-link)\n(package! ace-window)\n(package! avy)\n(package! command-log-mode)\n(package! expand-region)\n(package! helpful)\n(package! pcre2el)\n(package! smartparens)\n(package! undo-tree)\n\n;; core-projects.el\n(package! projectile)\n\n;; core-keybinds.el\n(package! which-key)\n(package! hydra)\n","subject":"Remove shackle (why is this still here?!)","message":"Remove shackle (why is this still here?!)\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs"} {"commit":"35a8d34165fc628948bfe30849fb0a7cc5568965","old_file":"emacs\/emacs.d\/my-magit.el","new_file":"emacs\/emacs.d\/my-magit.el","old_contents":"(require 'magit)\n\n(setq magit-save-repository-buffers 'dontask)\n(setq magit-diff-refine-hunk nil)\n\n(set-face-attribute 'magit-diff-added-highlight nil :foreground \"#22aa22\")\n\n(add-hook 'magit-log-edit-mode-hook 'turn-on-auto-fill)\n","new_contents":"(require 'magit)\n\n(setq magit-save-repository-buffers 'dontask)\n(setq magit-diff-refine-hunk nil)\n\n(set-face-attribute 'magit-diff-added-highlight nil :foreground \"#22aa22\")\n\n(add-hook 'magit-log-edit-mode-hook 'turn-on-auto-fill)\n\n(add-hook 'magit-mode-hook\n (lambda ()\n (define-key magit-mode-map (kbd \"1\") 'magit-section-show-level-1-all)\n (define-key magit-mode-map (kbd \"2\") 'magit-section-show-level-2-all)\n (define-key magit-mode-map (kbd \"3\") 'magit-section-show-level-3-all)\n (define-key magit-mode-map (kbd \"4\") 'magit-section-show-level-4-all)))\n","subject":"Use digits to invoke the -all functions.","message":"Use digits to invoke the -all functions.\n","lang":"Emacs Lisp","license":"mit","repos":"sri\/dotfiles,sri\/dotfiles,sri\/dotfiles"} {"commit":"bbeab50c115bc2d9a2183962dfdaccc0ef3e67d7","old_file":"elpa-list.el","new_file":"elpa-list.el","old_contents":"(setq package-selected-packages\n '(ace-jump-mode\n auto-complete\n auto-indent-mode\n cider\n coffee-mode\n diminish\n dired-details\n dropdown-list\n edit-server\n edit-server-htmlize\n edts\n emmet-mode\n erlang\n exec-path-from-shell\n fill-column-indicator\n flx-ido\n flymake\n flymake-haskell-multi\n flymake-hlint\n gitconfig-mode\n gitignore-mode\n god-mode\n haml-mode\n haskell-mode\n httpcode\n ido-vertical-mode\n jedi\n js2-mode\n js2-refactor\n json-mode\n ledger-mode\n less-css-mode\n lorem-ipsum\n magit\n markdown-mode\n marmalade\n org-present\n paredit\n projectile\n rainbow-delimiters\n rainbow-mode\n restclient\n smex\n solarized-theme\n undo-tree\n web-beautify\n web-mode\n yaml-mode\n yasnippet))\n","new_contents":"(setq package-selected-packages\n '(ace-jump-mode\n auto-complete\n auto-indent-mode\n cider\n coffee-mode\n diminish\n dired-details\n dropdown-list\n edit-server\n edit-server-htmlize\n edts\n emmet-mode\n erlang\n exec-path-from-shell\n fill-column-indicator\n flx-ido\n gitconfig-mode\n gitignore-mode\n god-mode\n haml-mode\n haskell-mode\n httpcode\n ido-vertical-mode\n jedi\n js2-mode\n js2-refactor\n json-mode\n ledger-mode\n less-css-mode\n lorem-ipsum\n magit\n markdown-mode\n marmalade\n org-present\n paredit\n projectile\n rainbow-delimiters\n rainbow-mode\n restclient\n smex\n solarized-theme\n undo-tree\n web-beautify\n web-mode\n yaml-mode\n yasnippet))\n","subject":"Remove flymake, long live flycheck","message":"Remove flymake, long live flycheck\n","lang":"Emacs Lisp","license":"mit","repos":"jaseemabid\/emacs.d"} {"commit":"91e020d143935d7e992219042578c137f79971ec","old_file":"init-dired.el","new_file":"init-dired.el","old_contents":"(require 'dired+)\n(setq dired-recursive-deletes 'top)\n(define-key dired-mode-map [mouse-2] 'dired-find-file)\n\n\n(provide 'init-dired)","new_contents":"(eval-after-load 'dired\n '(progn\n (require 'dired+)\n (setq dired-recursive-deletes 'top)\n (define-key dired-mode-map [mouse-2] 'dired-find-file)))\n\n(provide 'init-dired)\n","subject":"Load dired+ only after dired is loaded","message":"Load dired+ only after dired is loaded\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"Shanicky\/emacs.d,mmqmzk\/emacs.d,scorpionis\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,svenyurgensson\/emacs.d,hkcqr\/emacs.d,exclamaforte\/emacs.d,roxolan\/emacs.d,jhpx\/emacs.d,mpwang\/emacs.d,baohaojun\/emacs.d,pairyo\/emacs.d,arthurl\/emacs.d,ernest-dzf\/emacs.d,46do14\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,gsmlg\/emacs.d,zuoshifan\/emacs.d,jachinpy\/emacs.d,caoyuanqi\/emacs.d,haodaivshen\/emacs.d,YangXin\/emacs.d,bibaijin\/emacs.d,me020523\/emacs.d,qinshulei\/emacs.d,kindoblue\/emacs.d,ruiyang\/emacs.d,zhaotai\/.emacs.d,Guoozz\/emacs.d,jthetzel\/emacs.d,Werewolflsp\/emacs.d,ilove0518\/emacs.d,lujianmei\/emacs.d,braveoyster\/emacs.d,zuoshifan\/emacs.d,kongfy\/emacs.d,dongdonghu\/.emacs.d,farzadbekran\/emacs.d,atreeyang\/emacs.d,YangXin\/emacs.d,lromang\/emacs.d,zuoshifan\/emacs.d,zhuoyikang\/emacs.d,sgarciac\/emacs.d,jachinpy\/emacs.d,lust4life\/emacs.d,ruiyang\/emacs.d,emuio\/emacs.d,renatoriccio\/emacs.d,danfengcao\/emacs.d,cjqw\/emacs.d,dhanunjaya\/emacs.d,LKI\/emacs.d,qianwan\/emacs.d,hophacker\/emacs.d,shafayetkhan\/emacs.d,Togal\/emacs.d,wegatron\/emacs.d,krzysz00\/emacs.d,dcorking\/emacs.d,Enzo-Liu\/emacs.d,fengxl\/emacs.d,purcell\/emacs.d,wenpincui\/emacs.d,farzadbekran\/emacs.d,jkaessens\/emacs.d,blueseason\/emacs.d,alant\/emacs.d,benkha\/emacs.d,whizzzkid\/emacs.d,LittleLmp\/emacs.d,cyjia\/emacs.d,zuoshifan\/emacs.d,zenith-john\/emacs.d,boblannon\/emacs.d,zuoshifan\/emacs.d,DarkThrone\/emacs.d,Jadecity\/PurcellEmacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,modkzs\/emcs.d,zuoshifan\/emacs.d,carlosliu\/emacs.d,blueabysm\/emacs.d"} {"commit":"38a4d04f9792cf1f8be7dd4afecb1b96af97fbfa","old_file":"emacs\/.emacs.d\/packages\/python.el","new_file":"emacs\/.emacs.d\/packages\/python.el","old_contents":"(use-package pyenv-mode\n :init\n :ensure t\n :config (pyenv-mode)\n\n (setenv \"WORKON_HOME\" \"~\/.pyenv\/versions\/\")\n (add-to-list 'exec-path \"~\/.pyenv\/shims\")\n (add-hook 'projectile-switch-project-hook 'projectile-pyenv-mode-set)\n (add-hook 'python-mode-hook 'pyenv-mode))\n\n(use-package pyenv-mode-auto\n :ensure t)\n\n(use-package elpy\n :ensure t\n :defer t\n :config\n (setq elpy-modules (delete 'elpy-module-highlight-indentation elpy-modules))\n :init\n (advice-add 'python-mode :before 'elpy-enable)\n (add-hook 'python-mode-hook\n (lambda ()\n (add-hook 'before-save-hook 'elpy-black-fix-code))))\n","new_contents":"(use-package pyenv-mode\n :init\n :ensure t\n :config (pyenv-mode)\n\n (setenv \"WORKON_HOME\" \"~\/.pyenv\/versions\/\")\n (add-to-list 'exec-path \"~\/.pyenv\/shims\")\n (add-hook 'projectile-switch-project-hook 'projectile-pyenv-mode-set)\n (add-hook 'python-mode-hook 'pyenv-mode))\n\n(use-package pyenv-mode-auto\n :ensure t)\n\n(use-package elpy\n :ensure t\n :defer t\n :config\n (setq elpy-modules (delete 'elpy-module-highlight-indentation elpy-modules))\n :init\n (advice-add 'python-mode :before 'elpy-enable)\n (add-hook 'elpy-mode-hook\n (lambda ()\n (add-hook 'before-save-hook 'elpy-black-fix-code nil 'local)))) ;\n","subject":"Add before-save-hook when on Python-mode","message":"Emacs: Add before-save-hook when on Python-mode\n","lang":"Emacs Lisp","license":"mit","repos":"benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles"} {"commit":"4185a500f912358b285e0403b2708a8f593e2795","old_file":".emacs.d\/config\/package.el","new_file":".emacs.d\/config\/package.el","old_contents":"(require 'package)\n\n;; add-to-list add to list's front unless by t\n\n;; reset\n;;(setq package-archives nil)\n\n;; default GNU ELPA\n;; (add-to-list 'package-archives\n;; \t '(\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\"))\n\n(add-to-list 'package-archives\n\t\t\t '(\"org\" . \"http:\/\/orgmode.org\/elpa\/\"))\n\n\n;; Milkypostman's Emacs Lisp Pakcage Archive (MELPA)\n(add-to-list 'package-archives\n\t\t\t '(\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n\n(add-to-list 'package-archives\n\t\t\t '(\"melpa-stable\" . \"http:\/\/melpa-stable.milkbox.net\/packages\/\") t)\n\n;; (add-to-list 'package-archives\n;; '(\"marmalade\" . \"https:\/\/marmalade-repo.org\/packages\/\"))\n\n(when (boundp 'package-pinned-packages)\n (setq package-pinned-packages\n\t\t'((cider . \"melpa-stable\"))))\n\n(package-initialize)\n","new_contents":"(require 'package)\n\n;; add-to-list add to list's front unless by t\n\n;; reset\n;;(setq package-archives nil)\n\n;; default GNU ELPA\n;; (add-to-list 'package-archives\n;; \t '(\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\"))\n\n(add-to-list 'package-archives\n\t\t\t '(\"org\" . \"http:\/\/orgmode.org\/elpa\/\"))\n\n\n;; Milkypostman's Emacs Lisp Pakcage Archive (MELPA)\n(add-to-list 'package-archives\n\t\t\t '(\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n\n(add-to-list 'package-archives\n\t\t\t '(\"melpa-stable\" . \"http:\/\/melpa-stable.milkbox.net\/packages\/\") t)\n\n;; (add-to-list 'package-archives\n;; '(\"marmalade\" . \"https:\/\/marmalade-repo.org\/packages\/\"))\n\n;; (when (boundp 'package-pinned-packages)\n;; (setq package-pinned-packages\n;; \t\t'((cider . \"melpa-stable\"))))\n\n(package-initialize)\n","subject":"Undo pinning cider to melpa-stable.","message":"Undo pinning cider to melpa-stable.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs,pw4ever\/dotemacs"} {"commit":"3c67fc658bdb17300a9b394734aa9cadc0d124d6","old_file":"Emacs\/init.el","new_file":"Emacs\/init.el","old_contents":";; Gosin's Emacs Configuration 2021\/01\/09\n;; add ELPA and MELPA package repos\n(setq package-archives\n '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t(\"melpa\" . \"http:\/\/melpa.org\/packages\/\")))\n\n;; user solarized dark color theme\n(add-to-list 'custom-theme-load-path \"~\/.emacs.d\/solarized_theme\")\n(set-terminal-parameter nil 'background-mode 'dark)\n(set-frame-parameter nil 'background-mode 'dark)\n(load-theme 'solarized t)\n\n;; define three useful commands(from org guide)\n(global-set-key (kbd \"C-c l\") 'org-store-link)\n(global-set-key (kbd \"C-c a\") 'org-agenda)\n(global-set-key (kbd \"C-c c\") 'org-capture)\n\n(custom-set-variables\n ;; score apropos results by relavance.\n '(apropos-sort-by-scores t)\n ;; show line numbers\n '(global-display-line-numbers-mode t))\n\n;; store backup and autosave files to temporary directories\n(setq backup-director-alist\n '((\".*\" . ,temporary-file-directory)))\n","new_contents":";; Gosin's Emacs Configuration 2021\/01\/09\n;; add ELPA and MELPA package repos\n(setq package-archives\n '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n\t(\"melpa\" . \"http:\/\/melpa.org\/packages\/\")))\n\n;; user solarized dark color theme\n(add-to-list 'custom-theme-load-path \"~\/.emacs.d\/solarized_theme\")\n(set-terminal-parameter nil 'background-mode 'dark)\n(set-frame-parameter nil 'background-mode 'dark)\n(load-theme 'solarized t)\n\n;; define three useful commands(from org guide)\n(global-set-key (kbd \"C-c l\") 'org-store-link)\n(global-set-key (kbd \"C-c a\") 'org-agenda)\n(global-set-key (kbd \"C-c c\") 'org-capture)\n\n(custom-set-variables\n ;; score apropos results by relavance.\n '(apropos-sort-by-scores t)\n ;; show line numbers\n '(global-display-line-numbers-mode t))\n\n;; store backup and autosave files to temporary directories\n(setq backup-directory-alist\n '((\".*\" . ,temporary-file-directory)))\n","subject":"Fix typo when setting backup directories","message":"Fix typo when setting backup directories\n","lang":"Emacs Lisp","license":"mit","repos":"Gosin\/Vim4Gosin"} {"commit":"0e79e275ce28d1ca12f9be84ae59d74a0ea4407b","old_file":"layers\/+lang\/extra-langs\/packages.el","new_file":"layers\/+lang\/extra-langs\/packages.el","old_contents":"(setq extra-langs-packages\n '(\n arduino-mode\n julia-mode\n matlab-mode\n qml-mode\n scad-mode\n stan-mode\n thrift\n wolfram-mode\n ))\n\n(defun extra-langs\/init-arduino-mode ()\n (use-package arduino-mode :defer t))\n\n(defun extra-langs\/init-scad-mode ()\n (use-package scad-mode :defer t))\n\n(defun extra-langs\/init-qml-mode ()\n (use-package qml-mode :defer t :mode \"\\\\.qml\\\\'\"))\n\n(defun extra-langs\/init-julia-mode ()\n (use-package julia-mode :defer t))\n\n(defun extra-langs\/init-matlab-mode ()\n (use-package matlab-mode\n :defer t\n :init\n ;; Explicitly run prog-mode hooks since matlab-mode does not derive from\n ;; prog-mode major-mode\n (add-hook 'matlab-mode-hook 'spacemacs\/run-prog-mode-hooks)))\n\n(defun extra-langs\/init-stan-mode ()\n (use-package stan-mode :defer t))\n\n(defun extra-langs\/init-thrift ()\n (use-package thrift :defer t))\n\n;; no associated extension because conflicts with more common Objective-C, manually invoke for .m files.\n(defun extra-langs\/init-wolfram-mode ()\n (use-package wolfram-mode\n :defer t\n :interpreter \"\\\\(Wolfram\\\\|Mathematica\\\\)Script\\\\( -script\\\\)?\"))\n","new_contents":"(setq extra-langs-packages\n '(\n arduino-mode\n julia-mode\n matlab-mode\n qml-mode\n scad-mode\n stan-mode\n thrift\n wolfram-mode\n ))\n\n(defun extra-langs\/init-arduino-mode ()\n (use-package arduino-mode :defer t))\n\n(defun extra-langs\/init-scad-mode ()\n (use-package scad-mode :defer t))\n\n(defun extra-langs\/init-qml-mode ()\n (use-package qml-mode :defer t :mode \"\\\\.qml\\\\'\"))\n\n(defun extra-langs\/init-julia-mode ()\n (use-package julia-mode :defer t))\n\n(defun extra-langs\/init-matlab-mode ()\n (use-package matlab-mode\n :defer t\n :init\n ;; Explicitly run prog-mode hooks since matlab-mode does not derive from\n ;; prog-mode major-mode\n (add-hook 'matlab-mode-hook 'spacemacs\/run-prog-mode-hooks)))\n\n(defun extra-langs\/init-stan-mode ()\n (use-package stan-mode :defer t))\n\n(defun extra-langs\/init-thrift ()\n (use-package thrift :defer t))\n\n;; .m files are not associated because conflict with more common Objective-C and MATLAB\/Octave, manually invoke for .m files.\n(defun extra-langs\/init-wolfram-mode ()\n (use-package wolfram-mode\n :defer t\n :interpreter \"\\\\(Wolfram\\\\|Mathematica\\\\)Script\\\\( -script\\\\)?\"\n :mode \"\\\\.wl\\\\'\"))\n","subject":"Add extension \".wl\" for wolfram-mode","message":"Add extension \".wl\" for wolfram-mode\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"a35896e0535051288f14f8b88fe544baa2abd6f5","old_file":"lisp\/init-elm.el","new_file":"lisp\/init-elm.el","old_contents":"(when (maybe-require-package 'elm-mode)\n (setq-default elm-format-on-save t)\n (after-load 'elm-mode\n (diminish 'elm-indent-mode)\n (add-hook 'elm-mode-hook\n (lambda () (sanityinc\/local-push-company-backend 'company-elm)))\n (when (executable-find \"elm-format\")\n (setq-default elm-format-on-save t)))\n (maybe-require-package 'elm-test)\n (when (maybe-require-package 'flycheck-elm)\n (after-load 'elm-mode\n (flycheck-elm-setup))))\n\n(provide 'init-elm)\n","new_contents":"(when (maybe-require-package 'elm-mode)\n (setq-default elm-format-on-save t)\n (after-load 'elm-mode\n (diminish 'elm-indent-mode)\n (add-hook 'elm-mode-hook\n (lambda () (sanityinc\/local-push-company-backend 'company-elm)))\n (when (executable-find \"elm-format\")\n (setq-default elm-format-on-save t)))\n (maybe-require-package 'elm-test-runner)\n (when (maybe-require-package 'flycheck-elm)\n (after-load 'elm-mode\n (flycheck-elm-setup))))\n\n(provide 'init-elm)\n","subject":"Use elm-test-runner instead of elm-test","message":"Use elm-test-runner instead of elm-test\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"svenyurgensson\/emacs.d"} {"commit":"8778eb22883fcdbca757993a844c57b8589f3649","old_file":"modules\/lang\/lean\/config.el","new_file":"modules\/lang\/lean\/config.el","old_contents":";;; lang\/lean\/config.el -*- lexical-binding: t; -*-\n\n(after! lean-mode\n (set-lookup-handlers! 'lean-mode\n :definition #'lean-find-definition)\n (sp-with-modes 'lean-mode\n (sp-local-pair \"\/-\" \"-\/\")\n (sp-local-pair \"`\" \"`\")\n (sp-local-pair \"{\" \"}\")\n (sp-local-pair \"«\" \"»\")\n (sp-local-pair \"⟨\" \"⟩\")\n (sp-local-pair \"⟪\" \"⟫\"))\n (map! :map lean-mode-map\n :localleader\n \"g\" #'lean-toggle-show-goal\n \"n\" #'lean-toggle-next-error\n (:prefix (\"s\" . \"server\")\n \"r\" #'lean-server-restart\n \"s\" #'lean-server-stop\n \"v\" #'lean-server-switch-version)\n (:prefix (\"p\" . \"leanpkg\")\n \"t\" #'lean-leanpkg-test\n \"b\" #'lean-leanpkg-build\n \"c\" #'lean-leanpkg-configure)\n \"f\" #'lean-fill-placeholder\n \"h\" #'lean-hole\n \"m\" #'lean-message-boxes-toggle\n \"e\" #'lean-execute))\n\n\n(use-package! company-lean\n :when (featurep! :completion company)\n :after lean-mode\n :config (set-company-backend! 'lean-mode 'company-lean))\n","new_contents":";;; lang\/lean\/config.el -*- lexical-binding: t; -*-\n\n(after! lean-mode\n (set-lookup-handlers! 'lean-mode\n :definition #'lean-find-definition)\n (sp-with-modes 'lean-mode\n (sp-local-pair \"\/-\" \"-\/\")\n (sp-local-pair \"`\" \"`\")\n (sp-local-pair \"{\" \"}\")\n (sp-local-pair \"«\" \"»\")\n (sp-local-pair \"⟨\" \"⟩\")\n (sp-local-pair \"⟪\" \"⟫\"))\n (map! :map lean-mode-map\n :localleader\n \"g\" #'lean-toggle-show-goal\n \"n\" #'lean-toggle-next-error\n (:prefix (\"s\" . \"server\")\n \"r\" #'lean-server-restart\n \"s\" #'lean-server-stop\n \"v\" #'lean-server-switch-version)\n (:prefix (\"p\" . \"leanpkg\")\n \"t\" #'lean-leanpkg-test\n \"b\" #'lean-leanpkg-build\n \"c\" #'lean-leanpkg-configure)\n \"f\" #'lean-fill-placeholder\n \"h\" #'lean-hole\n \"m\" #'lean-message-boxes-toggle\n \"e\" #'lean-execute))\n\n\n(use-package! company-lean\n :init\n (advice-add #'company-lean-hook :override #'ignore)\n (set-company-backend! 'lean-mode 'company-lean)\n :when (featurep! :completion company)\n :after lean-mode)\n","subject":"Disable auto initializatinon of company in lean mode","message":"Disable auto initializatinon of company in lean mode\n\nSigned-off-by: Rudi Grinberg <4c46c202a3b8207ad5740134b125aae40c6c67a8@gmail.com>\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d"} {"commit":"c79a99254531e8609a9a84d8c7b974da318f8255","old_file":"modules\/tools\/vterm\/packages.el","new_file":"modules\/tools\/vterm\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; tools\/vterm\/packages.el\n\n(package! vterm :recipe (:fetcher github :repo \"akermu\/emacs-libvterm\"))\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; tools\/vterm\/packages.el\n\n(package! vterm :recipe\n (:fetcher github\n :repo \"akermu\/emacs-libvterm\"\n :files (\"*\")))\n","subject":"Include all files with vterm package","message":"Include all files with vterm package\n\nThey are needed to compile vterm-module.so","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom"} {"commit":"74830d52dc797025785903c6d858c6322407f8cc","old_file":"site-lisp\/gtags-tweaks.el","new_file":"site-lisp\/gtags-tweaks.el","old_contents":"(autoload 'gtags-mode \"gtags\" \"\" t)\n\n(defun gtags-create-or-update ()\n \"Create or update the gnu global tag file.\"\n (interactive)\n (if (not (= 0 (call-process \"global\" nil nil nil \" -p\")))\n (let ((olddir default-directory)\n (topdir (read-directory-name\n \"gtags: top of source tree:\" default-directory)))\n (cd topdir)\n (shell-command \"GTAGSLABEL=rtags gtags && echo 'Created tagfile'\")\n (cd olddir))\n (shell-command \"GTAGSLABEL=rtags global -u && echo 'Updated tagfile'\")))\n\n(add-hook 'gtags-mode-hook\n (lambda()\n (local-set-key (kbd \"M-.\") 'gtags-find-tag)\n (local-set-key (kbd \"M-,\") 'gtags-find-with-grep)\n (local-set-key (kbd \"M-:\") 'gtags-find-symbol)\n (local-set-key (kbd \"M-_\") 'gtags-find-rtag)))\n\n(provide 'gtags-tweaks)\n","new_contents":"(autoload 'gtags-mode \"gtags\" \"\" t)\n\n(defun gtags-create-or-update ()\n \"Create or update the gnu global tag file.\"\n (interactive)\n (if (not (= 0 (call-process \"global\" nil nil nil \" -p\")))\n (let ((olddir default-directory)\n (topdir (read-directory-name\n \"gtags: top of source tree:\" default-directory)))\n (cd topdir)\n (shell-command \"env PATH=\/home\/christian\/.rvm\/gems\/ree-1.8.7-2010.02\/bin:$PATH GTAGSLABEL=rtags gtags && echo 'Created tagfile'\")\n (cd olddir))\n (shell-command \"env PATH=\/home\/christian\/.rvm\/gems\/ree-1.8.7-2010.02\/bin:$PATH GTAGSLABEL=rtags global -u && echo 'Updated tagfile'\")))\n\n(add-hook 'gtags-mode-hook\n (lambda()\n (local-set-key (kbd \"M-.\") 'gtags-find-tag)\n (local-set-key (kbd \"M-,\") 'gtags-find-with-grep)\n (local-set-key (kbd \"M-:\") 'gtags-find-symbol)\n (local-set-key (kbd \"M-_\") 'gtags-find-rtag)))\n\n(provide 'gtags-tweaks)\n","subject":"Use specific Ruby (not very portable, needs fix)","message":"Use specific Ruby (not very portable, needs fix)\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"d1c9d3400d7705a6f82d76c5a717cdcd97d86461","old_file":"init-rails.el","new_file":"init-rails.el","old_contents":"(eval-after-load 'rinari\n `(let ((rinari-lib-dir (directory-of-library \"rinari\")))\n (unless (require 'jump nil t)\n (error \"jump.el not found; please run 'git submodule update --init' in %s\"\n rinari-lib-dir))\n\n ;; Prevent rinari from shadowing ruby-mode and inf-ruby with its bundled copies\n (setq load-path\n (remove (file-name-as-directory (expand-file-name \"util\/inf-ruby\" rinari-lib-dir))\n (remove (file-name-as-directory (expand-file-name \"util\" rinari-lib-dir))\n load-path)))))\n\n(dolist (hook '(nxml-mode-hook haml-mode-hook sass-mode-hook magit-mode-hook yaml-mode-hook))\n (add-hook hook 'rinari-launch))\n\n(defun update-rails-ctags ()\n (interactive)\n (let ((default-directory (or (rinari-root) default-directory)))\n (shell-command (concat \"ctags -a -e -f \" rinari-tags-file-name \" --tag-relative -R app lib vendor test\"))))\n\n\n(provide 'init-rails)\n","new_contents":"(global-rinari-mode)\n\n(defun update-rails-ctags ()\n (interactive)\n (let ((default-directory (or (rinari-root) default-directory)))\n (shell-command (concat \"ctags -a -e -f \" rinari-tags-file-name \" --tag-relative -R app lib vendor test\"))))\n\n\n(provide 'init-rails)\n","subject":"Use new global-rinari-mode in place of old hooks + rinari-launch scheme","message":"Use new global-rinari-mode in place of old hooks + rinari-launch scheme\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"pairyo\/emacs.d,blueabysm\/emacs.d,mmqmzk\/emacs.d,mpwang\/emacs.d,Shanicky\/emacs.d,ruiyang\/emacs.d,roxolan\/emacs.d,zuoshifan\/emacs.d,exclamaforte\/emacs.d,danfengcao\/emacs.d,caoyuanqi\/emacs.d,svenyurgensson\/emacs.d,scorpionis\/emacs.d,farzadbekran\/emacs.d,gsmlg\/emacs.d,wegatron\/emacs.d,jthetzel\/emacs.d,Togal\/emacs.d,ruiyang\/emacs.d,ernest-dzf\/emacs.d,LittleLmp\/emacs.d,dhanunjaya\/emacs.d,bibaijin\/emacs.d,zhuoyikang\/emacs.d,YangXin\/emacs.d,ilove0518\/emacs.d,atreeyang\/emacs.d,Guoozz\/emacs.d,arthurl\/emacs.d,sgarciac\/emacs.d,jkaessens\/emacs.d,zuoshifan\/emacs.d,Werewolflsp\/emacs.d,shafayetkhan\/emacs.d,zuoshifan\/emacs.d,lujianmei\/emacs.d,farzadbekran\/emacs.d,boblannon\/emacs.d,Enzo-Liu\/emacs.d,Jadecity\/PurcellEmacs.d,jachinpy\/emacs.d,hkcqr\/emacs.d,benkha\/emacs.d,haodaivshen\/emacs.d,dcorking\/emacs.d,LKI\/emacs.d,emuio\/emacs.d,wenpincui\/emacs.d,jhpx\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,lust4life\/emacs.d,dongdonghu\/.emacs.d,lromang\/emacs.d,zenith-john\/emacs.d,DarkThrone\/emacs.d,baohaojun\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,cjqw\/emacs.d,cyjia\/emacs.d,krzysz00\/emacs.d,kongfy\/emacs.d,qianwan\/emacs.d,qinshulei\/emacs.d,zuoshifan\/emacs.d,46do14\/emacs.d,zhaotai\/.emacs.d,braveoyster\/emacs.d,farzadbekran\/emacs.d,fengxl\/emacs.d,kindoblue\/emacs.d,renatoriccio\/emacs.d,modkzs\/emcs.d,YangXin\/emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,carlosliu\/emacs.d,purcell\/emacs.d,alant\/emacs.d,zuoshifan\/emacs.d,hophacker\/emacs.d,whizzzkid\/emacs.d,blueseason\/emacs.d,me020523\/emacs.d,zuoshifan\/emacs.d"} {"commit":"005c96fbe544c22b1c65f1565e838b9ea80c6f3b","old_file":"modules\/syntax-check.el","new_file":"modules\/syntax-check.el","old_contents":";;; -*- lexical-binding: t -*-\n;;; syntax-check.el --- Syntax checking settings.\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(use-package flycheck\n :init (global-flycheck-mode))\n\n(provide 'syntax-check)\n\n;;; syntax-check.el ends here\n\n","new_contents":";;; -*- lexical-binding: t -*-\n;;; syntax-check.el --- Syntax checking settings.\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(use-package flycheck\n :init (global-flycheck-mode))\n\n;; Bind M-n and M-p to navigate to the next\/previous errors.\n(global-set-key (kbd \"M-n\") 'next-error)\n(global-set-key (kbd \"M-p\") 'previous-error)\n\n(provide 'syntax-check)\n\n;;; syntax-check.el ends here\n\n","subject":"Add key bindingings for flycheck.","message":"Add key bindingings for flycheck.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"timanin\/emacs.d"} {"commit":"e65b06c3f3cc07db8a7fff0b04a9416737466e9c","old_file":"layers\/mfa-string-inflection\/packages.el","new_file":"layers\/mfa-string-inflection\/packages.el","old_contents":"(defconst mfa-string-inflection-packages '(string-inflection))\n\n(defun mfa-string-inflection\/init-string-inflection ()\n (use-package string-inflection\n :defer t\n :init\n (progn\n (spacemacs\/declare-prefix \"xi\" \"string-inflection\")\n (spacemacs\/set-leader-keys \"xic\" #'string-inflection-camelcase)\n (spacemacs\/set-leader-keys \"xie\" #'string-inflection-lisp)\n (spacemacs\/set-leader-keys \"xii\" #'string-inflection-all-cycle)\n (spacemacs\/set-leader-keys \"xij\" #'string-inflection-java-style-cycle)\n (spacemacs\/set-leader-keys \"xil\" #'string-inflection-lower-camelcase)\n (spacemacs\/set-leader-keys \"xir\" #'string-inflection-ruby-style-cycle)\n (spacemacs\/set-leader-keys \"xis\" #'string-inflection-underscore)\n (spacemacs\/set-leader-keys \"xit\" #'string-inflection-toggle)\n (spacemacs\/set-leader-keys \"xiu\" #'string-inflection-upcase))))\n","new_contents":"(defconst mfa-string-inflection-packages '(string-inflection))\n\n(defun mfa-string-inflection\/init-string-inflection ()\n (use-package string-inflection\n :defer t\n :init\n (progn\n (spacemacs\/declare-prefix \"xi\" \"string-inflection\")\n (spacemacs\/set-leader-keys \"xic\" #'string-inflection-camelcase)\n (spacemacs\/set-leader-keys \"xie\" #'string-inflection-lisp)\n (spacemacs\/set-leader-keys \"xii\" #'string-inflection-all-cycle)\n (spacemacs\/set-leader-keys \"xij\" #'string-inflection-java-style-cycle)\n (spacemacs\/set-leader-keys \"xik\" #'string-inflection-kebab-case)\n (spacemacs\/set-leader-keys \"xil\" #'string-inflection-lower-camelcase)\n (spacemacs\/set-leader-keys \"xir\" #'string-inflection-ruby-style-cycle)\n (spacemacs\/set-leader-keys \"xis\" #'string-inflection-underscore)\n (spacemacs\/set-leader-keys \"xit\" #'string-inflection-toggle)\n (spacemacs\/set-leader-keys \"xiu\" #'string-inflection-upcase))))\n","subject":"Add binding for new string-inflection method","message":"Add binding for new string-inflection method\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"e23dc884b9c6f90910d149c3946aed58615fffb4","old_file":"init-csv.el","new_file":"init-csv.el","old_contents":"(require-package 'csv-mode)\n(require-package 'csv-nav)\n\n(add-auto-mode 'csv-mode \"\\\\.[Cc][Ss][Vv]\\\\'\")\n(autoload 'csv-nav-mode \"csv-nav\" \"Major mode for navigating comma-separated value files.\" t)\n\n(setq csv-separators '(\",\" \";\" \"|\" \" \"))\n\n(provide 'init-csv)\n","new_contents":"(require-package 'csv-mode)\n(require-package 'csv-nav)\n\n(add-auto-mode 'csv-mode \"\\\\.[Cc][Ss][Vv]\\\\'\")\n\n(setq csv-separators '(\",\" \";\" \"|\" \" \"))\n\n(provide 'init-csv)\n","subject":"Remove redundant autoload for csv-nav-mode (fixed upstream)","message":"Remove redundant autoload for csv-nav-mode (fixed upstream)\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"298c66efec5397378156ddb3dc1260930d81fe42","old_file":"radian-emacs\/radian-help.el","new_file":"radian-emacs\/radian-help.el","old_contents":";;; radian-help.el --- Improve the Emacs help system\n\n(require 'radian-package)\n\n;; This package provides several useful features, but the most\n;; important is `describe-keymap'. Because the package is rather\n;; outdated, it's not autoloaded. (But `use-package' takes care of\n;; that for us.)\n(use-package help-fns+\n :defer-install t\n :bind ((\"C-h M-k\" . describe-keymap)))\n\n(provide 'radian-help)\n\n;;; radian-help.el ends here\n","new_contents":";;; radian-help.el --- Improve the Emacs help system\n\n(require 'radian-package)\n\n;; This package provides several useful features, but the most\n;; important is `describe-keymap'. Because the package is rather\n;; outdated, it's not autoloaded. (But `use-package' takes care of\n;; that for us.)\n(use-package help-fns+\n :defer-install t\n :bind ((\"C-h M-k\" . describe-keymap)\n ;; Prevent help-fns+ from overriding this built-in\n ;; keybinding:\n (\"C-h o\" . describe-symbol)))\n\n(provide 'radian-help)\n\n;;; radian-help.el ends here\n","subject":"Make sure describe-symbol isn't unbound","message":"Make sure describe-symbol isn't unbound\n","lang":"Emacs Lisp","license":"mit","repos":"raxod502\/radian,raxod502\/radian"} {"commit":"3906c1ffa6c9d868c3d74c2edf9c6ef531ab76fc","old_file":"init-maxframe.el","new_file":"init-maxframe.el","old_contents":"(require 'maxframe)\n(when *is-cocoa-emacs*\n (fset 'maximize-frame 'x-maximize-frame)\n (fset 'restore-frame 'x-restore-frame))\n(when *macbook-pro-support-enabled*\n (setq mf-max-width 1440\n mf-max-height 890\n mf-display-padding-width 4\n mf-offset-x 0\n mf-display-padding-height (if ns-auto-hide-menu-bar\n 23\n (+ 22 23))))\n\n(defun maybe-maximize-frame (&optional frame)\n (with-selected-frame frame\n (if window-system (maximize-frame))))\n\n(add-hook 'after-make-frame-functions 'maybe-maximize-frame)\n(add-hook 'after-init-hook 'maybe-maximize-frame)\n\n(defun maximized-p (&optional frame)\n (or (not (with-selected-frame frame window-system))\n (and (<= (abs (- (mf-max-display-pixel-width) (frame-pixel-width frame))) (frame-char-width frame))\n (<= (abs (- (mf-max-display-pixel-height) (+ mf-display-padding-height (frame-pixel-height frame)))) (+ 5 (frame-char-height frame))))))\n\n\n(provide 'init-maxframe)\n","new_contents":"(require 'maxframe)\n(when *is-cocoa-emacs*\n (fset 'maximize-frame 'x-maximize-frame)\n (fset 'restore-frame 'x-restore-frame))\n(when *macbook-pro-support-enabled*\n (setq mf-max-width 1440\n mf-max-height 894\n mf-display-padding-width 4\n mf-offset-x 0\n mf-display-padding-height (if ns-auto-hide-menu-bar\n 23\n (+ 22 23))))\n\n(defun maybe-maximize-frame (&optional frame)\n (with-selected-frame frame\n (if window-system (maximize-frame))))\n\n(add-hook 'after-make-frame-functions 'maybe-maximize-frame)\n(add-hook 'after-init-hook 'maybe-maximize-frame)\n\n(defun maximized-p (&optional frame)\n (or (not (with-selected-frame frame window-system))\n (and (<= (abs (- (mf-max-display-pixel-width) (frame-pixel-width frame))) (frame-char-width frame))\n (<= (abs (- (mf-max-display-pixel-height) (+ mf-display-padding-height (frame-pixel-height frame)))) (+ 5 (frame-char-height frame))))))\n\n\n(provide 'init-maxframe)\n","subject":"Tweak max window height for maxframe under OS X","message":"Tweak max window height for maxframe under OS X\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"bibaijin\/emacs.d,dcorking\/emacs.d,dhanunjaya\/emacs.d,boblannon\/emacs.d,lujianmei\/emacs.d,roxolan\/emacs.d,zuoshifan\/emacs.d,benkha\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,ilove0518\/emacs.d,hkcqr\/emacs.d,Werewolflsp\/emacs.d,danfengcao\/emacs.d,whizzzkid\/emacs.d,scorpionis\/emacs.d,Jadecity\/PurcellEmacs.d,46do14\/emacs.d,zenith-john\/emacs.d,Shanicky\/emacs.d,lromang\/emacs.d,me020523\/emacs.d,gsmlg\/emacs.d,cyjia\/emacs.d,exclamaforte\/emacs.d,zuoshifan\/emacs.d,YangXin\/emacs.d,shafayetkhan\/emacs.d,zhuoyikang\/emacs.d,purcell\/emacs.d,ruiyang\/emacs.d,fengxl\/emacs.d,Enzo-Liu\/emacs.d,LittleLmp\/emacs.d,svenyurgensson\/emacs.d,farzadbekran\/emacs.d,YangXin\/emacs.d,jthetzel\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,sgarciac\/emacs.d,kongfy\/emacs.d,braveoyster\/emacs.d,haodaivshen\/emacs.d,jhpx\/emacs.d,dongdonghu\/.emacs.d,blueabysm\/emacs.d,qianwan\/emacs.d,ruiyang\/emacs.d,zuoshifan\/emacs.d,Togal\/emacs.d,DarkThrone\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,emuio\/emacs.d,zhaotai\/.emacs.d,hophacker\/emacs.d,renatoriccio\/emacs.d,lust4life\/emacs.d,kindoblue\/emacs.d,jachinpy\/emacs.d,qinshulei\/emacs.d,mmqmzk\/emacs.d,jkaessens\/emacs.d,krzysz00\/emacs.d,caoyuanqi\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,ernest-dzf\/emacs.d,wegatron\/emacs.d,alant\/emacs.d,zuoshifan\/emacs.d,arthurl\/emacs.d,Guoozz\/emacs.d,zuoshifan\/emacs.d,cjqw\/emacs.d,zuoshifan\/emacs.d,pairyo\/emacs.d,atreeyang\/emacs.d,LKI\/emacs.d,blueseason\/emacs.d,baohaojun\/emacs.d,carlosliu\/emacs.d,mpwang\/emacs.d,modkzs\/emcs.d,wenpincui\/emacs.d"} {"commit":"0d4781bae15e5175dbbe6112e2761a3d23d22a95","old_file":"lisp\/packages.el","new_file":"lisp\/packages.el","old_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"org\" . \"http:\/\/orgmode.org\/elpa\/\")\n (\"melpa\" . \"http:\/\/melpa.org\/packages\/\")\n (\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '( bbdb\n bm\n company\n company-flx\n company-ghc\n dictionary\n flycheck\n flx\n flx-ido\n gist\n haskell-mode\n htmlize\n http\n hydra\n inf-ruby\n kite\n magit\n markdown-mode\n nix-mode\n projectile\n rhtml-mode\n ruby-end\n scad-mode\n smex\n yaml-mode )\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive t))\n\n;; Prepare package management\n(package-initialize)\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p))))\n","new_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"org\" . \"http:\/\/orgmode.org\/elpa\/\")\n (\"melpa\" . \"http:\/\/melpa.org\/packages\/\")\n (\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '( bbdb\n bm\n company\n company-flx\n company-ghc\n dictionary\n flycheck\n flx\n flx-ido\n gist\n haskell-mode\n htmlize\n http\n hydra\n inf-ruby\n kite\n magit\n markdown-mode\n nix-mode\n projectile\n no-littering\n rhtml-mode\n ruby-end\n scad-mode\n smex\n yaml-mode )\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive t))\n\n;; Prepare package management\n(package-initialize)\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p))))\n","subject":"Add the no-littering package. Still need to configure it","message":"Add the no-littering package. Still need to configure it\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"0a1a4776a866e9ea09aef42afe9a62959c1221c2","old_file":"emacs\/common\/.emacs.d\/private\/local\/custom.el","new_file":"emacs\/common\/.emacs.d\/private\/local\/custom.el","old_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(global-hl-todo-mode t)\n '(hl-todo-activate-in-modes (quote (prog-mode yaml-mode)))\n '(safe-local-variable-values\n (quote\n ((org-src-preserve-indentation . t)\n (org-src-fontify-natively . t)))))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(global-hl-todo-mode t)\n '(hl-todo-activate-in-modes (quote (prog-mode yaml-mode)))\n '(safe-local-variable-values\n (quote\n ((org-src-preserve-indentation . t)\n (org-src-fontify-natively . t)))))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n\n;; TODO: (add-to-list 'org-structure-template-alist '(\"n\" \"#+NAME: ?\"))\n","subject":"Add note re: org-mode hack","message":"[emacs] Add note re: org-mode hack\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"lhrkkk\/dotfiles,lhrkkk\/dotfiles"} {"commit":"8d4ef1b16f0f96e06e4abd42f17e44572558167d","old_file":"init-workgroups2.el","new_file":"init-workgroups2.el","old_contents":"(require 'workgroups2)\n(setq wg-use-default-session-file nil)\n(workgroups-mode 1) ; put this one at the bottom of .emacs\n;; by default, the sessions are saved in \"~\/.emacs_workgroups\"\n(provide 'init-workgroups2)\n","new_contents":"(require 'workgroups2)\n(workgroups-mode 1) ; put this one at the bottom of .emacs\n;; by default, the sessions are saved in \"~\/.emacs_workgroups\"\n(provide 'init-workgroups2)\n","subject":"Revert \"prevent workgroups2 to load profile when start up\"","message":"Revert \"prevent workgroups2 to load profile when start up\"\n\nThis reverts commit 44cdfcb5a64062b5ba494efd02c3d882f3510389.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d"} {"commit":"68815a6a3733cb2ac1d36fc133e71e80c28ca8aa","old_file":"modules\/ui\/indent-guides\/config.el","new_file":"modules\/ui\/indent-guides\/config.el","old_contents":";;; ui\/indent-guides\/config.el -*- lexical-binding: t; -*-\n\n(use-package! highlight-indent-guides\n :hook ((prog-mode text-mode conf-mode) . highlight-indent-guides-mode)\n :init\n (setq highlight-indent-guides-method 'character)\n :config\n (defun +indent-guides-init-faces-h ()\n (when (display-graphic-p)\n (highlight-indent-guides-auto-set-faces)))\n\n ;; HACK `highlight-indent-guides' calculates its faces from the current theme,\n ;; but is unable to do so properly in terminal Emacs, where it only has\n ;; access to 256 colors. So if the user uses a daemon we must wait for\n ;; the first graphical frame to be available to do.\n (add-hook (if (daemonp)\n 'server-after-make-frame-hook\n 'doom-load-theme-hook)\n #'+indent-guides-init-faces-h)\n\n ;; `highlight-indent-guides' breaks when `org-indent-mode' is active\n (add-hook! 'org-indent-mode-hook\n (defun +indent-guides-disable-maybe-h ()\n (when highlight-indent-guides-mode\n (highlight-indent-guides-mode -1)))))\n","new_contents":";;; ui\/indent-guides\/config.el -*- lexical-binding: t; -*-\n\n(use-package! highlight-indent-guides\n :hook ((prog-mode text-mode conf-mode) . highlight-indent-guides-mode)\n :init\n (setq highlight-indent-guides-method 'character)\n\n ;; HACK The default \\x2502 appears to be slow on macOS. This needs more\n ;; testing, but for now we use another bar unicode glyph, which is\n ;; reportedly faster.\n (when IS-MAC\n (setq highlight-indent-guides-character ?\\xFFE8))\n :config\n (defun +indent-guides-init-faces-h ()\n (when (display-graphic-p)\n (highlight-indent-guides-auto-set-faces)))\n\n ;; HACK `highlight-indent-guides' calculates its faces from the current theme,\n ;; but is unable to do so properly in terminal Emacs, where it only has\n ;; access to 256 colors. So if the user uses a daemon we must wait for\n ;; the first graphical frame to be available to do.\n (add-hook (if (daemonp)\n 'server-after-make-frame-hook\n 'doom-load-theme-hook)\n #'+indent-guides-init-faces-h)\n\n ;; `highlight-indent-guides' breaks when `org-indent-mode' is active\n (add-hook! 'org-indent-mode-hook\n (defun +indent-guides-disable-maybe-h ()\n (when highlight-indent-guides-mode\n (highlight-indent-guides-mode -1)))))\n","subject":"Use (supposedly) faster indent-guides glyph","message":"Use (supposedly) faster indent-guides glyph\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs"} {"commit":"ba0d09d4017c97ee424bfe515bef766b3385b31e","old_file":"emacs\/lisp\/completion.el","new_file":"emacs\/lisp\/completion.el","old_contents":";;; completion.el -- Configuration for completion, abbreviations, and shortcuts.\n\n;; I don't want to type \"yes\".\n(defalias 'yes-or-no-p 'y-or-n-p)\n\n;; ido mode for mini-buffer completion (see also modes\/ido-conf.el)\n(require 'ido)\n(ido-mode t)\n\n;; Hippie expand\n(setq hippie-expand-try-functions-list\n '(try-expand-dabbrev\n try-expand-dabbrev-all-buffers\n try-expand-dabbrev-from-kill\n try-complete-lisp-symbol-partially\n try-complete-lisp-symbol\n try-complete-file-name-partially\n try-complete-file-name\n try-expand-whole-kill\n try-expand-line))\n","new_contents":";;; completion.el -- Configuration for completion, abbreviations, and shortcuts.\n\n;; I don't want to type \"yes\".\n(defalias 'yes-or-no-p 'y-or-n-p)\n\n;; ido mode for mini-buffer completion (see also modes\/ido-conf.el)\n(require 'ido)\n(ido-mode t)\n\n;; If the current line is already indented, have the tab key try to\n;; auto-complete the word at point.\n(setq tab-always-indent 'complete)\n\n;; Replace completion-at-point with hippie expand\n(defun pjones:hippie-expand () (hippie-expand nil))\n(defalias 'completion-at-point 'pjones:hippie-expand)\n\n;; Hippie expand functions\n(setq hippie-expand-try-functions-list\n '(try-expand-dabbrev\n try-expand-dabbrev-all-buffers\n try-expand-dabbrev-from-kill\n try-complete-lisp-symbol-partially\n try-complete-lisp-symbol\n try-complete-file-name-partially\n try-complete-file-name\n try-expand-whole-kill\n try-expand-line))\n","subject":"Update the tab key to run hippie-expand","message":"Update the tab key to run hippie-expand\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"0aca6ae9ebbac13b491428b415512f25e90838e1","old_file":"emacs\/.emacs.d\/lisp\/ds-css.el","new_file":"emacs\/.emacs.d\/lisp\/ds-css.el","old_contents":"\n(require 'css-mode)\n\n(add-hook 'css-mode-hook #'set-tab)\n(add-hook 'css-mode-hook #'electric-operator-mode)\n(add-hook 'css-mode-hook #'aggressive-indent-mode)\n","new_contents":"\n(require 'css-mode)\n\n(add-hook 'css-mode-hook #'set-tab t)\n(add-hook 'css-mode-hook #'electric-operator-mode)\n(add-hook 'css-mode-hook #'aggressive-indent-mode)\n","subject":"Fix tab key in css mode","message":"Fix tab key in css mode\n","lang":"Emacs Lisp","license":"cc0-1.0","repos":"davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles"} {"commit":"248ea4c2c762a84bf213b8880485b7c20dc86742","old_file":"modules\/ui\/hl-todo\/autoload.el","new_file":"modules\/ui\/hl-todo\/autoload.el","old_contents":";;; ui\/hl-todo\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(defun +hl-todo|use-face-detection ()\n \"Use a different, more primitive method of locating todo keywords.\n\nThis is useful for major modes that don't use or have a valid syntax-table entry\nfor comment start\/end characters.\"\n (set (make-local-variable 'hl-todo-keywords)\n `(((lambda (limit)\n (let (case-fold-search)\n (and (re-search-forward hl-todo-regexp limit t)\n (memq 'font-lock-comment-face (doom-enlist (get-text-property (point) 'face)))))\n (1 (hl-todo-get-face) t t))))))\n","new_contents":";;; ui\/hl-todo\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(defun +hl-todo|use-face-detection ()\n \"Use a different, more primitive method of locating todo keywords.\n\nThis is useful for major modes that don't use or have a valid syntax-table entry\nfor comment start\/end characters.\"\n (set (make-local-variable 'hl-todo-keywords)\n '(((lambda (limit)\n (let (case-fold-search)\n (and (re-search-forward hl-todo-regexp limit t)\n (memq 'font-lock-comment-face (doom-enlist (get-text-property (point) 'face))))))\n (1 (hl-todo-get-face) t t))))\n (when hl-todo-mode\n (hl-todo-mode -1)\n (hl-todo-mode +1)))\n\n","subject":"Reset hl-todo-mode if already active","message":"Reset hl-todo-mode if already active\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/doom-emacs,aminb\/.emacs.d,aminb\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,aminb\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,aminb\/.emacs.d,aminb\/.emacs.d,hlissner\/.emacs.d,aminb\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,aminb\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom"} {"commit":"6863ad9905eaee115d71b4eecc2a2cafe93f1011","old_file":"lisp\/init-grep.el","new_file":"lisp\/init-grep.el","old_contents":";;; init-grep.el --- Settings for grep and grep-like tools -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(setq-default grep-highlight-matches t\n grep-scroll-output t)\n\n(when *is-a-mac*\n (setq-default locate-command \"mdfind\"))\n\n(require-package 'wgrep)\n(with-eval-after-load 'grep\n (dolist (key (list (kbd \"C-c C-q\") (kbd \"w\")))\n (define-key grep-mode-map key 'wgrep-change-to-wgrep-mode)))\n\n(when (and (executable-find \"ag\")\n (maybe-require-package 'ag))\n (require-package 'wgrep-ag)\n (setq-default ag-highlight-search t)\n (global-set-key (kbd \"M-?\") 'ag-project))\n\n(when (and (executable-find \"rg\")\n (maybe-require-package 'rg))\n (global-set-key (kbd \"M-?\") 'rg-project))\n\n\n(provide 'init-grep)\n;;; init-grep.el ends here\n","new_contents":";;; init-grep.el --- Settings for grep and grep-like tools -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(setq-default grep-highlight-matches t\n grep-scroll-output t)\n\n(when *is-a-mac*\n (setq-default locate-command \"mdfind\"))\n\n(require-package 'wgrep)\n(with-eval-after-load 'grep\n (dolist (key (list (kbd \"C-c C-q\") (kbd \"w\")))\n (define-key grep-mode-map key 'wgrep-change-to-wgrep-mode)))\n\n(when (and (executable-find \"ag\")\n (maybe-require-package 'ag))\n (require-package 'wgrep-ag)\n (setq-default ag-highlight-search t)\n (global-set-key (kbd \"M-?\") 'ag-project))\n\n(when (maybe-require-package 'rg)\n (setq-default rg-executable \"rg\")\n (global-set-key (kbd \"M-?\") 'rg-project))\n\n\n(provide 'init-grep)\n;;; init-grep.el ends here\n","subject":"Make it work with tramp","message":"[WIP] rg: Make it work with tramp\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"arthurl\/emacs.d"} {"commit":"3462e3dc958e4148cd3d8a9c2fda440611285632","old_file":"layers\/mfa-string-inflection\/packages.el","new_file":"layers\/mfa-string-inflection\/packages.el","old_contents":"(defconst mfa-string-inflection-packages '(string-inflection))\n\n(defun mfa-string-inflection\/init-string-inflection ()\n (use-package string-inflection\n :defer t\n :init\n (progn\n (spacemacs\/declare-prefix \"xi\" \"string-inflection\")\n (spacemacs\/set-leader-keys \"xic\" #'string-inflection-camelcase)\n (spacemacs\/set-leader-keys \"xie\" #'string-inflection-lisp)\n (spacemacs\/set-leader-keys \"xii\" #'string-inflection-all-cycle)\n (spacemacs\/set-leader-keys \"xij\" #'string-inflection-java-style-cycle)\n (spacemacs\/set-leader-keys \"xik\" #'string-inflection-kebab-case)\n (spacemacs\/set-leader-keys \"xil\" #'string-inflection-lower-camelcase)\n (spacemacs\/set-leader-keys \"xir\" #'string-inflection-ruby-style-cycle)\n (spacemacs\/set-leader-keys \"xis\" #'string-inflection-underscore)\n (spacemacs\/set-leader-keys \"xit\" #'string-inflection-toggle)\n (spacemacs\/set-leader-keys \"xiu\" #'string-inflection-upcase))))\n","new_contents":"(defconst mfa-string-inflection-packages '(string-inflection))\n\n(defun mfa-string-inflection\/init-string-inflection ()\n (use-package string-inflection\n :defer t\n :init\n (progn\n (spacemacs\/declare-prefix \"xi\" \"string-inflection\")\n (spacemacs\/set-leader-keys \"xiC\" #'string-inflection-camelcase)\n (spacemacs\/set-leader-keys \"xic\" #'string-inflection-lower-camelcase)\n (spacemacs\/set-leader-keys \"xii\" #'string-inflection-all-cycle)\n (spacemacs\/set-leader-keys \"xij\" #'string-inflection-java-style-cycle)\n (spacemacs\/set-leader-keys \"xik\" #'string-inflection-kebab-case)\n (spacemacs\/set-leader-keys \"xil\" #'string-inflection-lisp)\n (spacemacs\/set-leader-keys \"xir\" #'string-inflection-ruby-style-cycle)\n (spacemacs\/set-leader-keys \"xis\" #'string-inflection-underscore)\n (spacemacs\/set-leader-keys \"xit\" #'string-inflection-toggle)\n (spacemacs\/set-leader-keys \"xiu\" #'string-inflection-upcase))))\n","subject":"Revise key bindings for string-inflection package","message":"Revise key bindings for string-inflection package\n\n - camelCase -> c\n - CamelCase -> C\n - lisp -> l\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"d6ccaf1251c7bc6feac84a0265d83f4d298f9417","old_file":"emacs\/common\/init.el","new_file":"emacs\/common\/init.el","old_contents":";; common\n(load-file \"~\/.emacs.d\/conf\/common\/package.el\")\n(load-file \"~\/.emacs.d\/conf\/common\/el-get.el\")\n\n(load-file \"~\/.emacs.d\/conf\/common\/mailcrypt.el\")\n;; multi-term breaks with emacs 24.4\n;;(load-file \"~\/.emacs.d\/conf\/common\/multi-term.el\")\n(load-file \"~\/.emacs.d\/conf\/common\/tramp.el\")\n\n(load-file \"~\/.emacs.d\/conf\/dired.el\")\n\n(setq inhibit-startup-screen t)\n(tool-bar-mode -1)\n(setq display-time-mode nil)\n","new_contents":";; common\n(load-file \"~\/.emacs.d\/conf\/common\/package.el\")\n(load-file \"~\/.emacs.d\/conf\/common\/el-get.el\")\n\n(load-file \"~\/.emacs.d\/conf\/common\/mailcrypt.el\")\n;; multi-term breaks with emacs 24.4\n;;(load-file \"~\/.emacs.d\/conf\/common\/multi-term.el\")\n(load-file \"~\/.emacs.d\/conf\/common\/tramp.el\")\n\n(load-file \"~\/.emacs.d\/conf\/common\/dired.el\")\n\n(setq inhibit-startup-screen t)\n(tool-bar-mode -1)\n(setq display-time-mode nil)\n","subject":"Fix the path to dired.el","message":"Fix the path to dired.el\n","lang":"Emacs Lisp","license":"mit","repos":"PerlStalker\/home-configs,PerlStalker\/home-configs"} {"commit":"163d23a1a1fad123b7cd38fc843a40ab9d963f5f","old_file":"init-maxframe.el","new_file":"init-maxframe.el","old_contents":"(require 'maxframe)\n(when *is-cocoa-emacs*\n (fset 'maximize-frame 'x-maximize-frame)\n (fset 'restore-frame 'x-restore-frame))\n(when *macbook-pro-support-enabled*\n (setq mf-max-width 1440)\n (setq mf-max-height 898)\n (setq mf-offset-x 0))\n\n(defmacro with-selected-frame (frame &rest forms)\n (let ((prev-frame (gensym)))\n `(progn\n (let ((,prev-frame (selected-frame)))\n (select-frame (or ,frame (selected-frame)))\n (unwind-protect\n (progn ,@forms)\n (select-frame ,prev-frame))))))\n\n(defun maybe-maximize-frame (&optional frame)\n (with-selected-frame frame\n (if window-system (maximize-frame))))\n\n(add-hook 'after-make-frame-functions 'maybe-maximize-frame)\n(add-hook 'after-init-hook 'maybe-maximize-frame)\n\n(defun maximized-p (&optional frame)\n (or (not (with-selected-frame frame window-system))\n (and (<= (abs (- (mf-max-display-pixel-width) (frame-pixel-width frame))) (frame-char-width frame))\n (<= (abs (- (mf-max-display-pixel-height) (+ mf-display-padding-height (frame-pixel-height frame)))) (+ 5 (frame-char-height frame))))))\n\n\n(provide 'init-maxframe)\n","new_contents":"(require 'maxframe)\n(when *is-cocoa-emacs*\n (fset 'maximize-frame 'x-maximize-frame)\n (fset 'restore-frame 'x-restore-frame))\n(when *macbook-pro-support-enabled*\n (setq mf-max-width 1440)\n (setq mf-max-height 890)\n (setq mf-offset-x 0))\n\n(defmacro with-selected-frame (frame &rest forms)\n (let ((prev-frame (gensym)))\n `(progn\n (let ((,prev-frame (selected-frame)))\n (select-frame (or ,frame (selected-frame)))\n (unwind-protect\n (progn ,@forms)\n (select-frame ,prev-frame))))))\n\n(defun maybe-maximize-frame (&optional frame)\n (with-selected-frame frame\n (if window-system (maximize-frame))))\n\n(add-hook 'after-make-frame-functions 'maybe-maximize-frame)\n(add-hook 'after-init-hook 'maybe-maximize-frame)\n\n(defun maximized-p (&optional frame)\n (or (not (with-selected-frame frame window-system))\n (and (<= (abs (- (mf-max-display-pixel-width) (frame-pixel-width frame))) (frame-char-width frame))\n (<= (abs (- (mf-max-display-pixel-height) (+ mf-display-padding-height (frame-pixel-height frame)))) (+ 5 (frame-char-height frame))))))\n\n\n(provide 'init-maxframe)\n","subject":"Fix macbook pro max screen height","message":"Fix macbook pro max screen height\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"Werewolflsp\/emacs.d,jkaessens\/emacs.d,zuoshifan\/emacs.d,zhuoyikang\/emacs.d,atreeyang\/emacs.d,zuoshifan\/emacs.d,kindoblue\/emacs.d,wenpincui\/emacs.d,lromang\/emacs.d,farzadbekran\/emacs.d,boblannon\/emacs.d,lust4life\/emacs.d,carlosliu\/emacs.d,farzadbekran\/emacs.d,emuio\/emacs.d,gsmlg\/emacs.d,shafayetkhan\/emacs.d,farzadbekran\/emacs.d,pairyo\/emacs.d,ruiyang\/emacs.d,roxolan\/emacs.d,zhaotai\/.emacs.d,mmqmzk\/emacs.d,whizzzkid\/emacs.d,zuoshifan\/emacs.d,LittleLmp\/emacs.d,mpwang\/emacs.d,krzysz00\/emacs.d,LKI\/emacs.d,Guoozz\/emacs.d,YangXin\/emacs.d,svenyurgensson\/emacs.d,benkha\/emacs.d,haodaivshen\/emacs.d,zuoshifan\/emacs.d,hophacker\/emacs.d,modkzs\/emcs.d,YangXin\/emacs.d,lujianmei\/emacs.d,zuoshifan\/emacs.d,jthetzel\/emacs.d,braveoyster\/emacs.d,farzadbekran\/emacs.d,dcorking\/emacs.d,zuoshifan\/emacs.d,jhpx\/emacs.d,46do14\/emacs.d,ernest-dzf\/emacs.d,farzadbekran\/emacs.d,me020523\/emacs.d,Togal\/emacs.d,exclamaforte\/emacs.d,ilove0518\/emacs.d,alant\/emacs.d,DarkThrone\/emacs.d,fengxl\/emacs.d,bibaijin\/emacs.d,zuoshifan\/emacs.d,Jadecity\/PurcellEmacs.d,jachinpy\/emacs.d,danfengcao\/emacs.d,renatoriccio\/emacs.d,qinshulei\/emacs.d,caoyuanqi\/emacs.d,zuoshifan\/emacs.d,jachinpy\/emacs.d,cyjia\/emacs.d,zenith-john\/emacs.d,zuoshifan\/emacs.d,scorpionis\/emacs.d,Shanicky\/emacs.d,purcell\/emacs.d,blueseason\/emacs.d,baohaojun\/emacs.d,dongdonghu\/.emacs.d,arthurl\/emacs.d,hkcqr\/emacs.d,kongfy\/emacs.d,dhanunjaya\/emacs.d,sgarciac\/emacs.d,cjqw\/emacs.d,blueabysm\/emacs.d,Enzo-Liu\/emacs.d,ruiyang\/emacs.d,qianwan\/emacs.d,wegatron\/emacs.d"} {"commit":"06b98e3f90018a7e53a02eb0f61cc2d46e6425d5","old_file":".emacs.d\/custom.el","new_file":".emacs.d\/custom.el","old_contents":";; custom.el\n(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(explicit-bash-args (quote (\"--noediting\" \"--login\" \"-i\")))\n '(js-indent-level 2)\n '(ns-function-modifier (quote control))\n '(org-hide-emphasis-markers t)\n '(package-selected-packages\n (quote\n (geiser flycheck yasnippet yaml-mode use-package markdown-mode magit helm exec-path-from-shell evil ess emmet-mode)))\n '(tramp-default-method \"ssh\"))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":";; custom.el\n(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(explicit-bash-args (quote (\"--noediting\" \"--login\" \"-i\")))\n '(js-indent-level 2)\n '(ns-function-modifier (quote control))\n '(org-hide-emphasis-markers t)\n '(package-selected-packages\n (quote\n (feature-mode geiser flycheck yasnippet yaml-mode use-package markdown-mode magit helm exec-path-from-shell evil ess emmet-mode)))\n '(tramp-default-method \"ssh\"))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Add feature-mode for writing gherkin format files.","message":"Add feature-mode for writing gherkin format files.\n","lang":"Emacs Lisp","license":"mit","repos":"PurityControl\/config-files,PurityControl\/config-files"} {"commit":"72bdca6da3ed1e356e0b4f6d4ca7addf42d6be88","old_file":"link\/.emacs.d\/site-lisp\/setup-tex.el","new_file":"link\/.emacs.d\/site-lisp\/setup-tex.el","old_contents":"(use-package tex\n :ensure auctex\n :init\n (setq TeX-PDF-mode t)\n (add-hook 'LaTeX-mode-hook 'visual-line-mode)\n )\n\n(use-package auctex-latexmk\n :ensure t\n :init (auctex-latexmk-setup)\n (setq auctex-latexmk-inherit-TeX-PDF-mode t)\n )\n\n(use-package company-auctex\n :ensure t\n )\n\n(provide 'setup-tex)\n","new_contents":"(use-package tex\n :ensure auctex\n :init\n (setq TeX-PDF-mode t)\n (add-hook 'LaTeX-mode-hook 'visual-line-mode)\n ;; ##### Always ask for the master file\n ;; ##### when creating a new TeX file.\n (setq-default TeX-master nil)\n\n\n ;; ##### Enable synctex correlation. From Okular just press\n ;; ##### Shift + Left click to go to the good line.\n (setq TeX-source-correlate-mode t\n TeX-source-correlate-start-server t)\n\n ;; ### Set Okular as the default PDF viewer.\n (eval-after-load \"tex\"\n '(setcar (cdr (assoc 'output-pdf TeX-view-program-selection)) \"Okular\"))\n )\n\n(use-package auctex-latexmk\n :ensure t\n :init (auctex-latexmk-setup)\n (setq auctex-latexmk-inherit-TeX-PDF-mode t)\n )\n\n(use-package company-auctex\n :ensure t\n )\n\n;; ##### Don't forget to configure\n;; ##### Okular to use emacs in\n;; ##### \"Configuration\/Configure Okular\/Editor\"\n;; ##### => Editor => Emacsclient. (you should see\n;; ##### emacsclient -a emacs --no-wait +%l %f\n;; ##### in the field \"Command\".\n\n(provide 'setup-tex)\n","subject":"Add sync for okular and emacs","message":"Add sync for okular and emacs\n","lang":"Emacs Lisp","license":"mit","repos":"SteVwonder\/dotfiles,SteVwonder\/dotfiles,SteVwonder\/dotfiles,SteVwonder\/dotfiles"} {"commit":"896dae1d4b34c356f5a673fbeba41d4d5327db5a","old_file":"setup-files\/setup-magit.el","new_file":"setup-files\/setup-magit.el","old_contents":";; Time-stamp: <2016-05-19 22:18:00 kmodi>\n\n;; magit\n;; https:\/\/github.com\/magit\/magit\n\n(use-package magit\n :defer t)\n\n\n(provide 'setup-magit)\n\n;; |---------+----------------------------------|\n;; | Binding | Description |\n;; |---------+----------------------------------|\n;; | j n | Jump to Untracked section |\n;; | j u | Jump to Unstaged section |\n;; | j s | Jump to Staged section |\n;; | j p | Jump to Unpushed section |\n;; | M-p | Jump to previous sibling section |\n;; | M-n | Jump to next sibling section |\n;; |---------+----------------------------------|\n\n;; Tip: Adding prefix to above jump commands also expands those sections and\n;; brings that section to the top of the buffer.\n;; So `C-u j s' is analogous to doing `j s C-l C-l 4`\n","new_contents":";; Time-stamp: <2017-05-09 15:49:51 kmodi>\n\n;; magit\n;; https:\/\/github.com\/magit\/magit\n\n(use-package magit\n :bind (:map modi-mode-map\n (\"C-c g\". hydra-magit\/body))\n :commands (magit-status magit-log-all-branches)\n :config\n (progn\n (defhydra hydra-magit (:color blue\n :columns 4)\n \"Magit\"\n (\"g\" magit-status \"status\")\n (\"s\" magit-status \"status\")\n (\"l\" magit-log-all-branches \"log\")\n (\"b\" magit-branch-popup \"branch popup\")\n (\"r\" magit-rebase-popup \"rebase popup\")\n (\"f\" magit-fetch-popup \"fetch popup\")\n (\"P\" magit-push-popup \"push popup\")\n (\"F\" magit-pull-popup \"pull popup\")\n (\"W\" magit-format-patch \"format patch\")\n (\"$\" magit-process \"process\"))))\n\n\n(provide 'setup-magit)\n\n;; |---------+----------------------------------|\n;; | Binding | Description |\n;; |---------+----------------------------------|\n;; | j n | Jump to Untracked section |\n;; | j u | Jump to Unstaged section |\n;; | j s | Jump to Staged section |\n;; | j p | Jump to Unpushed section |\n;; | M-p | Jump to previous sibling section |\n;; | M-n | Jump to next sibling section |\n;; |---------+----------------------------------|\n\n;; Tip: Adding prefix to above jump commands also expands those sections and\n;; brings that section to the top of the buffer.\n;; So `C-u j s' is analogous to doing `j s C-l C-l 4`\n","subject":"Add hydra-magit; bind to C-c g","message":"Add hydra-magit; bind to C-c g\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"3d20cd04c4b831247c5f6d6ea46190db0e2c8e80","old_file":"emacs.d\/personal\/init\/packages.el","new_file":"emacs.d\/personal\/init\/packages.el","old_contents":"(prelude-require-packages '(\n ag\n aggressive-indent\n bats-mode\n chruby\n color-theme-sanityinc-tomorrow\n editorconfig\n evil-args\n evil-exchange\n evil-jumper\n evil-matchit\n evil-nerd-commenter\n evil-smartparens\n fill-column-indicator\n flycheck-rust\n frame-cmds\n gruvbox-theme\n helm-ag\n js2-refactor\n monokai-theme\n multiple-cursors\n nginx-mode\n nlinum\n nyan-mode\n paredit\n php-mode\n projectile-rails\n rhtml-mode\n ruby-compilation\n rust-mode\n solarized-theme\n smart-mode-line\n toggle-quotes\n window-jump\n window-number\n yagist\n yasnippet\n ))\n\n;; vendored packages\n(personal\/load-init-file \"personal\/vendor\/rcodetools\")\n(personal\/load-init-file \"personal\/vendor\/scad-mode\")\n","new_contents":"(prelude-require-packages '(\n ag\n aggressive-indent\n bats-mode\n chruby\n color-theme-sanityinc-tomorrow\n editorconfig\n ember-mode\n evil-args\n evil-exchange\n evil-jumper\n evil-matchit\n evil-nerd-commenter\n evil-smartparens\n fill-column-indicator\n flycheck-rust\n frame-cmds\n gruvbox-theme\n handlebars-mode\n helm-ag\n js2-refactor\n monokai-theme\n multiple-cursors\n nginx-mode\n nlinum\n nyan-mode\n paredit\n php-mode\n projectile-rails\n rhtml-mode\n ruby-compilation\n rust-mode\n solarized-theme\n smart-mode-line\n toggle-quotes\n window-jump\n window-number\n yagist\n yasnippet\n ))\n\n;; vendored packages\n(personal\/load-init-file \"personal\/vendor\/rcodetools\")\n(personal\/load-init-file \"personal\/vendor\/scad-mode\")\n","subject":"Add handlebars and ember modes","message":"Add handlebars and ember modes\n","lang":"Emacs Lisp","license":"mit","repos":"caleb\/dotfiles,caleb\/dotfiles,caleb\/dotfiles"} {"commit":"33a2e3b87b5ea7a9034fc4e6e90161d8f5d89d83","old_file":"available-init\/org-mode.el","new_file":"available-init\/org-mode.el","old_contents":"(req-package org\n :mode (\"\\\\.org\\\\'\" . org-mode))\n\n(req-package org-bullets\n :require org\n :init\n (progn\n (add-hook 'org-mode-hook 'org-bullets-mode)))\n","new_contents":"(req-package org\n :mode (\"\\\\.org\\\\'\" . org-mode)\n :config\n (progn\n (add-to-list 'org-latex-packages-alist '(\"\" \"minted\"))\n (setq org-latex-listings 'minted)\n (setq org-latex-pdf-process\n '(\"pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f\"\n \"pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f\"\n \"pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f\"))\n (setq org-latex-minted-options '((\"breaklines\" \"true\")))))\n\n\n(req-package org-bullets\n :require org\n :init\n (progn\n (add-hook 'org-mode-hook 'org-bullets-mode)))\n","subject":"Add minted for latex code block","message":"Add minted for latex code block\n","lang":"Emacs Lisp","license":"mit","repos":"linc01n\/.emacs.d,linc01n\/.emacs.d"} {"commit":"41dd1b351d87dbea85fddd5eeb8842026754e5b4","old_file":"emacs\/lisp\/seanmacs-version-control.el","new_file":"emacs\/lisp\/seanmacs-version-control.el","old_contents":";;; seanmacs-version-control.el --- Version control -*- lexical-binding: t; -*-\n\n;;; Commentary:\n;; VC configuration.\n\n;;; Code:\n\n(use-package ediff\n ;; built-in\n :init\n (setq-default ediff-split-window-function #'split-window-horizontally\n ediff-merge-split-window-function #'split-window-horizontally\n ediff-window-setup-function #'ediff-setup-windows-plain))\n\n(use-package magit\n :straight t\n :defer t)\n\n(use-package forge\n :straight t\n :after magit\n :config\n (setq forge-pull-notifications nil)\n (transient-append-suffix 'forge-dispatch \"c u\"\n '(\"c r\" \"review pull request\" github-review-forge-pr-at-point)))\n\n(use-package github-review\n :straight t\n :defer t\n :commands (github-review-start github-review-forge-pr-at-point))\n\n(use-package evil-magit\n :straight t\n :after magit)\n\n(use-package diff-hl\n :straight t\n :config\n (global-diff-hl-mode)\n :hook ((magit-post-refresh . diff-hl-magit-post-refresh)))\n\n(provide 'seanmacs-version-control)\n;;; seanmacs-version-control.el ends here\n\n","new_contents":";;; seanmacs-version-control.el --- Version control -*- lexical-binding: t; -*-\n\n;;; Commentary:\n;; VC configuration.\n\n;;; Code:\n\n(use-package ediff\n ;; built-in\n :init\n (setq-default ediff-split-window-function #'split-window-horizontally\n ediff-merge-split-window-function #'split-window-horizontally\n ediff-window-setup-function #'ediff-setup-windows-plain))\n\n(use-package magit\n :straight t\n :defer t\n :config\n (add-to-list 'magit-status-sections-hook 'magit-insert-modules t)\n (setq magit-module-sections-nested nil))\n\n(use-package forge\n :straight t\n :after magit\n :config\n (setq forge-pull-notifications nil)\n (transient-append-suffix 'forge-dispatch \"c u\"\n '(\"c r\" \"review pull request\" github-review-forge-pr-at-point)))\n\n(use-package github-review\n :straight t\n :defer t\n :commands (github-review-start github-review-forge-pr-at-point))\n\n(use-package evil-magit\n :straight t\n :after magit)\n\n(use-package diff-hl\n :straight t\n :config\n (global-diff-hl-mode)\n :hook ((magit-post-refresh . diff-hl-magit-post-refresh)))\n\n(provide 'seanmacs-version-control)\n;;; seanmacs-version-control.el ends here\n\n","subject":"Add modules section to magit status buffer","message":"Add modules section to magit status buffer\n","lang":"Emacs Lisp","license":"mit","repos":"SCSmithr\/dotfiles"} {"commit":"6837e4c5b8b0a6b9566ef91ef0ae33e789bb6fd4","old_file":"doom.d\/config.el","new_file":"doom.d\/config.el","old_contents":";;; ~\/.doom.d\/config.el -*- lexical-binding: t; -*-\n\n;; Place your private configuration here\n\n(setq\n doom-font (font-spec :family \"Iosevka\" :size 16)\n doom-theme 'doom-one-light)\n\n; doom-theme 'doom-molokai)\n\n; ln -s \/Users\/david\/Library\/Mobile\\ Documents\/iCloud\\~com\\~appsonthemove\\~beorg\/Documents\/org org\n(setq org-agenda-files\n (list\n \"~\/org\/inbox.org\"\n \"~\/org\/notes.org\"\n \"~\/org\/zignyl.org\"))\n\n; log the time when something is marked done\n(setq org-log-done 'time)\n\n(map! (:map override\n \"C-l\" #'switch-to-buffer)\n\n ;; global keybindings\n :n \"J\" #'evil-scroll-page-down\n :n \"K\" #'evil-scroll-page-up\n\n :v \"\\\\\\\\\" #'evil-commentary-line)\n\n; :localleader\n; \"s\" #'whitespace-mode)\n\n(setq\n mac-command-modifier 'meta\n mac-option-modifier 'super)\n\n(setq doom-localleader-key \",\")\n\n","new_contents":";;; ~\/.doom.d\/config.el -*- lexical-binding: t; -*-\n\n;; Place your private configuration here\n\n(setq\n doom-font (font-spec :family \"Iosevka\" :size 16)\n doom-theme 'leuven)\n\n; doom-theme 'doom-molokai)\n\n; ln -s \/Users\/david\/Library\/Mobile\\ Documents\/iCloud\\~com\\~appsonthemove\\~beorg\/Documents\/org org\n(setq org-agenda-files '(\"~\/org\"))\n\n; log the time when something is marked done\n(setq org-log-done 'time)\n\n(map! (:map override\n \"C-l\" #'switch-to-buffer)\n\n ;; global keybindings\n :n \"J\" #'evil-scroll-page-down\n :n \"K\" #'evil-scroll-page-up\n\n :v \"\\\\\\\\\" #'evil-commentary-line)\n\n; :localleader\n; \"s\" #'whitespace-mode)\n\n(setq\n mac-command-modifier 'meta\n mac-option-modifier 'super)\n\n(setq doom-localleader-key \",\")\n\n","subject":"Change color theme, track all under ~\/org","message":"Change color theme, track all under ~\/org\n","lang":"Emacs Lisp","license":"mit","repos":"drmohundro\/dotfiles"} {"commit":"bf3b15ce6d5c5abf3076e15b6ce7b4e4b2409ff4","old_file":"load\/flyhooks.el","new_file":"load\/flyhooks.el","old_contents":"(require 'flycheck)\n\n(flycheck-define-checker sbt\n \"Checker for compilation with SBT\"\n :command (\"esbt\")\n :error-patterns\n ((error line-start \"[error] \" (file-name) \":\" line \": \"\n (message (zero-or-more not-newline)\n (one-or-more \"\\n\" blank\n (zero-or-more not-newline)))\n line-end)\n (warn line-start \"[warn] \" (file-name) \":\" line \": \"\n (message (zero-or-more not-newline)\n (one-or-more \"\\n\" blank\n (zero-or-more not-newline)))\n line-end))\n :modes scala-mode)\n\n(flycheck-add-next-checker 'sbt 'scala)\n\n(global-set-key (kbd \"\") 'flycheck-previous-error)\n(global-set-key (kbd \"\") 'flycheck-buffer)\n(global-set-key (kbd \"\") 'flycheck-next-error)\n","new_contents":"(require 'flycheck)\n\n(flycheck-define-checker sbt\n \"Checker for compilation with SBT\"\n :command (\"esbt\")\n :error-patterns\n ((error line-start \"[error] \" (file-name) \":\" line \": \"\n (message (zero-or-more not-newline)\n (one-or-more \"\\n\" blank\n (zero-or-more not-newline)))\n line-end)\n (warn line-start \"[warn] \" (file-name) \":\" line \": \"\n (message (zero-or-more not-newline)\n (one-or-more \"\\n\" blank\n (zero-or-more not-newline)))\n line-end))\n :modes scala-mode)\n\n(flycheck-add-next-checker 'sbt 'scala)\n\n(defun touch-and-check-buffer ()\n \"Touch and save the buffer before checking syntax.\"\n (interactive)\n (save-excursion\n (end-of-line nil)\n (insert \" \")\n (save-buffer)\n (flycheck-buffer)))\n\n(global-set-key (kbd \"\") 'flycheck-previous-error)\n(global-set-key (kbd \"\") 'touch-and-check-buffer)\n(global-set-key (kbd \"\") 'flycheck-next-error)\n","subject":"Tweak flycheck-check-buffer so it modifies the file","message":"Tweak flycheck-check-buffer so it modifies the file\n","lang":"Emacs Lisp","license":"mit","repos":"kaidadragonfly\/.emacs"} {"commit":"3b56770e6fa8e9fc5cd82a28b724626b26e5f9ee","old_file":"elisp\/setup-modes.el","new_file":"elisp\/setup-modes.el","old_contents":";;; setup-modes.el --- Modes that don't require separate files.\n;;; Commentary:\n;;; Code:\n\n;; I used to have a prefix for the mode toggle, but I think hydras can be very useful, because the help can be displayed vertically.\n(defhydra mode-toggle (:color blue\n :columns 1)\n \"Toggle one of these modes\"\n (\"e\" evil-mode \"Evil mode\")\n (\"w\" whitespace-mode \"Whitespace mode\")\n (\"l\" linum-relative-mode \"Linum relative\")\n (\"c\" color-identifiers-mode \"Color identifiers mode\")\n (\"v\" visual-line-mode \"Visual line mode\")\n (\"p\" projectile-mode \"Projectile\")\n (\"k\" which-key-mode \"Which key\")\n (\"h\" global-hl-line-mode \"Highlight line\")\n (\"a\" artist-mode \"Artist mode\")\n (\"s\" key-chord-mode \"Key chord mode\")\n (\"q\" nil \"quit\"))\n\n(global-set-key (kbd \"\") 'mode-toggle\/body)\n\n;; yaml-mode. mainly for syntax highlighting\n(use-package yaml-mode\n :ensure t ;; seems like overkill\n :config\n (add-to-list 'auto-mode-alist '(\"\\\\.yml\\\\'\" . yaml-mode)))\n\n;; I tried this but I don't really like vim so let's not ensure this\n;; one\n(use-package evil\n :defer t)\n\n(use-package camcorder\n :defer t)\n\n(provide 'setup-modes)\n;;; setup-modes.el ends here\n","new_contents":";;; setup-modes.el --- Modes that don't require separate files.\n;;; Commentary:\n;;; Code:\n\n;; I used to have a prefix for the mode toggle, but I think hydras can be very useful, because the help can be displayed vertically.\n(defhydra mode-toggle (:color blue\n :columns 1)\n \"Toggle one of these modes\"\n (\"e\" evil-mode \"Evil mode\")\n (\"w\" whitespace-mode \"Whitespace mode\")\n (\"l\" linum-relative-mode \"Linum relative\")\n (\"c\" color-identifiers-mode \"Color identifiers mode\")\n (\"v\" visual-line-mode \"Visual line mode\")\n (\"p\" projectile-mode \"Projectile\")\n (\"k\" which-key-mode \"Which key\")\n (\"h\" hl-line-mode \"Highlight line\")\n (\"a\" artist-mode \"Artist mode\")\n (\"s\" key-chord-mode \"Key chord mode\")\n (\"q\" nil \"quit\"))\n\n(define-key meta-m-map (kbd \"m\") 'mode-toggle\/body)\n\n;; yaml-mode. mainly for syntax highlighting\n(use-package yaml-mode\n :ensure t ;; seems like overkill\n :config\n (add-to-list 'auto-mode-alist '(\"\\\\.yml\\\\'\" . yaml-mode)))\n\n;; I tried this but I don't really like vim so let's not ensure this\n;; one\n(use-package evil\n :defer t)\n\n(use-package camcorder\n :defer t)\n\n(provide 'setup-modes)\n;;; setup-modes.el ends here\n","subject":"Fix hl-line mode and bind mode hydra to meta-m map","message":"Fix hl-line mode and bind mode hydra to meta-m map\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"137326c97124e8adeabaa314bd8f6b38562da535","old_file":"config\/config-lsp.el","new_file":"config\/config-lsp.el","old_contents":"(defun \/lsp\/activate ()\n (interactive)\n\n (require-package 'lsp-mode)\n (require-package 'lsp-ui)\n (require-package 'lsp-treemacs)\n (require-package 'company-lsp)\n\n (setq lsp-prefer-flymake nil) ;; use flycheck\n (setq lsp-session-file (concat dotemacs-cache-directory \".lsp-session-v1\"))\n (setq lsp-keep-workspace-alive nil)\n\n (setq lsp-ui-doc-include-signature t)\n (setq lsp-ui-doc-header t)\n (setq lsp-ui-doc-position 'top)\n\n (lsp)\n (lsp-treemacs-sync-mode t))\n\n(defun \/lsp\/suggest-project-root ()\n \"Suggests the nearest project that is not a dependency.\"\n (or\n (locate-dominating-file\n (buffer-file-name)\n (lambda (dir)\n (if (string-match-p \"node_modules\" dir)\n nil\n (file-exists-p (concat dir \"package.json\")))))\n (projectile-project-root)))\n\n(after 'lsp-mode\n (advice-add #'lsp--suggest-project-root :override #'\/lsp\/suggest-project-root))\n\n(provide 'config-lsp)\n","new_contents":"(defgroup dotemacs-lsp nil\n \"Configuration options for LSP.\"\n :group 'dotemacs\n :prefix 'dotemacs-lsp)\n\n(defcustom dotemacs-lsp\/inhibit-paths '(\"node_modules\")\n \"A list of paths that should not activate LSP.\"\n :type '(repeat string)\n :group 'dotemacs-lsp)\n\n\f\n\n(defun \/lsp\/activate ()\n (interactive)\n (unless (seq-filter\n (lambda (path)\n (string-match-p path (buffer-file-name)))\n dotemacs-lsp\/inhibit-paths)\n (\/lsp\/do-activate)))\n\n(defun \/lsp\/do-activate ()\n (require-package 'lsp-mode)\n (require-package 'lsp-ui)\n (require-package 'lsp-treemacs)\n (require-package 'company-lsp)\n\n (setq lsp-prefer-flymake nil) ;; use flycheck\n (setq lsp-session-file (concat dotemacs-cache-directory \".lsp-session-v1\"))\n (setq lsp-keep-workspace-alive nil)\n\n (setq lsp-ui-doc-include-signature t)\n (setq lsp-ui-doc-header t)\n (setq lsp-ui-doc-position 'top)\n\n (lsp)\n (lsp-treemacs-sync-mode t))\n\n(defun \/lsp\/suggest-project-root ()\n \"Suggests the nearest project that is not a dependency.\"\n (or\n (locate-dominating-file\n (buffer-file-name)\n (lambda (dir)\n (if (string-match-p \"node_modules\" dir)\n nil\n (file-exists-p (concat dir \"package.json\")))))\n (projectile-project-root)))\n\n(after 'lsp-mode\n (advice-add #'lsp--suggest-project-root :override #'\/lsp\/suggest-project-root))\n\n(provide 'config-lsp)\n","subject":"Add inhibit filter for LSP","message":"Add inhibit filter for LSP\n","lang":"Emacs Lisp","license":"mit","repos":"sameedali\/dotemacs,sameedali\/dotemacs,sameedali\/dotemacs,sameedali\/dotemacs,sameedali\/dotemacs,bling\/dotemacs"} {"commit":"29277c9b02811ede71ff8090a63a8bdb884cd397","old_file":"modules\/ui\/indent-guides\/config.el","new_file":"modules\/ui\/indent-guides\/config.el","old_contents":";;; ui\/indent-guides\/config.el -*- lexical-binding: t; -*-\n\n(def-package! highlight-indent-guides\n :hook ((prog-mode text-mode conf-mode) . highlight-indent-guides-mode)\n :init\n (setq highlight-indent-guides-method 'character\n highlight-indent-guides-responsive 'top)\n :config\n ;; Don't display first level of indentation\n (defun +indent-guides-for-all-but-first-column (level responsive display)\n (unless (< level 1)\n (highlight-indent-guides--highlighter-default level responsive display)))\n (setq highlight-indent-guides-highlighter-function #'+indent-guides-for-all-but-first-column))\n","new_contents":";;; ui\/indent-guides\/config.el -*- lexical-binding: t; -*-\n\n(def-package! highlight-indent-guides\n :hook ((prog-mode text-mode conf-mode) . highlight-indent-guides-mode)\n :init\n (setq highlight-indent-guides-method 'character\n highlight-indent-guides-responsive 'top)\n :config\n ;; Don't display first level of indentation\n (defun +indent-guides-for-all-but-first-column (level responsive display)\n (unless (< level 1)\n (highlight-indent-guides--highlighter-default level responsive display)))\n (setq highlight-indent-guides-highlighter-function #'+indent-guides-for-all-but-first-column)\n\n (defun +indent-guides|disable-maybe ()\n (when highlight-indent-guides\n (highlight-indent-guides -1)))\n ;; `highlight-indent-guides' breaks in `visual-line-mode'\n (add-hook 'visual-line-mode-hook #'+indent-guides|disable-maybe)\n (add-hook 'org-indent-mode-hook #'+indent-guides|disable-maybe))\n","subject":"Disable indent guides in incompatible modes","message":"Disable indent guides in incompatible modes\n\ne.g. visual-line-mode & org-indent-mode\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom"} {"commit":"65d2b0133338a3ae9a5854612ea4076569a8d699","old_file":"modules\/lang\/haskell\/+intero.el","new_file":"modules\/lang\/haskell\/+intero.el","old_contents":";;; lang\/haskell\/+intero.el -*- lexical-binding: t; -*-\n;;;###if (featurep! +intero)\n\n(def-package! intero\n :commands intero-mode\n :init\n (defun +haskell|init-intero ()\n \"Initializes `intero-mode' in haskell-mode, unless stack isn't installed.\nThis is necessary because `intero-mode' doesn't do its own error checks.\"\n (when (derived-mode-p 'haskell-mode)\n (if (executable-find \"intero\")\n (intero-mode +1)\n (message \"Couldn't find intero. Refusing to enable intero-mode.\"))))\n (add-hook 'haskell-mode-hook #'+haskell|init-intero)\n :config\n (set-lookup-handlers! 'intero-mode :definition #'intero-goto-definition))\n","new_contents":";;; lang\/haskell\/+intero.el -*- lexical-binding: t; -*-\n;;;###if (featurep! +intero)\n\n(def-package! intero\n :commands intero-mode\n :init\n (defun +haskell|init-intero ()\n \"Initializes `intero-mode' in haskell-mode, unless stack isn't installed.\nThis is necessary because `intero-mode' doesn't do its own error checks.\"\n (when (derived-mode-p 'haskell-mode)\n (if (executable-find \"stack\")\n (intero-mode +1)\n (message \"Couldn't find stack. Refusing to enable intero-mode.\"))))\n (add-hook 'haskell-mode-hook #'+haskell|init-intero)\n :config\n (set-lookup-handlers! 'intero-mode :definition #'intero-goto-definition))\n","subject":"Revert \"Refuse to enable intero-mode if intero is absent\"","message":"Revert \"Refuse to enable intero-mode if intero is absent\"\n\nThis reverts commit 4f40fef59265d86ee25d458be9c478035b3cd9b4.\n\nThis was short sighted. The intero check doesn't find per-project built\ninstances of intero.\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom"} {"commit":"a1880183efe0bb677dfc10fbaa8005b12a6fae99","old_file":"config\/key_bindings.el","new_file":"config\/key_bindings.el","old_contents":"(global-set-key (kbd \"\") 'toggle-menu-bar-mode-from-frame)\n(global-set-key (kbd \"\") 'neotree-toggle)\n\n(add-hook\n 'neotree-mode-hook\n (lambda ()\n (define-key neotree-mode-map (kbd \"RET\") 'neotree-enter-hide)))\n\n(global-set-key (kbd \"\") 'format-buffer)\n","new_contents":"(global-set-key (kbd \"\") 'toggle-menu-bar-mode-from-frame)\n(global-set-key (kbd \"\") 'neotree-toggle)\n\n(add-hook\n 'neotree-mode-hook\n (lambda ()\n (define-key neotree-mode-map (kbd \"RET\") 'neotree-enter-hide)))\n\n(global-set-key (kbd \"\") 'format-buffer)\n(global-set-key (kbd \"\") 'format-buffer)\n\n(global-set-key (kbd \"\") 'eval-buffer)\n","subject":"Add new keybindings to eval complete buffer and to auto-indent complete buffer","message":"Add new keybindings to eval complete buffer and to auto-indent complete buffer\n","lang":"Emacs Lisp","license":"unlicense","repos":"schanur\/emacs.d"} {"commit":"55104b9f89b13c0d862bad147c96a64d96a92cd5","old_file":"modules\/emacs\/eshell\/autoload\/prompts.el","new_file":"modules\/emacs\/eshell\/autoload\/prompts.el","old_contents":";;; emacs\/eshell\/autoload\/prompts.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(defface +eshell-prompt-pwd '((t :inherit font-lock-constant-face))\n \"TODO\"\n :group 'eshell)\n\n;;;###autoload\n(defface +eshell-prompt-git-branch '((t :inherit font-lock-builtin-face))\n \"TODO\"\n :group 'eshell)\n\n\n(defun +eshell--current-git-branch ()\n (let ((branch (car (cl-loop for match in (split-string (shell-command-to-string \"git branch\") \"\\n\")\n if (string-match-p \"^\\*\" match)\n collect match))))\n (if (not (eq branch nil))\n (format \" [%s]\" (substring branch 2))\n \"\")))\n\n;;;###autoload\n(defun +eshell-default-prompt ()\n \"Generate the prompt string for eshell. Use for `eshell-prompt-function'.\"\n (concat (if (bobp) \"\" \"\\n\")\n (propertize (abbreviate-file-name (shrink-path-file (eshell\/pwd)))\n 'face '+eshell-prompt-pwd)\n (propertize (+eshell--current-git-branch)\n 'face '+eshell-prompt-git-branch)\n (propertize \" λ\" 'face (if (zerop eshell-last-command-status) 'success 'error))\n \" \"))\n","new_contents":";;; emacs\/eshell\/autoload\/prompts.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(defface +eshell-prompt-pwd '((t :inherit font-lock-constant-face))\n \"TODO\"\n :group 'eshell)\n\n;;;###autoload\n(defface +eshell-prompt-git-branch '((t :inherit font-lock-builtin-face))\n \"TODO\"\n :group 'eshell)\n\n\n(defun +eshell--current-git-branch ()\n (let ((branch (car (cl-loop for match in (split-string (shell-command-to-string \"git branch\") \"\\n\")\n if (string-match-p \"^\\*\" match)\n collect match))))\n (if (not (eq branch nil))\n (format \" [%s]\" (substring branch 2))\n \"\")))\n\n;;;###autoload\n(defun +eshell-default-prompt ()\n \"Generate the prompt string for eshell. Use for `eshell-prompt-function'.\"\n (concat (if (bobp) \"\" \"\\n\")\n (let ((pwd (eshell\/pwd)))\n (propertize (if (equal pwd \"~\")\n pwd\n (abbreviate-file-name (shrink-path-file pwd)))\n 'face '+eshell-prompt-pwd))\n (propertize (+eshell--current-git-branch)\n 'face '+eshell-prompt-git-branch)\n (propertize \" λ\" 'face (if (zerop eshell-last-command-status) 'success 'error))\n \" \"))\n","subject":"Fix \"home\/~\" PWD in eshell prompt","message":"Fix \"home\/~\" PWD in eshell prompt\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d"} {"commit":"69631691fb73fda5a06cec8194ebee3755ba61b9","old_file":"setup-files\/setup-markdown.el","new_file":"setup-files\/setup-markdown.el","old_contents":";; Time-stamp: <2015-11-05 13:12:37 kmodi>\n\n;; Markdown Mode\n;; http:\/\/jblevins.org\/projects\/markdown-mode\/\n\n(use-package markdown-mode\n :mode ((\"\\\\.md\\\\'\" . markdown-mode)\n (\"\\\\.markdown\\\\'\" . markdown-mode))\n :config\n (progn\n ;; http:\/\/daringfireball.net\/projects\/markdown\/\n ;; Download the Markdown source from above, extract the .pl from that\n ;; and place it in one of the folders in the environment PATH\n (setq markdown-command \"Markdown.pl\")\n\n ;; https:\/\/github.com\/cadadr\/emacs.d\n (defun gk-markdown-preview-buffer ()\n (interactive)\n (require 'shr)\n (let* ((buf-this (buffer-name (current-buffer)))\n (buf-html (get-buffer-create\n (format \"*md-html (%s)*\" buf-this))))\n (markdown-other-window (buffer-name buf-html))\n (shr-render-buffer buf-html)\n (eww-mode)\n (kill-buffer buf-html)))\n\n (bind-keys\n :map markdown-mode-map\n ;; Mimicking the org-export style bindings\n (\"C-c C-e o\" . gk-markdown-preview-buffer))))\n\n\n(provide 'setup-markdown)\n\n;; C-c C-s C-p - `markdown-pre-region'\n;; Indent the selected region 4 spaces to the right\n;; (code block formatting used on reddit, stackexchange, etc.)\n","new_contents":";; Time-stamp: <2016-01-19 22:40:31 kmodi>\n\n;; Markdown Mode\n;; http:\/\/jblevins.org\/projects\/markdown-mode\/\n\n(use-package markdown-mode\n :mode ((\"\\\\.md\\\\'\" . markdown-mode)\n (\"\\\\.markdown\\\\'\" . markdown-mode))\n :config\n (progn\n ;; http:\/\/daringfireball.net\/projects\/markdown\/\n ;; Download the Markdown source from above, extract the .pl from that\n ;; and place it in one of the folders in the environment PATH\n (when (executable-find \"Markdown.pl\")\n (setq markdown-command \"Markdown.pl\"))\n\n ;; https:\/\/github.com\/cadadr\/emacs.d\n (defun gk-markdown-preview-buffer ()\n (interactive)\n (require 'shr)\n (let* ((buf-this (buffer-name (current-buffer)))\n (buf-html (get-buffer-create\n (format \"*md-html (%s)*\" buf-this))))\n (markdown-other-window (buffer-name buf-html))\n (shr-render-buffer buf-html)\n (eww-mode)\n (kill-buffer buf-html)))\n\n (bind-keys\n :map markdown-mode-map\n ;; Mimicking the org-export style bindings\n (\"C-c C-e o\" . gk-markdown-preview-buffer))))\n\n\n(provide 'setup-markdown)\n\n;; C-c C-s C-p - `markdown-pre-region'\n;; Indent the selected region 4 spaces to the right\n;; (code block formatting used on reddit, stackexchange, etc.)\n","subject":"Check if Markdown.pl is available first","message":"Check if Markdown.pl is available first\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"200c7143ab714f6b07763f9ce365bc91413ce803","old_file":"emacs\/lisp\/05-autocomplete.el","new_file":"emacs\/lisp\/05-autocomplete.el","old_contents":"\n(add-hook 'after-init-hook \n ;;; Load yasnippet first to avoid precedence issues\n (lambda () \n (use-package yasnippet\n :init\n (progn\n (yas-global-mode 1)))\n )\n\n ((lambda () \n (use-package auto-complete-config\n :init\n (progn\n (setq ac-comphist-file emacs-acomphistfile-file)\n (setq ac-auto-start nil)\n (setq ac-quick-help-delay 0.5)\n\n (add-to-list 'ac-dictionary-directories emacs-autocompletedict)\n (ac-config-default)\n (ac-set-trigger-key \"TAB\")\n (define-key ac-mode-map [(control tab)] 'auto-complete)\n (setq-default ac-sources '(ac-source-yasnippet\n ac-source-abbrev\n ac-source-dictionary\n ac-source-words-in-same-mode-buffers))\n (add-hook 'emacs-lisp-mode-hook 'ac-emacs-lisp-mode-setup)\n (add-hook 'c-mode-common-hook 'ac-cc-mode-setup)\n (add-hook 'ruby-mode-hook 'ac-ruby-mode-setup)\n (add-hook 'css-mode-hook 'ac-css-mode-setup)\n (add-hook 'auto-complete-mode-hook 'ac-common-setup)\n (global-auto-complete-mode t)))\n )))\n\n","new_contents":"; load yasnippet\n (add-hook 'after-init-hook\n ; Load yasnippet first to avoid precedence issues\n (lambda () \n (use-package yasnippet\n :init\n (progn\n (yas-global-mode 1)))))\n\n; load auto-complete-config\n (add-hook 'after-init-hook\n (lambda () \n (use-package auto-complete-config\n :init\n (progn\n (setq ac-comphist-file emacs-acomphistfile-file)\n (setq ac-auto-start nil)\n (setq ac-quick-help-delay 0.5)\n\n (add-to-list 'ac-dictionary-directories emacs-autocompletedict)\n (ac-config-default)\n (ac-set-trigger-key \"TAB\")\n (define-key ac-mode-map [(control tab)] 'auto-complete)\n (setq-default ac-sources '(ac-source-yasnippet\n ac-source-abbrev\n ac-source-dictionary\n ac-source-words-in-same-mode-buffers))\n (add-hook 'emacs-lisp-mode-hook 'ac-emacs-lisp-mode-setup)\n (add-hook 'c-mode-common-hook 'ac-cc-mode-setup)\n (add-hook 'ruby-mode-hook 'ac-ruby-mode-setup)\n (add-hook 'css-mode-hook 'ac-css-mode-setup)\n (add-hook 'auto-complete-mode-hook 'ac-common-setup)\n (global-auto-complete-mode t)))))\n","subject":"Split single add-hook lambda into 2. Moved some ac settings into use-package.","message":"Split single add-hook lambda into 2. Moved some ac settings into use-package.\n","lang":"Emacs Lisp","license":"mit","repos":"skk\/dotfiles,skk\/dotfiles"} {"commit":"51014a4045fd1c5e589929dae8ccbc49d8edd90d","old_file":"config\/color_theme.el","new_file":"config\/color_theme.el","old_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n;; (set-face-foreground 'mode-line \"black\")\n;; (set-face-background 'mode-line \"purple\")\n;; (set-face-background 'mode-line-inactive \"blue\")\n;; (set-face-background 'modeline-inactive \"red\")\n\n;; (setq custom-enabled-themes \"hipster\")\n;; (setq custom-safe-themes \"hipster\")\n;; (custom-safe-themes 'hipster-theme)\n(load-theme 'zenburn)\n\n(custom-set-faces\n ;; '(neo-dir-link-face ((t (:foreground \"yellow\"))))\n '(neo-dir-link-face ((t (:foreground \"color-64\"))))\n '(neo-file-link-face ((t (:foreground \"color-244\")))))\n","new_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n;; (set-face-foreground 'mode-line \"black\")\n;; (set-face-background 'mode-line \"purple\")\n;; (set-face-background 'mode-line-inactive \"blue\")\n;; (set-face-background 'modeline-inactive \"red\")\n\n;; (setq custom-enabled-themes \"hipster\")\n;; (setq custom-safe-themes \"hipster\")\n;; (custom-safe-themes 'hipster-theme)\n\n\n(load-theme 'badger)\n\n(custom-set-faces\n ;; '(neo-dir-link-face ((t (:foreground \"yellow\"))))\n ;; '(neo-dir-link-face ((t (:foreground \"color-64\"))))\n ;; '(neo-file-link-face ((t (:foreground \"color-244\")))))\n","subject":"Use theme with more contrast","message":"Use theme with more contrast\n","lang":"Emacs Lisp","license":"unlicense","repos":"schanur\/emacs.d"} {"commit":"e091aebd9d2a89dcd1db2a13285d4c0de2f74e0a","old_file":"emacs\/emacs.d.symlink\/init.el","new_file":"emacs\/emacs.d.symlink\/init.el","old_contents":"(require 'package)\n(add-to-list 'package-archives\n '(\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\") t)\n(package-initialize)\n\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n(defvar my-packages '(starter-kit starter-kit-ruby starter-kit-js\n starter-kit-lisp starter-kit-bindings\n solarized-theme)\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (p my-packages)\n (when (not (package-installed-p p))\n (package-install p)))\n\n(load-theme 'solarized-dark t)\n\n(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(custom-safe-themes (quote (\"501caa208affa1145ccbb4b74b6cd66c3091e41c5bb66c677feda9def5eab19c\" default))))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":"(require 'package)\n(add-to-list 'package-archives\n '(\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\") t)\n(package-initialize)\n\n(when (not package-archive-contents)\n (package-refresh-contents))\n\n(defvar my-packages '(starter-kit\n starter-kit-ruby\n starter-kit-js\n starter-kit-lisp\n starter-kit-bindings\n solarized-theme\n erlang\n haskell-mode\n evil\n evil-leader)\n \"A list of packages to ensure are installed at launch.\")\n\n(dolist (p my-packages)\n (when (not (package-installed-p p))\n (package-install p)))\n\n(load-theme 'solarized-dark t)\n\n(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(custom-safe-themes (quote (\"501caa208affa1145ccbb4b74b6cd66c3091e41c5bb66c677feda9def5eab19c\" default))))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Add Erlang & Haskell support to Emacs","message":"Add Erlang & Haskell support to Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"jcf\/ansible-dotfiles,jcf\/ansible-dotfiles,jcf\/ansible-dotfiles,jcf\/ansible-dotfiles,jcf\/ansible-dotfiles"} {"commit":"c69a85c8030a5c2f3cd98b7b00f244a963447c59","old_file":"modules\/lang\/kotlin\/config.el","new_file":"modules\/lang\/kotlin\/config.el","old_contents":";;; lang\/kotlin\/config.el -*- lexical-binding: t; -*-\n\n(after! kotlin-mode\n (set-docsets! 'kotlin-mode \"Kotlin\")\n\n (map! :map kotlin-mode-map\n :localleader\n :prefix (\"b\" . \"build\")\n :desc \"gradlew assemble\" \"a\" (λ! (+kotlin\/run-gradlew \"assemble\"))\n :desc \"gradlew build\" \"b\" (λ! (+kotlin\/run-gradlew \"build\"))\n :desc \"gradlew test\" \"t\" (λ! (+kotlin\/run-gradlew \"test\"))))\n\n\n(use-package! flycheck-kotlin\n :when (featurep! :tools flycheck)\n :hook (kotlin-mode . flycheck-kotlin-setup))\n","new_contents":";;; lang\/kotlin\/config.el -*- lexical-binding: t; -*-\n\n(use-package! kotlin-mode\n :init \n (when (featurep! +lsp)\n (add-hook 'kotlin-mode-local-vars-hook #'lsp!)))\n\n(after! kotlin-mode\n (set-docsets! 'kotlin-mode \"Kotlin\")\n\n (map! :map kotlin-mode-map\n :localleader\n :prefix (\"b\" . \"build\")\n :desc \"gradlew assemble\" \"a\" (λ! (+kotlin\/run-gradlew \"assemble\"))\n :desc \"gradlew build\" \"b\" (λ! (+kotlin\/run-gradlew \"build\"))\n :desc \"gradlew test\" \"t\" (λ! (+kotlin\/run-gradlew \"test\"))))\n\n\n(use-package! flycheck-kotlin\n :when (featurep! :tools flycheck)\n :hook (kotlin-mode . flycheck-kotlin-setup))\n","subject":"Add LSP support to Kotlin","message":"Add LSP support to Kotlin\n\n`lsp-mode` has built in support for Kotlin. This makes it automatically used if you use the `+lsp` flag.","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs"} {"commit":"08d398e5d3a1e104df0ae28e1293f81ab2da5ec8","old_file":"setup-files\/setup-hungry-delete.el","new_file":"setup-files\/setup-hungry-delete.el","old_contents":";; Time-stamp: <2016-07-19 17:26:52 kmodi>\n\n;; Hungry Delete\n;; https:\/\/github.com\/nflath\/hungry-delete\n\n(use-package hungry-delete\n :config\n (progn\n (setq hungry-delete-chars-to-skip \" \\t\\r\\f\\v\")\n\n (defun modi\/turn-off-hungry-delete-mode ()\n \"Turn off hungry delete mode.\"\n (hungry-delete-mode -1))\n\n ;; Enable `hungry-delete-mode' everywhere ..\n (global-hungry-delete-mode)\n\n ;; Except ..\n ;; `hungry-delete-mode'-loaded backspace does not work in `wdired-mode',\n ;; i.e. when editing file names in the *Dired* buffer.\n (add-hook 'wdired-mode-hook #'modi\/turn-off-hungry-delete-mode)))\n\n\n(provide 'setup-hungry-delete)\n","new_contents":";; Time-stamp: <2016-11-21 08:46:41 kmodi>\n\n;; Hungry Delete\n;; https:\/\/github.com\/nflath\/hungry-delete\n\n(use-package hungry-delete\n :config\n (progn\n (setq hungry-delete-chars-to-skip \" \\t\\r\\f\\v\")\n\n ;; Mon Nov 21 08:45:42 EST 2016 - kmodi\n ;; Override the default definitions of `hungry-delete-skip-ws-forward' and\n ;; `hungry-delete-skip-ws-backward'; do not delete back-slashes at EOL.\n (defun hungry-delete-skip-ws-forward ()\n \"Skip over any whitespace following point.\nThis function skips over horizontal and vertical whitespace.\"\n (skip-chars-forward hungry-delete-chars-to-skip)\n (while (get-text-property (point) 'read-only)\n (backward-char)))\n\n (defun hungry-delete-skip-ws-backward ()\n \"Skip over any whitespace preceding point.\nThis function skips over horizontal and vertical whitespace.\"\n (skip-chars-backward hungry-delete-chars-to-skip)\n (while (get-text-property (point) 'read-only)\n (forward-char)))\n\n (defun modi\/turn-off-hungry-delete-mode ()\n \"Turn off hungry delete mode.\"\n (hungry-delete-mode -1))\n\n ;; Enable `hungry-delete-mode' everywhere ..\n (global-hungry-delete-mode)\n\n ;; Except ..\n ;; `hungry-delete-mode'-loaded backspace does not work in `wdired-mode',\n ;; i.e. when editing file names in the *Dired* buffer.\n (add-hook 'wdired-mode-hook #'modi\/turn-off-hungry-delete-mode)))\n\n\n(provide 'setup-hungry-delete)\n","subject":"Patch hungry-delete functions: Do not auto delete EOL back-slashes","message":"Patch hungry-delete functions: Do not auto delete EOL back-slashes\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"aa5b252786f5bbf00962da29b36cfc08b563de53","old_file":"layers\/+vim\/evil-snipe\/packages.el","new_file":"layers\/+vim\/evil-snipe\/packages.el","old_contents":"(setq evil-snipe-packages '(evil-snipe))\n\n(defun evil-snipe\/init-evil-snipe ()\n (use-package evil-snipe\n :diminish evil-snipe-local-mode\n :init\n (setq evil-snipe-scope 'whole-buffer\n evil-snipe-enable-highlight t\n evil-snipe-enable-incremental-highlight t\n evil-snipe-auto-disable-substitute t\n evil-snipe-show-prompt nil\n evil-snipe-smart-case t)\n :config\n (progn\n (evil-snipe-mode 1)\n (if (configuration-layer\/layer-usedp 'git)\n (progn\n (add-hook 'magit-mode-hook 'turn-off-evil-snipe-override-mode)\n (add-hook 'git-rebase-mode-hook 'turn-off-evil-snipe-override-mode)))\n (when evil-snipe-enable-alternate-f-and-t-behaviors\n (setq evil-snipe-repeat-scope 'whole-buffer)\n (evil-snipe-override-mode 1)))))\n","new_contents":"(setq evil-snipe-packages '(evil-snipe))\n\n(defun evil-snipe\/init-evil-snipe ()\n (use-package evil-snipe\n :diminish evil-snipe-local-mode\n :init\n (setq evil-snipe-scope 'whole-buffer\n evil-snipe-enable-highlight t\n evil-snipe-enable-incremental-highlight t\n evil-snipe-auto-disable-substitute t\n evil-snipe-show-prompt nil\n evil-snipe-smart-case t)\n :config\n (progn\n (if evil-snipe-enable-alternate-f-and-t-behaviors\n (progn\n (setq evil-snipe-repeat-scope 'whole-buffer)\n (evil-snipe-override-mode 1)\n (when (configuration-layer\/layer-usedp 'git)\n (add-hook 'magit-mode-hook 'turn-off-evil-snipe-override-mode)\n (add-hook 'git-rebase-mode-hook 'turn-off-evil-snipe-override-mode)))\n (evil-snipe-mode 1)\n (when (configuration-layer\/layer-usedp 'git)\n (add-hook 'magit-mode-hook 'turn-off-evil-snipe-mode)\n (add-hook 'git-rebase-mode-hook 'turn-off-evil-snipe-mode))))))\n","subject":"Use separate hooks for override mode","message":"evil-snipe: Use separate hooks for override mode\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"7cf284616708aa10c416cb8913cc83b177d740a3","old_file":"mfa-mwim\/packages.el","new_file":"mfa-mwim\/packages.el","old_contents":"(defconst mfa-mwim-packages '(mwim))\n\n(defun mfa-mwim\/init-mwim ()\n (use-package mwim\n :defer t\n :init\n (progn\n (global-set-key (kbd \"C-a\") #'mwim-beginning-of-code-or-line)\n (global-set-key (kbd \"C-e\") #'mwim-end-of-code-or-line)\n (global-set-key (kbd \"\") #'mwim-beginning-of-line-or-code)\n (global-set-key (kbd \"\") #'mwim-end-of-line-or-code)\n (with-eval-after-load 'evil\n (define-key evil-normal-state-map (kbd \"C-e\") #'mwim-end-of-line-or-code)\n (define-key evil-motion-state-map (kbd \"C-e\") #'mwim-end-of-line-or-code)\n (define-key evil-insert-state-map (kbd \"C-e\") #'mwim-end-of-line-or-code)\n (define-key evil-visual-state-map (kbd \"C-e\") #'mwim-end-of-line-or-code)))))\n","new_contents":"(defconst mfa-mwim-packages '(mwim))\n\n(defun mfa-mwim\/init-mwim ()\n (use-package mwim\n :defer t\n :init\n (progn\n (global-set-key (kbd \"C-a\") #'mwim-beginning)\n (global-set-key (kbd \"C-e\") #'mwim-end)\n (global-set-key (kbd \"\") #'mwim-beginning)\n (global-set-key (kbd \"\") #'mwim-end)\n (with-eval-after-load 'evil\n (define-key evil-normal-state-map (kbd \"C-e\") #'mwim-end)\n (define-key evil-motion-state-map (kbd \"C-e\") #'mwim-end)\n (define-key evil-insert-state-map (kbd \"C-e\") #'mwim-end)\n (define-key evil-visual-state-map (kbd \"C-e\") #'mwim-end)\n (evil-declare-motion 'mwim-beginning)\n (evil-declare-motion 'mwim-end)))))\n","subject":"Make mwim motions play nice with evil repeat","message":"Make mwim motions play nice with evil repeat\n\nAlso leave it up to mwim to choose where exactly to move to.\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"d84a097947b9b1d0945a7073ed16cb3d75eb3a3f","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +prescient +fuzzy)\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n treemacs\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n vc\n\n :tools\n lookup\n eval\n make\n magit\n lsp\n editorconfig\n pdf\n ein\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +lsp)\n (org\n +attach\n +babel\n +export)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp)\n (fsharp +lsp)\n (javascript +lsp)\n rest\n\n :checkers\n spell\n syntax\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n )\n\n\n;; Needs to be set early so it can't go into config\n(setq evil-respect-visual-line-mode t)\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n (ivy +icons +prescient +fuzzy)\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n treemacs\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n zen\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n vc\n\n :tools\n lookup\n eval\n make\n magit\n (lsp +peek)\n editorconfig\n pdf\n ein\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (haskell +lsp)\n (org\n +attach\n +babel\n +export)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk +viewers)\n (python +lsp)\n (fsharp +lsp)\n (javascript +lsp)\n rest\n\n :checkers\n spell\n syntax\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n )\n\n\n;; Needs to be set early so it can't go into config\n(setq evil-respect-visual-line-mode t)\n","subject":"Enable +peek in lsp module","message":"Enable +peek in lsp module\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"c5fa30b51ee6581cd6bda5c35ebe1b1aa1c628bd","old_file":".emacs.d\/lisp\/package\/dependencies.el","new_file":".emacs.d\/lisp\/package\/dependencies.el","old_contents":"(defvar kotct\/dependency-list\n '(linum-off ;; turn linum off in certain modes\n ido-vertical-mode ;; use vertical menus for ido\n ido-grid-mode ;; use a grid selection menu for ido\n smex ;; ido-enabled M-x\n anzu ;; nicer search environment\n volatile-highlights ;; highlight changed areas\n buffer-move ;; easily move buffers between windows\n expand-region ;; expand region to successively larger sexps\n magit ;; make Git and Emacs both way cooler\n auto-complete ;; code autocompletion\n markdown-mode ;; major mode for markdown\n smart-tabs-mode ;; indentation with tabs and spaces\n ace-jump-mode ;; immediately jump to any visible character\n ace-jump-zap ;; zap-to-char but harnessing ace-jump\n\n ;; THEMES\n solarized-theme)\n \"A list of all packages required for operation.\")\n\n(provide 'dependencies)\n","new_contents":"(defvar kotct\/dependency-list\n '(linum-off ;; turn linum off in certain modes\n ido-vertical-mode ;; use vertical menus for ido\n ido-grid-mode ;; use a grid selection menu for ido\n smex ;; ido-enabled M-x\n anzu ;; nicer search environment\n volatile-highlights ;; highlight changed areas\n buffer-move ;; easily move buffers between windows\n expand-region ;; expand region to successively larger sexps\n magit ;; make Git and Emacs both way cooler\n auto-complete ;; code autocompletion\n markdown-mode ;; major mode for markdown\n smart-tabs-mode ;; indentation with tabs and spaces\n ace-jump-mode ;; immediately jump to any visible character\n ace-jump-zap ;; zap-to-char but harnessing ace-jump\n hl-todo ;; highlight TODO, FIXME, FAIL, etc.\n\n ;; THEMES\n solarized-theme)\n \"A list of all packages required for operation.\")\n\n(provide 'dependencies)\n","subject":"Add hl-todo as a dependency","message":"Add hl-todo as a dependency\n","lang":"Emacs Lisp","license":"mit","repos":"kotct\/dot,kotct\/dot"} {"commit":"facd83a54b208e7a01b9cfbb91772bccb23a773e","old_file":"modules\/ui\/doom-dashboard\/autoload.el","new_file":"modules\/ui\/doom-dashboard\/autoload.el","old_contents":";;; ui\/doom-dashboard\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(defun +doom-dashboard\/open (frame)\n \"Switch to the dashboard in the current window, of the current FRAME.\"\n (interactive (list (selected-frame)))\n (with-selected-frame frame\n (switch-to-buffer (doom-fallback-buffer))\n (+doom-dashboard-reload)))\n","new_contents":";;; ui\/doom-dashboard\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(defun +doom-dashboard\/open (frame)\n \"Switch to the dashboard in the current window, of the current FRAME.\"\n (interactive (list (selected-frame)))\n (with-selected-frame frame\n (switch-to-buffer (doom-fallback-buffer))))\n","subject":"Remove redundant reload in +doom-dashboard\/open","message":"Remove redundant reload in +doom-dashboard\/open\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d"} {"commit":"27841643714cc1ac76b140018bcc4ea67fa81bae","old_file":"user-lisp\/eshell-customisations.el","new_file":"user-lisp\/eshell-customisations.el","old_contents":"(require 'em-cmpl)\n\n;; Auto-complete in eshell should stop at the first ambiguity.\n(setq eshell-cmpl-cycle-completions nil)\n\n(defadvice eshell (around eshell-append-cwd (&optional arg) activate)\n \"New eshell buffers should be named according to their working directory.\"\n (interactive \"P\")\n (if (and arg (not (numberp arg)))\n ;; Non-numeric prefix arg given, change the eshell buffer name.\n (let* ((current-dir (f-parent (buffer-file-name)))\n (eshell-buffer-name (format \"*eshell*<%s>\" current-dir)))\n ad-do-it)\n ;; Otherwise, continue as normal\n ad-do-it))\n\n(provide 'eshell-customisations)\n","new_contents":"(require 'em-cmpl)\n\n;; Auto-complete in eshell should stop at the first ambiguity.\n(setq eshell-cmpl-cycle-completions nil)\n\n(defadvice eshell (around eshell-append-cwd (&optional arg) activate)\n \"New eshell buffers should be named according to their working directory.\"\n (interactive \"P\")\n (if (and arg (not (numberp arg)))\n ;; Non-numeric prefix arg given, change the eshell buffer name.\n (let* ((eshell-buffer-name (format \"*eshell*<%s>\" default-directory)))\n ad-do-it)\n ;; Otherwise, continue as normal\n ad-do-it))\n\n(provide 'eshell-customisations)\n","subject":"Use default-directory to find which directory to use.","message":"Use default-directory to find which directory to use.\n\ndired buffers return nil for (buffer-file-name).\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"9d488b4036aafb1bad13f773be34aa6ed6b631bf","old_file":".emacs.d\/config\/global\/eshell.el","new_file":".emacs.d\/config\/global\/eshell.el","old_contents":";;; eshell.el --- Configuration for Eshell\n\n\n\n;;; Commentary:\n\n\n\n;;; Code:\n\n\n\n;;; eshell.el ends here\n","new_contents":";;; eshell.el --- Configuration for Eshell\n\n\n\n;;; Commentary:\n;; Load and configure Eshell with smart mode\n\n\n\n;;; Code:\n\n;; Load Eshell and Smart mode\n(require 'eshell)\n(require 'em-smart)\n\n;; Settings\n(setq eshell-where-to-jump 'begin)\n(setq eshell-review-quick-commands nil)\n(setq eshell-smart-space-goes-to-end t)\n\n\n\n;;; eshell.el ends here\n","subject":"Configure Eshell and smart display","message":"Configure Eshell and smart display\n","lang":"Emacs Lisp","license":"mit","repos":"madintist\/emacs-config"} {"commit":"0ec385c60c0822038a7c9976638b3cd0b00fd0a5","old_file":"layers\/+tools\/ranger\/packages.el","new_file":"layers\/+tools\/ranger\/packages.el","old_contents":";;; packages.el --- ranger Layer packages File for Spacemacs\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Rich Alesi\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(setq ranger-packages '(dired\n ranger))\n\n(defun ranger\/init-ranger ()\n (use-package ranger\n :defer t\n :init\n (progn\n ;; set up image-dired to allow picture resize\n (setq image-dired-dir (concat spacemacs-cache-directory \"image-dir\"))\n (unless (file-directory-p image-dired-dir)\n (make-directory image-dired-dir)))\n :config\n (define-key ranger-mode-map (kbd \"-\") 'ranger-up-directory)))\n\n(defun ranger\/post-init-dired ()\n (spacemacs\/set-leader-keys\n \"ar\" 'ranger\n \"ad\" 'deer))\n","new_contents":";;; packages.el --- ranger Layer packages File for Spacemacs\n;;\n;; Copyright (c) 2012-2016 Sylvain Benner & Contributors\n;;\n;; Author: Rich Alesi\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(setq ranger-packages '(dired\n ranger))\n\n(defun ranger\/\/set-leader-keys ()\n (spacemacs\/set-leader-keys\n \"ar\" 'ranger\n \"ad\" 'deer))\n\n(defun ranger\/init-ranger ()\n (use-package ranger\n :defer t\n :init\n (progn\n (ranger\/\/set-leader-keys)\n ;; set up image-dired to allow picture resize\n (setq image-dired-dir (concat spacemacs-cache-directory \"image-dir\"))\n (unless (file-directory-p image-dired-dir)\n (make-directory image-dired-dir)))\n :config\n (define-key ranger-mode-map (kbd \"-\") 'ranger-up-directory)))\n\n(defun ranger\/post-init-dired ()\n ;; Be sure to override dired bindings\n (ranger\/\/set-leader-keys))\n","subject":"Fix misplaced keybinding definition for ranger","message":"Fix misplaced keybinding definition for ranger\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"12a790e62958e89793a3e762ad3e0ec278924b09","old_file":"custom\/51-undo-tree.el","new_file":"custom\/51-undo-tree.el","old_contents":"(use-package undo-tree)\n;; undo\n(add-hook 'ruby-mode-hook 'undo-tree-mode)\n","new_contents":"(use-package undo-tree\n :init\n (add-hook 'ruby-mode-hook 'undo-tree-mode)\n :defer)\n\n","subject":"Convert undo tree into use-package format.","message":"Convert undo tree into use-package format.\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"fd6feeca2d3c73b8000b80cdccf07dfb07064ab1","old_file":"init.el","new_file":"init.el","old_contents":";; Set some variables based on environment\n;; Are we on a mac?\n(setq is-mac (equal system-type 'darwin))\n\n;; Turn off mouse interface early in startup to avoid momentary display\n;;;; Do show menu bar (running as cocoa app)\n;;;; TODO turn of menu bar when running emacs from terminal\n;;(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))\n(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))\n(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))\n\n;; No splash screen\n(setq inhibit-startup-message t)\n\n;; Set up load path\n(setq loadpath-mine (expand-file-name \"conf\" user-emacs-directory))\n(add-to-list 'load-path loadpath-mine)\n\n(require '_packages)\n(require '_global)\n(require '_appearance)\n(require '_key_bindings)\n\n(require 'theme-park-mode)\n\n;; Functions (load all files in defuns-dir)\n(setq defuns-dir (expand-file-name \"defuns\" user-emacs-directory))\n(dolist (file (directory-files defuns-dir t \"\\\\w+\"))\n (when (file-regular-p file)\n (load file)))\n\n(when is-mac (require '_mac))\n","new_contents":";; Set some variables based on environment\n;; Are we on a mac?\n(setq is-mac (equal system-type 'darwin))\n\n;; Turn off mouse interface early in startup to avoid momentary display\n;;;; Do show menu bar (running as cocoa app)\n;;;; TODO turn of menu bar when running emacs from terminal\n;;(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))\n(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))\n(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))\n\n;; No splash screen\n(setq inhibit-startup-message t)\n\n;; Set up load path\n(setq loadpath-mine (expand-file-name \"conf\" user-emacs-directory))\n(setq loadpath-vendor (expand-file-name \"vendor\" user-emacs-directory))\n\n(add-to-list 'load-path loadpath-mine)\n(add-to-list 'load-path loadpath-vendor)\n\n;;;; add projects from vendor..\n(dolist (project (directory-files loadpath-vendor t \"\\\\w+\"))\n (when (file-directory-p project)\n (add-to-list 'load-path project)))\n\n\n(require '_packages)\n(require '_global)\n(require '_appearance)\n(require '_key_bindings)\n\n(require 'theme-park-mode)\n\n;; Functions (load all files in defuns-dir)\n(setq defuns-dir (expand-file-name \"defuns\" user-emacs-directory))\n(dolist (file (directory-files defuns-dir t \"\\\\w+\"))\n (when (file-regular-p file)\n (load file)))\n\n(when is-mac (require '_mac))\n","subject":"Add vendor to load path","message":"Add vendor to load path\n","lang":"Emacs Lisp","license":"unlicense","repos":"jeroentbt\/.emacs.d"} {"commit":"58100c5fd3240e861d2f39c6ee164981584776fd","old_file":"init-package\/init-rainbow-identifiers.el","new_file":"init-package\/init-rainbow-identifiers.el","old_contents":"(use-package rainbow-identifiers\n :init\n (progn (add-hook 'prog-mode-hook 'rainbow-identifiers-mode)))\n","new_contents":"(use-package rainbow-identifiers\n :init\n (add-to-hooks 'rainbow-identifiers-mode '(prog-mode-hook erlang-mode-hook)))\n","subject":"Add rainbow identifiers to erlang-mode","message":"Add rainbow identifiers to erlang-mode\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"15f35d4d3291b8a62489745cc650d993302547c9","old_file":"init-package\/init-git-gutter-fringe.el","new_file":"init-package\/init-git-gutter-fringe.el","old_contents":"(use-package git-gutter-fringe\n :commands git-gutter-mode\n :init\n (add-to-hooks 'git-gutter-mode '(erlang-mode-hook\n org-mode-hook\n prog-mode-hook\n ))\n :config\n (progn\n (setq git-gutter:hide-gutter t)\n ;; Don't need log\/message.\n (setq git-gutter:verbosity 0)\n (setq git-gutter-fr:side 'right-fringe)\n ;; (setq git-gutter:update-hooks '(after-save-hook after-revert-hook))\n ;; custom graphics that works nice with half-width fringes\n (fringe-helper-define 'git-gutter-fr:added nil\n \"..X....\"\n \"..X....\"\n \"XXXXX..\"\n \"..X....\"\n \"..X....\"\n )\n (fringe-helper-define 'git-gutter-fr:deleted nil\n \".......\"\n \".......\"\n \"XXXXX..\"\n \".......\"\n \".......\"\n )\n (fringe-helper-define 'git-gutter-fr:modified nil\n \"..X....\"\n \".XXX...\"\n \"XXXXX..\"\n \".XXX...\"\n \"..X....\"\n )))\n\n","new_contents":"(use-package git-gutter-fringe\n :commands git-gutter-mode\n :init\n (add-to-hooks 'git-gutter-mode '(erlang-mode-hook\n markdown-mode-hook\n org-mode-hook\n prog-mode-hook\n ))\n :config\n (progn\n (setq git-gutter:hide-gutter t)\n ;; Don't need log\/message.\n (setq git-gutter:verbosity 0)\n (setq git-gutter-fr:side 'right-fringe)\n ;; (setq git-gutter:update-hooks '(after-save-hook after-revert-hook))\n ;; custom graphics that works nice with half-width fringes\n (fringe-helper-define 'git-gutter-fr:added nil\n \"..X....\"\n \"..X....\"\n \"XXXXX..\"\n \"..X....\"\n \"..X....\"\n )\n (fringe-helper-define 'git-gutter-fr:deleted nil\n \".......\"\n \".......\"\n \"XXXXX..\"\n \".......\"\n \".......\"\n )\n (fringe-helper-define 'git-gutter-fr:modified nil\n \"..X....\"\n \".XXX...\"\n \"XXXXX..\"\n \".XXX...\"\n \"..X....\"\n )))\n\n","subject":"Add git-gutter-fringe to markdown mode hook","message":"Add git-gutter-fringe to markdown mode hook\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"5a13ebd929ec9e273fa9c60676375cd309d587d8","old_file":"lisp\/init-locales.el","new_file":"lisp\/init-locales.el","old_contents":";;; init-locales.el --- Configure default locale -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(defun sanityinc\/utf8-locale-p (v)\n \"Return whether locale string V relates to a UTF-8 locale.\"\n (and v (string-match-p \"UTF-8\" v)))\n\n(defun sanityinc\/locale-is-utf8-p ()\n \"Return t iff the \\\"locale\\\" command or environment variables prefer UTF-8.\"\n (or (sanityinc\/utf8-locale-p (and (executable-find \"locale\") (shell-command-to-string \"locale\")))\n (sanityinc\/utf8-locale-p (getenv \"LC_ALL\"))\n (sanityinc\/utf8-locale-p (getenv \"LC_CTYPE\"))\n (sanityinc\/utf8-locale-p (getenv \"LANG\"))))\n\n(when (or window-system (sanityinc\/locale-is-utf8-p))\n (set-language-environment 'utf-8)\n (setq locale-coding-system 'utf-8)\n (set-selection-coding-system (if (eq system-type 'windows-nt) 'utf-16-le 'utf-8))\n (prefer-coding-system 'utf-8))\n\n(provide 'init-locales)\n;;; init-locales.el ends here\n","new_contents":";;; init-locales.el --- Configure default locale -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(defun sanityinc\/locale-var-encoding (v)\n \"Return the encoding portion of the locale string V, or nil if missing.\"\n (when v\n (save-match-data\n (let ((case-fold-search t))\n (when (string-match \"\\\\.\\\\([^.]*\\\\)\\\\'\" v)\n (intern (downcase (match-string 1 v))))))))\n\n(dolist (varname '(\"LC_ALL\" \"LANG\" \"LC_CTYPE\"))\n (let ((encoding (sanityinc\/locale-var-encoding (getenv varname))))\n (unless (memq encoding '(nil utf8 utf-8))\n (message \"Warning: non-UTF8 encoding in environment variable %s may cause interop problems with this Emacs configuration.\" varname))))\n\n(when (fboundp 'set-charset-priority)\n (set-charset-priority 'unicode))\n(prefer-coding-system 'utf-8)\n(setq locale-coding-system 'utf-8)\n(unless (eq system-type 'windows-nt)\n (set-selection-coding-system 'utf-8))\n\n(provide 'init-locales)\n;;; init-locales.el ends here\n","subject":"Streamline code for setting locales","message":"Streamline code for setting locales\n\nSee #717\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"sgarciac\/emacs.d,baohaojun\/emacs.d,dcorking\/emacs.d,arthurl\/emacs.d,krzysz00\/emacs.d,svenyurgensson\/emacs.d,blueseason\/emacs.d,gsmlg\/emacs.d,emuio\/emacs.d,purcell\/emacs.d,blueabysm\/emacs.d,qianwan\/emacs.d,lust4life\/emacs.d,braveoyster\/emacs.d"} {"commit":"08d296f6566f5eb5cd3347e6a59aa1a92c92b798","old_file":"lisp\/init-grep.el","new_file":"lisp\/init-grep.el","old_contents":"(setq-default grep-highlight-matches t\n grep-scroll-output t)\n\n(when *is-a-mac*\n (setq-default locate-command \"mdfind\"))\n\n(when (and (executable-find \"ag\")\n (maybe-require-package 'ag))\n (require-package 'wgrep-ag)\n (setq-default ag-highlight-search t)\n (global-set-key (kbd \"M-?\") 'ag-project))\n\n(when (and (executable-find \"rg\")\n (maybe-require-package 'rg))\n (global-set-key (kbd \"M-?\") 'rg-project))\n\n\n(provide 'init-grep)\n","new_contents":"(setq-default grep-highlight-matches t\n grep-scroll-output t)\n\n(when *is-a-mac*\n (setq-default locate-command \"mdfind\"))\n\n(when (and (executable-find \"ag\")\n (maybe-require-package 'ag))\n (require-package 'wgrep-ag)\n (setq-default ag-highlight-search t)\n (global-set-key (kbd \"M-?\") 'ag-project))\n\n(when (and (executable-find \"rg\")\n (maybe-require-package 'rg))\n (maybe-require-package 'deadgrep)\n (global-set-key (kbd \"M-?\") 'rg-project))\n\n\n(provide 'init-grep)\n","subject":"Use deadgrep package when \"rg\" is available","message":"Use deadgrep package when \"rg\" is available\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"wegatron\/emacs.d,gsmlg\/emacs.d,blueseason\/emacs.d,braveoyster\/emacs.d,cjqw\/emacs.d,kongfy\/emacs.d,purcell\/emacs.d,benkha\/emacs.d,blueabysm\/emacs.d,dcorking\/emacs.d,arthurl\/emacs.d,mmqmzk\/emacs.d,krzysz00\/emacs.d,baohaojun\/emacs.d,me020523\/emacs.d,sgarciac\/emacs.d,kindoblue\/emacs.d,lust4life\/emacs.d,svenyurgensson\/emacs.d,qianwan\/emacs.d,emuio\/emacs.d"} {"commit":"559ec4e4417a190341cdaa1a50203780f393f489","old_file":"lisp\/init-misc.el","new_file":"lisp\/init-misc.el","old_contents":";;----------------------------------------------------------------------------\n;; Misc config - yet to be placed in separate files\n;;----------------------------------------------------------------------------\n(add-auto-mode 'tcl-mode \"Portfile\\\\'\")\n(fset 'yes-or-no-p 'y-or-n-p)\n\n(add-hook 'prog-mode-hook 'goto-address-prog-mode)\n(setq goto-address-mail-face 'link)\n\n(add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)\n\n(setq-default regex-tool-backend 'perl)\n\n(add-auto-mode 'conf-mode \"Procfile\")\n\n\n(provide 'init-misc)\n","new_contents":";;----------------------------------------------------------------------------\n;; Misc config - yet to be placed in separate files\n;;----------------------------------------------------------------------------\n(add-auto-mode 'tcl-mode \"Portfile\\\\'\")\n(fset 'yes-or-no-p 'y-or-n-p)\n\n(add-hook 'prog-mode-hook 'goto-address-prog-mode)\n(setq goto-address-mail-face 'link)\n\n(add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)\n\n(setq-default regex-tool-backend 'perl)\n(after-load 're-builder\n ;; Support a slightly more idiomatic quit binding in re-builder\n (define-key reb-mode-map (kbd \"C-c C-k\") 'reb-quit))\n\n(add-auto-mode 'conf-mode \"Procfile\")\n\n\n(provide 'init-misc)\n","subject":"Support quitting with C-c C-k in re-builder","message":"Support quitting with C-c C-k in re-builder\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d,emuio\/emacs.d,kongfy\/emacs.d,sgarciac\/emacs.d,qianwan\/emacs.d,arthurl\/emacs.d,krzysz00\/emacs.d,dcorking\/emacs.d,cjqw\/emacs.d,braveoyster\/emacs.d,blueabysm\/emacs.d,mmqmzk\/emacs.d,purcell\/emacs.d,me020523\/emacs.d,kindoblue\/emacs.d,svenyurgensson\/emacs.d,wegatron\/emacs.d,benkha\/emacs.d,roxolan\/emacs.d,lust4life\/emacs.d,baohaojun\/emacs.d,gsmlg\/emacs.d"} {"commit":"b6d1f53370eca1a2517a51332594b5d642607413","old_file":"user-lisp\/lsp-customisations.el","new_file":"user-lisp\/lsp-customisations.el","old_contents":"\n(use-package lsp-mode\n :config\n ;; For some reason icons aren't currently rendering, so don't show them.\n (setq lsp-modeline-code-actions-segments '(count name))\n\n (setq lsp-rust-clippy-preference \"on\")\n\n (set-face-attribute 'lsp-lsp-flycheck-warning-unnecessary-face nil :foreground nil)\n\n ;; Don't override my navigation bindings.\n (define-key lsp-signature-mode-map (kbd \"M-n\") nil)\n (define-key lsp-signature-mode-map (kbd \"M-p\") nil)\n\n (define-key lsp-mode-map (kbd \"C-c f\") #'lsp-format-buffer)\n (define-key lsp-mode-map (kbd \"C-c r\") #'lsp-rename)\n\n (add-hook 'rust-mode-hook #'lsp-mode))\n\n(provide 'lsp-customisations)\n","new_contents":"\n(use-package lsp-mode\n :config\n ;; For some reason icons aren't currently rendering, so don't show them.\n (setq lsp-modeline-code-actions-segments '(count name))\n\n (setq lsp-rust-analyzer-cargo-watch-command \"clippy\")\n (setq lsp-rust-clippy-preference \"on\")\n\n (set-face-attribute 'lsp-lsp-flycheck-warning-unnecessary-face nil :foreground nil)\n\n ;; Don't override my navigation bindings.\n (define-key lsp-signature-mode-map (kbd \"M-n\") nil)\n (define-key lsp-signature-mode-map (kbd \"M-p\") nil)\n\n (define-key lsp-mode-map (kbd \"C-c f\") #'lsp-format-buffer)\n (define-key lsp-mode-map (kbd \"C-c r\") #'lsp-rename)\n\n (add-hook 'rust-mode-hook #'lsp-mode))\n\n(provide 'lsp-customisations)\n","subject":"Enable clippy as check command fo rlints","message":"Enable clippy as check command fo rlints\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"fddee40fc1a476b7079a8cbc449a6c4f43ffca86","old_file":"modes\/flycheck-conf.el","new_file":"modes\/flycheck-conf.el","old_contents":";;; flycheck-conf.el -- Configuration for flycheck.\n;;\n;;; Commentary:\n;;\n;;; Code:\n(require 'flycheck)\n\n(custom-set-variables\n '(flycheck-disabled-checkers '(javascript-gjslint))\n '(flycheck-standard-error-navigation nil))\n\n;;; flycheck-conf.el ends here\n","new_contents":";;; flycheck-conf.el -- Configuration for flycheck.\n;;\n;;; Commentary:\n;;\n;;; Code:\n(require 'flycheck)\n\n(custom-set-variables\n '(flycheck-disabled-checkers '(javascript-gjslint))\n '(flycheck-emacs-lisp-load-path 'inherit)\n '(flycheck-standard-error-navigation nil))\n\n;;; flycheck-conf.el ends here\n","subject":"Use the current load-path when running flycheck","message":"elisp: Use the current load-path when running flycheck\n\nThis lets flycheck see the packages that are loaded into the current\nEmacs session and prevents it from stopping at `require` lines due to\nerrors.\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"94a57f695ecc4000f0311d6b91070ff098694b9a","old_file":"modules\/tools\/lsp\/config.el","new_file":"modules\/tools\/lsp\/config.el","old_contents":";;; tools\/lsp\/config.el -*- lexical-binding: t; -*-\n\n(setq lsp-session-file (concat doom-etc-dir \"lsp-session\")\n lsp-auto-guess-root t\n lsp-keep-workspace-alive nil)\n\n\n(def-package! lsp-ui\n :hook (lsp-mode . lsp-ui-mode)\n :config\n (setq lsp-prefer-flymake nil\n lsp-ui-doc-max-height 8\n lsp-ui-doc-max-width 35\n lsp-ui-sideline-ignore-duplicate t)\n (define-key! lsp-ui-mode-map\n [remap xref-find-definitions] #'lsp-ui-peek-find-definitions\n [remap xref-find-references] #'lsp-ui-peek-find-references)\n (set-lookup-handlers! 'lsp-ui-mode\n :definition #'lsp-ui-peek-find-definitions\n :references #'lsp-ui-peek-find-references))\n\n\n(def-package! company-lsp\n :when (featurep! :completion company)\n :after lsp-mode\n :config\n (set-company-backend! 'lsp-mode 'company-lsp))\n","new_contents":";;; tools\/lsp\/config.el -*- lexical-binding: t; -*-\n\n(setq lsp-session-file (concat doom-etc-dir \"lsp-session\")\n lsp-auto-guess-root t\n lsp-keep-workspace-alive nil)\n\n;; Don't prompt to restart LSP servers while quitting Emacs\n(add-hook! 'kill-emacs-hook (setq lsp-restart 'ignore))\n\n\n(def-package! lsp-ui\n :hook (lsp-mode . lsp-ui-mode)\n :config\n (setq lsp-prefer-flymake nil\n lsp-ui-doc-max-height 8\n lsp-ui-doc-max-width 35\n lsp-ui-sideline-ignore-duplicate t)\n (define-key! lsp-ui-mode-map\n [remap xref-find-definitions] #'lsp-ui-peek-find-definitions\n [remap xref-find-references] #'lsp-ui-peek-find-references)\n (set-lookup-handlers! 'lsp-ui-mode\n :definition #'lsp-ui-peek-find-definitions\n :references #'lsp-ui-peek-find-references))\n\n\n(def-package! company-lsp\n :when (featurep! :completion company)\n :after lsp-mode\n :config\n (set-company-backend! 'lsp-mode 'company-lsp))\n","subject":"Fix LSP restart prompt when killing Emacs","message":"Fix LSP restart prompt when killing Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d"} {"commit":"6925e2124d18b0e493d75289d8d2e615e67d7198","old_file":"user-lisp\/movement-customisations.el","new_file":"user-lisp\/movement-customisations.el","old_contents":";; avy -- quickly jump to an arbitrary word or line\n(require 'avy)\n(setq avy-case-fold-search nil)\n;; Only consider the current window (i.e. the current buffer we're\n;; focused in).\n(setq avy-all-windows nil)\n(setq avy-keys\n (append (number-sequence ?a ?z) (number-sequence ?A ?Z)))\n(define-key global-map (kbd \"\") #'avy-goto-word-or-subword-1)\n(global-set-key (kbd \"\") #'avy-goto-line)\n\n;; Use `n' and `p' as movement keys in *compilation* buffers.\n;; M-n and M-p are already bound, but n\/p are less typing and ag.el\n;; has trained me to expect those bindings.\n(require 'compile)\n(define-key compilation-mode-map (kbd \"n\") #'compilation-next-error)\n(define-key compilation-mode-map (kbd \"p\") #'compilation-previous-error)\n\n(require 'modalka-customisations)\n\n(provide 'movement-customisations)\n","new_contents":";; To be consistent with our paredit keybindings, use super for syntatic movement.\n(global-set-key (kbd \"s-a\") #'beginning-of-defun)\n\n;; avy -- quickly jump to an arbitrary word or line\n(require 'avy)\n(setq avy-case-fold-search nil)\n;; Only consider the current window (i.e. the current buffer we're\n;; focused in).\n(setq avy-all-windows nil)\n(setq avy-keys\n (append (number-sequence ?a ?z) (number-sequence ?A ?Z)))\n(define-key global-map (kbd \"\") #'avy-goto-word-or-subword-1)\n(global-set-key (kbd \"\") #'avy-goto-line)\n\n;; Use `n' and `p' as movement keys in *compilation* buffers.\n;; M-n and M-p are already bound, but n\/p are less typing and ag.el\n;; has trained me to expect those bindings.\n(require 'compile)\n(define-key compilation-mode-map (kbd \"n\") #'compilation-next-error)\n(define-key compilation-mode-map (kbd \"p\") #'compilation-previous-error)\n\n(require 'modalka-customisations)\n\n(provide 'movement-customisations)\n","subject":"Add a super keybinding for beginning-of-defun.","message":"Add a super keybinding for beginning-of-defun.\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"7ba82edcf5bf3cbdb989facba3f80df2a3f60ed7","old_file":"rc\/color-theme.el","new_file":"rc\/color-theme.el","old_contents":";; =============================================================================\n;; Color Theme\n;; -----------------------------------------------------------------------------\n\n;; Themes form Melpa\n;; -----------------------------------------------------------------------------\n;; (if (> (display-color-cells) 256)\n;; (load-theme 'monokai t)\n;; (load-theme 'jazz t))\n\n(load-theme 'monokai t)\n\n;; (progn\n;; (add-to-list 'custom-theme-load-path \"~\/.emacs.d\/themes\/color-theme-mgl\")\n;; (load-theme 'mgl-dark t))\n\n;; (load-theme 'spacegray t)\n\n;; (load-theme 'spacemacs-light t)\n;; (load-theme 'spacemacs-dark t)\n\n;; (load-theme 'zerodark t)\n","new_contents":";; =============================================================================\n;; Color Theme\n;; -----------------------------------------------------------------------------\n\n;; Themes form Melpa\n;; -----------------------------------------------------------------------------\n;; (if (> (display-color-cells) 256)\n;; (load-theme 'monokai t)\n;; (load-theme 'jazz t))\n\n;; (load-theme 'monokai-peterhil t)\n\n(progn\n (add-to-list 'custom-theme-load-path \"~\/.emacs.d\/themes\/monokai-steel-emacs\")\n (load-theme 'monokai t))\n\n;; (progn\n;; (add-to-list 'custom-theme-load-path \"~\/.emacs.d\/themes\/color-theme-mgl\")\n;; (load-theme 'mgl-dark t))\n\n;; (load-theme 'spacegray t)\n\n;; (load-theme 'spacemacs-light t)\n;; (load-theme 'spacemacs-dark t)\n\n;; (load-theme 'zerodark t)\n","subject":"Use my customized monokai theme.","message":"Use my customized monokai theme.\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"peterhil\/emacs-config"} {"commit":"2b689c7438c5cbfde480182f9514e1019fc7a849","old_file":"elisp\/mode-setup.el","new_file":"elisp\/mode-setup.el","old_contents":"(require 'fractL)\n\n;; ParEdit\n(autoload 'paredit-mode \"paredit\"\n \"Minor mode for pseudo-structurally editing Lisp code.\" t)\n\n;; File extensions\/major mode bindings\n(add-to-list 'auto-mode-alist '(\"\\\\.rkt$\" . racket-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.transit$\" . fractL-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.ttest$\" . racket-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.k$\" . k3-mode))\n","new_contents":"(require 'fractL)\n\n;; ParEdit\n(autoload 'paredit-mode \"paredit\"\n \"Minor mode for pseudo-structurally editing Lisp code.\" t)\n\n;; File extensions\/major mode bindings\n(add-to-list 'auto-mode-alist '(\"\\\\.rkt$\" . racket-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.transit$\" . fractL-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.ls$\" . racket-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.ttest$\" . racket-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.k$\" . k3-mode))\n","subject":"Add hook for racket-mode for .ls files","message":"Add hook for racket-mode for .ls files\n","lang":"Emacs Lisp","license":"mit","repos":"schuster\/dotfiles"} {"commit":"168717b668df780b5873b5e1a949d58a0688e6b4","old_file":".emacs.d\/.mc-lists.el","new_file":".emacs.d\/.mc-lists.el","old_contents":";; This file is automatically generated by the multiple-cursors extension.\n;; It keeps track of your preferences for running commands with multiple cursors.\n\n(setq mc\/cmds-to-run-for-all\n '(\n ng-C-k\n ng-C-w\n ng-end\n ng-home\n ))\n\n(setq mc\/cmds-to-run-once\n '(\n ng-add-cursor-on-click\n ))\n","new_contents":";; This file is automatically generated by the multiple-cursors extension.\n;; It keeps track of your preferences for running commands with multiple cursors.\n\n(setq mc\/cmds-to-run-for-all\n '(\n comment-dwim\n comment-line\n ng-C-k\n ng-C-w\n ng-end\n ng-home\n ))\n\n(setq mc\/cmds-to-run-once\n '(\n ng-add-cursor-on-click\n ))\n","subject":"Add comment commands to run-all list for multiple cursors","message":"Add comment commands to run-all list for multiple cursors\n","lang":"Emacs Lisp","license":"mit","repos":"nguerrera\/.dot"} {"commit":"d0452a861a2e491cd831001a3791c0cd66d9ea60","old_file":"layers\/+vim\/vim-empty-lines\/packages.el","new_file":"layers\/+vim\/vim-empty-lines\/packages.el","old_contents":"(setq vim-empty-lines-packages\n '(\n (vim-empty-lines-mode :location local)\n (vi-tilde-fringe :excluded t)\n ))\n\n(defun vim-empty-lines\/init-vim-empty-lines-mode ()\n (use-package vim-empty-lines-mode\n :diminish vim-empty-lines-mode\n :init\n (spacemacs\/add-to-hooks (lambda () (vim-empty-lines-mode -1)) '(comint-mode-hook\n eshell-mode-hook\n eww-mode-hook\n shell-mode-hook\n term-mode-hook))\n :config\n (progn\n (global-vim-empty-lines-mode)\n (spacemacs|add-toggle vim-empty-lines-mode\n :mode global-vim-empty-lines-mode\n :documentation\n \"Display an overlay of ~ on empty lines.\"\n :evil-leader \"t~\")\n ;; don't enable it on spacemacs home buffer\n (with-current-buffer \"*spacemacs*\"\n (vim-empty-lines-mode -1))\n ;; after a major mode is loaded, check if the buffer is read only\n ;; if so, disable vim-empty-lines-mode\n (add-hook 'after-change-major-mode-hook (lambda ()\n (when buffer-read-only\n (vim-empty-lines-mode -1)))))))\n","new_contents":"(setq vim-empty-lines-packages\n '(\n (vim-empty-lines-mode :location local)\n (vi-tilde-fringe :excluded t)\n ))\n\n(defun vim-empty-lines\/init-vim-empty-lines-mode ()\n (use-package vim-empty-lines-mode\n :diminish vim-empty-lines-mode\n :init\n (spacemacs\/add-to-hooks (lambda () (vim-empty-lines-mode -1))\n '(comint-mode-hook\n eshell-mode-hook\n eww-mode-hook\n shell-mode-hook\n term-mode-hook))\n :config\n (progn\n (global-vim-empty-lines-mode)\n (spacemacs|add-toggle vim-empty-lines-mode\n :mode global-vim-empty-lines-mode\n :documentation\n \"Display an overlay of ~ on empty lines.\"\n :evil-leader \"t~\")\n ;; Don't enable it where it is detrimental.\n (with-current-buffer \"*spacemacs*\" (vim-empty-lines-mode -1))\n (with-current-buffer \"*Messages*\" (vim-empty-lines-mode -1))\n (with-current-buffer which-key--buffer (vim-empty-lines-mode -1))\n ;; after a major mode is loaded, check if the buffer is read only\n ;; if so, disable vim-empty-lines-mode\n (add-hook 'after-change-major-mode-hook (lambda ()\n (when buffer-read-only\n (vim-empty-lines-mode -1)))))))\n","subject":"Disable vim-empty-lines in unnecessary buffers","message":"Disable vim-empty-lines in unnecessary buffers\n\n*Messages* and which-key--buffer do not need empty line indicators.\n\nAlso break up an unnecessarily long line.\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"da4971d5d636cbe3ee528e108e71501e1b63f9e8","old_file":"init-xterm.el","new_file":"init-xterm.el","old_contents":"(require 'init-frame-hooks)\n\n(defun fix-up-xterm-control-arrows ()\n (let ((map (if (boundp 'input-decode-map)\n input-decode-map\n function-key-map)))\n (define-key map \"\\e[1;5A\" [C-up])\n (define-key map \"\\e[1;5B\" [C-down])\n (define-key map \"\\e[1;5C\" [C-right])\n (define-key map \"\\e[1;5D\" [C-left])\n (define-key map \"\\e[5A\" [C-up])\n (define-key map \"\\e[5B\" [C-down])\n (define-key map \"\\e[5C\" [C-right])\n (define-key map \"\\e[5D\" [C-left])))\n\n(add-hook 'after-make-console-frame-hooks\n (lambda ()\n (when (< emacs-major-version 23)\n (fix-up-xterm-control-arrows))\n (xterm-mouse-mode 1) ; Mouse in a terminal (Use shift to paste with middle button)\n (mwheel-install)))\n\n(provide 'init-xterm)","new_contents":"(require 'init-frame-hooks)\n\n(defun fix-up-xterm-control-arrows ()\n (let ((map (if (boundp 'input-decode-map)\n input-decode-map\n function-key-map)))\n (define-key map \"\\e[1;5A\" [C-up])\n (define-key map \"\\e[1;5B\" [C-down])\n (define-key map \"\\e[1;5C\" [C-right])\n (define-key map \"\\e[1;5D\" [C-left])\n (define-key map \"\\e[5A\" [C-up])\n (define-key map \"\\e[5B\" [C-down])\n (define-key map \"\\e[5C\" [C-right])\n (define-key map \"\\e[5D\" [C-left])))\n\n(add-hook 'after-make-console-frame-hooks\n (lambda ()\n (when (< emacs-major-version 23)\n (fix-up-xterm-control-arrows))\n (xterm-mouse-mode 1) ; Mouse in a terminal (Use shift to paste with middle button)\n (when (fboundp 'mwheel-install)\n (mwheel-install))))\n\n(provide 'init-xterm)\n","subject":"Handle console-only Emacs builds, which lack mwheel-install","message":"Handle console-only Emacs builds, which lack mwheel-install\n\nCloses #85\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"4aa47e8e738fa922851ba86b57cafc4847aa7422","old_file":"layers\/mfa-ruby\/packages.el","new_file":"layers\/mfa-ruby\/packages.el","old_contents":"(defconst mfa-ruby-packages '(rubocop ruby-mode))\n\n(defun mfa-ruby\/post-init-rubocop ()\n (spacemacs|hide-lighter rubocop-mode))\n\n(defun mfa-ruby\/post-init-ruby-mode ()\n ;; Ruby mode customizations\n (with-eval-after-load 'ruby-mode\n (add-hook 'ruby-mode-hook (lambda ()\n (setq evil-shift-width ruby-indent-level))))\n\n ;; Additional file mode associations.\n (add-to-list 'auto-mode-alist '(\"\\\\.rake\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"\\\\.gemspec\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"\\\\.ru\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Capfile\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Gemfile\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Rakefile\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Vagrantfile\\\\'\" . ruby-mode))\n\n ;; Additional interpreter associations.\n (add-to-list 'interpreter-mode-alist '(\"rake\" . ruby-mode))\n\n ;; It is unnecessary for rbenv to show the Ruby version in the modeline.\n (setq rbenv-show-active-ruby-in-modeline nil))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defconst mfa-ruby-packages '(rbenv rubocop ruby-mode))\n\n(defun mfa-ruby\/post-init-rbenv ()\n ;; It is unnecessary for rbenv to show the Ruby version in the modeline.\n (setq rbenv-show-active-ruby-in-modeline nil))\n\n(defun mfa-ruby\/post-init-rubocop ()\n (spacemacs|hide-lighter rubocop-mode))\n\n(defun mfa-ruby\/post-init-ruby-mode ()\n ;; Ruby mode customizations\n (with-eval-after-load 'ruby-mode\n (add-hook 'ruby-mode-hook (lambda ()\n (setq evil-shift-width ruby-indent-level))))\n\n ;; Additional file mode associations.\n (add-to-list 'auto-mode-alist '(\"\\\\.rake\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"\\\\.gemspec\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"\\\\.ru\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Capfile\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Gemfile\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Rakefile\\\\'\" . ruby-mode))\n (add-to-list 'auto-mode-alist '(\"Vagrantfile\\\\'\" . ruby-mode))\n\n ;; Additional interpreter associations.\n (add-to-list 'interpreter-mode-alist '(\"rake\" . ruby-mode)))\n","subject":"Move customization of rbenv to the proper use-package init block","message":"Move customization of rbenv to the proper use-package init block\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"27d6a746230e80a7064b2f1dd73bb78f16372bce","old_file":"lisp\/init-flycheck.el","new_file":"lisp\/init-flycheck.el","old_contents":"(when (eval-when-compile (>= emacs-major-version 24))\n (require-package 'flycheck)\n (add-hook 'after-init-hook 'global-flycheck-mode))\n\n;; Override default flycheck triggers\n(setq flycheck-check-syntax-automatically '(save idle-change mode-enabled)\n flycheck-idle-change-delay 0.8)\n\n\n(after-load 'flycheck\n (flycheck-define-checker ruby\n \"A Ruby syntax checker using the standard (MRI) Ruby interpreter.\n\n See URL `http:\/\/www.ruby-lang.org\/'.\"\n :command (\"ruby\" \"-w\" \"-c\" source)\n :error-patterns\n ;; These patterns support output from JRuby, too, to deal with RVM or Rbenv\n ((error line-start\n \"SyntaxError in \" (file-name) \":\" line \": \" (message)\n line-end)\n (warning line-start\n (file-name) \":\" line \":\" (optional column \":\")\n \" warning: \" (message) line-end)\n (error line-start (file-name) \":\" line \": \" (message) line-end))\n :modes (enh-ruby-mode ruby-mode))\n (add-to-list 'flycheck-checkers 'ruby t))\n\n\n(provide 'init-flycheck)\n","new_contents":"(when (eval-when-compile (>= emacs-major-version 24))\n (require-package 'flycheck)\n (add-hook 'after-init-hook 'global-flycheck-mode))\n\n;; Override default flycheck triggers\n(setq flycheck-check-syntax-automatically '(save idle-change mode-enabled)\n flycheck-idle-change-delay 0.8)\n(provide 'init-flycheck)\n","subject":"Revert \"Add ruby flycheck checker locally until it is restored upstream\"","message":"Revert \"Add ruby flycheck checker locally until it is restored upstream\"\n\nThis reverts commit 4c387b5e3426f5bbddbbf3054961a2b45a3a27bc.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"me020523\/emacs.d,Werewolflsp\/emacs.d,jhpx\/emacs.d,kongfy\/emacs.d,wenpincui\/emacs.d,jkaessens\/emacs.d,mmqmzk\/emacs.d,benkha\/emacs.d,jachinpy\/emacs.d,braveoyster\/emacs.d,caoyuanqi\/emacs.d,hkcqr\/emacs.d,sgarciac\/emacs.d,blueabysm\/emacs.d,arthurl\/emacs.d,alant\/emacs.d,zhuoyikang\/emacs.d,lromang\/emacs.d,carlosliu\/emacs.d,haodaivshen\/emacs.d,zenith-john\/emacs.d,gsmlg\/emacs.d,fengxl\/emacs.d,blueseason\/emacs.d,baohaojun\/emacs.d,Togal\/emacs.d,whizzzkid\/emacs.d,LittleLmp\/emacs.d,pairyo\/emacs.d,Enzo-Liu\/emacs.d,46do14\/emacs.d,bibaijin\/emacs.d,shafayetkhan\/emacs.d,svenyurgensson\/emacs.d,hophacker\/emacs.d,cjqw\/emacs.d,cyjia\/emacs.d,dcorking\/emacs.d,dhanunjaya\/emacs.d,ruiyang\/emacs.d,mpwang\/emacs.d,emuio\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,ernest-dzf\/emacs.d,ilove0518\/emacs.d,lust4life\/emacs.d,renatoriccio\/emacs.d,Jadecity\/PurcellEmacs.d,jthetzel\/emacs.d,exclamaforte\/emacs.d,farzadbekran\/emacs.d,qinshulei\/emacs.d,danfengcao\/emacs.d,krzysz00\/emacs.d,farzadbekran\/emacs.d,zhaotai\/.emacs.d,Guoozz\/emacs.d,Shanicky\/emacs.d,DarkThrone\/emacs.d,farzadbekran\/emacs.d,modkzs\/emcs.d,boblannon\/emacs.d,purcell\/emacs.d,kindoblue\/emacs.d,jachinpy\/emacs.d,qianwan\/emacs.d,LKI\/emacs.d,lujianmei\/emacs.d,roxolan\/emacs.d,atreeyang\/emacs.d,wegatron\/emacs.d,dongdonghu\/.emacs.d,ruiyang\/emacs.d,scorpionis\/emacs.d"} {"commit":"5201f23b68ad8a169bfb62c255dfaf20529494a2","old_file":"init.el","new_file":"init.el","old_contents":";;; init.el\n;;\n;; This is the first thing emacs loads\n;; so we can specify all our customisations here\n;; however, it makes sens to use emacs' own customisations functionality\n;; (which you can access with M-x customize) for stylistic customisations\n;; and use init.el for more complex stuff such as keybindings\n;;\n;; Define a custom location for the file emacs uses to store customisations:\n(setq custom-file \"~\/.emacs.d\/lisp\/custom.el\")\n\n;;\n;; perform any other configuration we require\n;;\n\n;; org-mode configuration\n(require 'org)\n;; automatically use org mode for .org, .org_archive and .txt files\n(add-to-list 'auto-mode-alist '(\"\\\\.\\\\(org\\\\|org_archive\\\\|txt\\\\)$\" . org-mode))\n;; standard key bindings\n(global-set-key \"\\C-cl\" 'org-store-link)\n(global-set-key \"\\C-ca\" 'org-agenda)\n(global-set-key \"\\C-cb\" 'org-iswitchb)\n;; see the custom-file for the agenda files configuration\n;; I'm setting it to use all files in a specified directory\n\n;; don't forget to load our custom file\n(load custom-file)\n","new_contents":";;; init.el\n;;\n;; This is the first thing emacs loads\n;; so we can specify all our customisations here\n;; however, it makes sens to use emacs' own customisations functionality\n;; (which you can access with M-x customize) for stylistic customisations\n;; and use init.el for more complex stuff such as keybindings\n;;\n;; Define a custom location for the file emacs uses to store customisations:\n(setq custom-file \"~\/.emacs.d\/lisp\/custom.el\")\n\n;;\n;; perform any other configuration we require\n;;\n\n;;\n;; org-mode configuration\n;;\n;; load org-mode from source\n;; You first need to check it out from git (git:\/\/orgmode.org\/org-mode.git)\n;; and build it with \"make uncompiled\"\n(add-to-list 'load-path (expand-file-name \"~\/.emacs.d\/org-mode\/lisp\"))\n;; automatically use org mode for .org, .org_archive and .txt files\n(add-to-list 'auto-mode-alist '(\"\\\\.\\\\(org\\\\|org_archive\\\\|txt\\\\)$\" . org-mode))\n(require 'org)\n;; standard key bindings\n(global-set-key \"\\C-cl\" 'org-store-link)\n(global-set-key \"\\C-ca\" 'org-agenda)\n(global-set-key \"\\C-cb\" 'org-iswitchb)\n;; see the custom-file for the agenda files configuration\n;; I'm setting it to use all files in a specified directory\n\n;; don't forget to load our custom file\n(load custom-file)\n","subject":"Use latest org-mode from git","message":"Use latest org-mode from git\n","lang":"Emacs Lisp","license":"mit","repos":"gilesp\/emacs.d"} {"commit":"b154989485e7650a1447f878ee15a5322f33fe96","old_file":"init.el","new_file":"init.el","old_contents":";; packages\n(require 'package)\n(add-to-list 'package-archives\n\t '(\"melpa\" . \"https:\/\/melpa.org\/packages\/\"))\n(when (< emacs-major-version 24)\n (add-to-list 'package-archives '(\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")))\n(package-initialize)\n","new_contents":";; packages\n(require 'package)\n(add-to-list 'package-archives\n\t '(\"melpa\" . \"https:\/\/melpa.org\/packages\/\"))\n(when (< emacs-major-version 24)\n (add-to-list 'package-archives '(\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")))\n(package-initialize)\n\n;; visual.\n(menu-bar-mode -1)\n(tool-bar-mode -1)\n(scroll-bar-mode -1)\n(add-to-list 'default-frame-alist '(fullscreen . maximized))\n\n;; magit conf\n(global-set-key (kbd \"\") 'magit-status)\n(global-set-key (kbd \"C-x g\") 'magit-status) ;; Legacy\n","subject":"Add visual y keybinds para magit","message":"Add visual y keybinds para magit\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"e5d7472950e6940b015e0771b6546a0864c6b8dc","old_file":"init-package\/init-flycheck.el","new_file":"init-package\/init-flycheck.el","old_contents":"(use-package flycheck\n :defer t\n :init\n (use-package flycheck-color-mode-line\n :defer t\n :init\n (add-hook 'flycheck-mode-hook 'flycheck-color-mode-line-mode))\n :config\n (progn\n (dolist (mode '(c\n elixir\n json\n python\n ruby))\n (add-hook (intern (concat (symbol-name mode) \"-mode-hook\"))\n 'flycheck-mode))\n\n (setq flycheck-check-syntax-automatically '(save mode-enabled))\n (setq flycheck-standard-error-navigation nil)))\n\n","new_contents":"(use-package flycheck\n :defer t\n :init\n (progn\n (dolist (mode '(c\n elixir\n json\n python\n ruby))\n (add-hook (intern (concat (symbol-name mode) \"-mode-hook\"))\n 'flycheck-mode))\n (use-package flycheck-color-mode-line\n :defer t\n :init\n (add-hook 'flycheck-mode-hook 'flycheck-color-mode-line-mode)))\n :config\n (progn\n\n (setq flycheck-check-syntax-automatically '(save mode-enabled))\n (setq flycheck-standard-error-navigation nil)))\n","subject":"Fix lazy loading of flycheck","message":"Fix lazy loading of flycheck\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"9e596c70af444e29abe3547721feb5b76a824afb","old_file":"lisp\/init-ledger.el","new_file":"lisp\/init-ledger.el","old_contents":"(when (maybe-require-package 'ledger-mode)\n\n (add-to-list 'auto-mode-alist '(\"\\\\.ledger$\" . ledger-mode))\n\n (when (maybe-require-package 'flycheck-ledger)\n (after-load 'flycheck\n (after-load 'ledger-mode\n (require 'flycheck-ledger))))\n\n (after-load 'ledger-mode\n (define-key ledger-mode-map (kbd \"RET\") 'newline)\n (define-key ledger-mode-map (kbd \"C-o\") 'open-line))\n\n (setq ledger-highlight-xact-under-point nil\n ledger-use-iso-dates nil)\n\n (after-load 'ledger-mode\n (when (memq window-system '(mac ns))\n (exec-path-from-shell-copy-env \"LEDGER_FILE\")))\n\n (add-hook 'ledger-mode-hook 'goto-address-prog-mode))\n\n(provide 'init-ledger)\n","new_contents":"(when (maybe-require-package 'ledger-mode)\n (when (maybe-require-package 'flycheck-ledger)\n (after-load 'flycheck\n (after-load 'ledger-mode\n (require 'flycheck-ledger))))\n\n (after-load 'ledger-mode\n (define-key ledger-mode-map (kbd \"RET\") 'newline)\n (define-key ledger-mode-map (kbd \"C-o\") 'open-line))\n\n (setq ledger-highlight-xact-under-point nil\n ledger-use-iso-dates nil)\n\n (after-load 'ledger-mode\n (when (memq window-system '(mac ns))\n (exec-path-from-shell-copy-env \"LEDGER_FILE\")))\n\n (add-hook 'ledger-mode-hook 'goto-address-prog-mode))\n\n(provide 'init-ledger)\n","subject":"Drop auto-mode-alist entry for ledger-mode, now added upstream","message":"Drop auto-mode-alist entry for ledger-mode, now added upstream\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"purcell\/emacs.d,me020523\/emacs.d,baohaojun\/emacs.d,krzysz00\/emacs.d,blueabysm\/emacs.d,emuio\/emacs.d,sgarciac\/emacs.d,arthurl\/emacs.d,braveoyster\/emacs.d,qianwan\/emacs.d,lust4life\/emacs.d,kindoblue\/emacs.d,dcorking\/emacs.d,cjqw\/emacs.d,roxolan\/emacs.d,blueseason\/emacs.d,gsmlg\/emacs.d,wegatron\/emacs.d,benkha\/emacs.d,mmqmzk\/emacs.d,svenyurgensson\/emacs.d,kongfy\/emacs.d"} {"commit":"a6b5c488b8e47e5c3742b4a90c37910f92e61535","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((c-mode . ((flycheck-clang-include-path . (\n \".\/lib\/include\"\n \".\/main\/include\"\n )))))\n","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((c-mode . ((flycheck-clang-include-path . (\n \".\/lib\/include\"\n \".\/main\/include\"\n \".\/tests\/include\"\n )))))\n","subject":"Add tests include dir to dir locals","message":"Add tests include dir to dir locals\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"rumblesan\/slowradio,rumblesan\/slowradio,rumblesan\/slowradio,rumblesan\/slowradio,rumblesan\/slowradio"} {"commit":"25f44194f863439a9f5591b37ea2b9ee24381b07","old_file":"doom_emacs\/packages.el","new_file":"doom_emacs\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n\n(package! bison-mode)\n(package! vimrc-mode)\n(package! ripgrep)\n(package! alloy-mode\n :recipe (:host github :repo \"dwwmmn\/alloy-mode\"))\n(package! org-ref)\n\n(package! evil-snipe :disable t)\n","new_contents":";; -*- no-byte-compile: t; -*-\n\n(package! bison-mode)\n(package! vimrc-mode)\n(package! ripgrep)\n(package! alloy-mode\n :recipe (:host github :repo \"dwwmmn\/alloy-mode\"))\n(package! org-ref)\n(package! fill-column-indicator)\n\n(package! evil-snipe :disable t)\n","subject":"Add fill-column-indicator package to emacs","message":"Add fill-column-indicator package to emacs\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"9a18bbc0ea326e37852c107ac08c6c8c8d286390","old_file":"site-lisp\/clgc-ruby.el","new_file":"site-lisp\/clgc-ruby.el","old_contents":"(defun ruby-eval-buffer () (interactive)\n \"Evaluate the buffer with ruby.\"\n (shell-command-on-region (point-min) (point-max) \"ruby -w \"))\n\n(defun clgc-ruby-mode-hook ()\n (require 'rinari)\n (setq rinari-tags-file-name \"TAGS\")\n (global-rinari-mode t))\n\n(add-hook 'ruby-mode-hook 'clgc-ruby-mode-hook)\n(add-hook 'ruby-mode-hook 'superword-mode)\n(add-hook 'ruby-mode-hook 'projectile-rails-on)\n\n;; inf-ruby\n(add-hook 'after-init-hook 'inf-ruby-switch-setup)\n\n;; Robe\n(add-hook 'ruby-mode-hook 'robe-mode)\n\n;; (eval-after-load 'company\n;; '(add-to-list 'company-backends 'company-robe))\n\n(defadvice inf-ruby-console-auto (before activate-rvm-for-robe activate)\n (rvm-activate-corresponding-ruby))\n\n;; RVM\n(add-hook 'after-init-hook 'rvm-use-default)\n\n(eval-after-load 'rspec-mode\n '(rspec-install-snippets))\n\n(defun rinari-rake-migrate-up ()\n (interactive)\n (rinari-rake \"db:migrate\"))\n\n(provide 'clgc-ruby)\n","new_contents":"(defun ruby-eval-buffer () (interactive)\n \"Evaluate the buffer with ruby.\"\n (shell-command-on-region (point-min) (point-max) \"ruby -w \"))\n\n(defun clgc-ruby-mode-hook ()\n (require 'rinari)\n (setq rinari-tags-file-name \"TAGS\")\n (setq ruby-insert-encoding-magic-comment nil)\n (setq ruby-align-to-stmt-keywords '(def if case))\n (global-rinari-mode t))\n\n(add-hook 'ruby-mode-hook 'clgc-ruby-mode-hook)\n(add-hook 'ruby-mode-hook 'superword-mode)\n(add-hook 'ruby-mode-hook 'projectile-rails-on)\n\n;; inf-ruby\n(add-hook 'after-init-hook 'inf-ruby-switch-setup)\n\n;; Robe\n(add-hook 'ruby-mode-hook 'robe-mode)\n\n;; (eval-after-load 'company\n;; '(add-to-list 'company-backends 'company-robe))\n\n(defadvice inf-ruby-console-auto (before activate-rvm-for-robe activate)\n (rvm-activate-corresponding-ruby))\n\n;; RVM\n(add-hook 'after-init-hook 'rvm-use-default)\n\n(eval-after-load 'rspec-mode\n '(rspec-install-snippets))\n\n(defun rinari-rake-migrate-up ()\n (interactive)\n (rinari-rake \"db:migrate\"))\n\n(provide 'clgc-ruby)\n","subject":"Change the indentation rules and stop inserting magic UTF in ruby-mode","message":"Change the indentation rules and stop inserting magic UTF in ruby-mode\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"dgtized\/dotfiles,dgtized\/dotfiles,dgtized\/dotfiles"} {"commit":"add29f1dc119d36841198d034d26d0c6d5f9900c","old_file":"layers\/my-evil\/packages.el","new_file":"layers\/my-evil\/packages.el","old_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-evil-packages '(evil\n (evil-escape :excluded t)\n evil-nerd-commenter))\n\n(defun my-evil\/post-init-evil ()\n ;; Do not move cursor back when exiting insert mode, and allow the cursor to\n ;; go past the last character of the line. This is more in line with default\n ;; Emacs behavior and feels more natural to me.\n (setq evil-move-cursor-back nil\n evil-move-beyond-eol t))\n\n(defun my-evil\/post-init-evil-nerd-commenter ()\n ;; Register text object for comments.\n (autoload 'evilnc-inner-comment \"evil-nerd-commenter-operator\")\n (define-key evil-inner-text-objects-map \"c\" #'evilnc-inner-comment)\n (autoload 'evilnc-outer-commenter \"evil-nerd-commenter-operator\")\n (define-key evil-outer-text-objects-map \"c\" #'evilnc-outer-commenter))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-evil-packages '(drag-stuff\n evil\n (evil-escape :excluded t)\n evil-nerd-commenter))\n\n(defun my-evil\/init-drag-stuff ()\n (use-package drag-stuff\n :defer t\n :init\n (with-eval-after-load 'evil-maps\n (define-key evil-visual-state-map \"J\" #'drag-stuff-down)\n (define-key evil-visual-state-map \"K\" #'drag-stuff-up))))\n\n(defun my-evil\/post-init-evil ()\n ;; Do not move cursor back when exiting insert mode, and allow the cursor to\n ;; go past the last character of the line. This is more in line with default\n ;; Emacs behavior and feels more natural to me.\n (setq evil-move-cursor-back nil\n evil-move-beyond-eol t))\n\n(defun my-evil\/post-init-evil-nerd-commenter ()\n ;; Register text object for comments.\n (autoload 'evilnc-inner-comment \"evil-nerd-commenter-operator\")\n (define-key evil-inner-text-objects-map \"c\" #'evilnc-inner-comment)\n (autoload 'evilnc-outer-commenter \"evil-nerd-commenter-operator\")\n (define-key evil-outer-text-objects-map \"c\" #'evilnc-outer-commenter))\n","subject":"Use K\/J to drag lines up and down in visual state","message":"Use K\/J to drag lines up and down in visual state\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"3ba677fd1da5c8e58fd07bb302aec601810135b2","old_file":"lisp\/init-clojure-cider.el","new_file":"lisp\/init-clojure-cider.el","old_contents":"(require 'init-clojure)\n\n(when (maybe-require-package 'cider)\n (setq nrepl-popup-stacktraces nil)\n\n (after-load 'cider\n (add-hook 'cider-mode-hook 'eldoc-mode)\n (add-hook 'cider-repl-mode-hook 'subword-mode)\n (add-hook 'cider-repl-mode-hook 'paredit-mode)\n\n ;; nrepl isn't based on comint\n (add-hook 'cider-repl-mode-hook 'sanityinc\/no-trailing-whitespace))\n\n (require-package 'flycheck-clojure)\n (after-load 'clojure-mode\n (after-load 'flycheck\n (flycheck-clojure-setup))))\n\n\n(provide 'init-clojure-cider)\n","new_contents":"(require 'init-clojure)\n\n(when (maybe-require-package 'cider)\n (setq nrepl-popup-stacktraces nil)\n\n (after-load 'cider\n (add-hook 'cider-mode-hook 'eldoc-mode)\n (add-hook 'cider-repl-mode-hook 'subword-mode)\n (add-hook 'cider-repl-mode-hook 'paredit-mode)\n\n ;; nrepl isn't based on comint\n (add-hook 'cider-repl-mode-hook 'sanityinc\/no-trailing-whitespace))\n\n (require-package 'flycheck-clojure)\n (after-load 'clojure-mode\n (after-load 'cider\n (after-load 'flycheck\n (flycheck-clojure-setup)))))\n\n\n(provide 'init-clojure-cider)\n","subject":"Load flycheck-clojure only after loading cider","message":"Load flycheck-clojure only after loading cider\n\nFixes #502, thanks @picong\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"mmqmzk\/emacs.d,wegatron\/emacs.d,qianwan\/emacs.d,sgarciac\/emacs.d,purcell\/emacs.d,krzysz00\/emacs.d,blueabysm\/emacs.d,emuio\/emacs.d,kindoblue\/emacs.d,me020523\/emacs.d,benkha\/emacs.d,blueseason\/emacs.d,lust4life\/emacs.d,kongfy\/emacs.d,svenyurgensson\/emacs.d,dcorking\/emacs.d,braveoyster\/emacs.d,baohaojun\/emacs.d,cjqw\/emacs.d,arthurl\/emacs.d,gsmlg\/emacs.d,roxolan\/emacs.d"} {"commit":"4a9b122c618648a60f929a61a6cd273a70cd1139","old_file":"lisp\/init-rails.el","new_file":"lisp\/init-rails.el","old_contents":"(when (maybe-require-package 'rinari)\n (after-load 'rinari\n (diminish 'rinari-minor-mode \"Rin\"))\n (global-rinari-mode))\n\n(defun update-rails-ctags ()\n (interactive)\n (let ((default-directory (or (rinari-root) default-directory)))\n (shell-command (concat \"ctags -a -e -f \" rinari-tags-file-name \" --tag-relative -R app lib vendor test\"))))\n\n(when (maybe-require-package 'projectile-rails)\n (after-load 'projectile\n (add-hook 'projectile-mode-hook 'projectile-rails-on)\n (after-load 'guide-key\n (add-to-list 'guide-key\/guide-key-sequence \"C-c r\"))))\n\n\n(provide 'init-rails)\n","new_contents":"(when (maybe-require-package 'projectile-rails)\n (after-load 'projectile\n (add-hook 'projectile-mode-hook 'projectile-rails-on)\n (after-load 'guide-key\n (add-to-list 'guide-key\/guide-key-sequence \"C-c r\"))))\n\n\n(provide 'init-rails)\n","subject":"Drop rinari for Rails work: projectile-rails is sufficient","message":"Drop rinari for Rails work: projectile-rails is sufficient\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"arthurl\/emacs.d,cjqw\/emacs.d,kongfy\/emacs.d,blueseason\/emacs.d,gsmlg\/emacs.d,svenyurgensson\/emacs.d,purcell\/emacs.d,dcorking\/emacs.d,sgarciac\/emacs.d,wegatron\/emacs.d,mmqmzk\/emacs.d,baohaojun\/emacs.d,kindoblue\/emacs.d,qianwan\/emacs.d,krzysz00\/emacs.d,blueabysm\/emacs.d,me020523\/emacs.d,braveoyster\/emacs.d,benkha\/emacs.d,roxolan\/emacs.d,emuio\/emacs.d,lust4life\/emacs.d"} {"commit":"bda3aef96235891bd4f78f3ab0f5847b884c25d5","old_file":"pastebin.el","new_file":"pastebin.el","old_contents":";;; pastebin.el --- pastebin example with simple-httpd\n\n(require 'cl)\n(require 'url-util)\n(require 'simple-httpd)\n\n(defvar pastebin-data-root (file-name-directory load-file-name))\n\n(defvar pastebin-db (make-hash-table))\n\n(defun pastebin-get-file (file)\n (with-temp-buffer\n (insert-file-literally (expand-file-name file pastebin-data-root))\n (buffer-string)))\n\n(defservlet pastebin text\/html (path)\n (let* ((id (string-to-number (file-name-nondirectory path)))\n (content (url-insert-entities-in-string (gethash id pastebin-db \"\"))))\n (insert (format (pastebin-get-file \"paste.html\") content))))\n\n(defun httpd\/pastebin\/post (proc path query request)\n (let* ((id (random most-positive-fixnum))\n (content (cadr (assoc \"Content\" request)))\n (decode (url-unhex-string (substitute ? ?+ content) t)))\n (puthash id (substring decode 2) pastebin-db)\n (httpd-redirect proc (format \"\/pastebin\/%d\" id))))\n","new_contents":";;; pastebin.el --- pastebin example with simple-httpd\n\n(require 'cl)\n(require 'url-util)\n(require 'simple-httpd)\n\n(defvar pastebin-data-root (file-name-directory load-file-name))\n\n(defvar pastebin-db (make-hash-table))\n\n(defun pastebin-get-file (file)\n (with-temp-buffer\n (insert-file-literally (expand-file-name file pastebin-data-root))\n (buffer-string)))\n\n(defservlet pastebin text\/html (path)\n (let* ((id (string-to-number (file-name-nondirectory path) 16))\n (content (url-insert-entities-in-string (gethash id pastebin-db \"\"))))\n (insert (format (pastebin-get-file \"paste.html\") content))))\n\n(defun httpd\/pastebin\/post (proc path query request)\n (let* ((id (random most-positive-fixnum))\n (content (cadr (assoc \"Content\" request)))\n (decode (url-unhex-string (substitute ? ?+ content) t)))\n (puthash id (substring decode 2) pastebin-db)\n (httpd-redirect proc (format \"\/pastebin\/%x\" id))))\n","subject":"Put IDs in base 16.","message":"Put IDs in base 16.\n","lang":"Emacs Lisp","license":"unlicense","repos":"skeeto\/emacs-pastebin"} {"commit":"0fa74bb8480d2b46fcd4e38ffbe28c2b6e97e0ca","old_file":"install_elpa.el","new_file":"install_elpa.el","old_contents":"(setq user-init-file \"\/tmp\/.emacs\")\n\n;; Marmalade: http:\/\/marmalade-repo.org\/\n(require 'package)\n(add-to-list 'package-archives\n '(\"marmalade\" .\n \"http:\/\/marmalade-repo.org\/packages\/\"))\n(package-initialize)\n\n(package-refresh-contents)\n\n(package-install 'color-theme)\n(package-install 'gh)\n(package-install 'gist)\n(package-install 'paredit)\n(package-install 'ruby-mode)\n(package-install 'smex)\n(package-install 'typopunct)\n(package-install 'dash)\n","new_contents":"(setq user-init-file \"\/tmp\/.emacs\")\n\n;; Marmalade: http:\/\/marmalade-repo.org\/\n(require 'package)\n(add-to-list 'package-archives\n '(\"marmalade\" .\n \"http:\/\/marmalade-repo.org\/packages\/\"))\n(package-initialize)\n\n(package-refresh-contents)\n\n(package-install 'color-theme)\n(package-install 'gh)\n(package-install 'gist)\n(package-install 'pkg-info)\n(package-install 'paredit)\n(package-install 'ruby-mode)\n(package-install 'smex)\n(package-install 'typopunct)\n(package-install 'dash)\n","subject":"Add pkg-info package (depended on by nrepl.el)","message":"Emacs: Add pkg-info package (depended on by nrepl.el)\n","lang":"Emacs Lisp","license":"mit","repos":"Moocar\/dotfiles"} {"commit":"e7f84f67657a64c622b3124a793dfbc7a27535df","old_file":"load\/rb.el","new_file":"load\/rb.el","old_contents":"(add-hook\n 'ruby-mode-hook\n (lambda ()\n ;; Check spelling.\n (flyspell-prog-mode)\n ;; Don't autofill\n (auto-fill-mode 0)\n ;; Make enter indent.\n (local-set-key (kbd \"C-m\") 'reindent-then-newline-and-indent)\n ;; Clean up whitespace on save.\n (add-hook 'before-save-hook 'whitespace-cleanup nil t)\n ;; Rebuild tags on save.\n (add-hook (make-local-variable 'after-save-hook) 'rebuild-tags nil t)\n ;; Disable rubocop\n (defvar flycheck-disabled-checkers \"flycheck.el\")\n (setq flycheck-disabled-checkers\n (cons 'ruby-rubocop flycheck-disabled-checkers))\n ;; Make do\/end less prominent.\n (defvar paren-face-regexp)\n (setq-local paren-face-regexp \"\\\\(^\\\\|[[:space:]]\\\\)\\\\(do\\\\|end\\\\)\\\\b\")))\n","new_contents":"(add-hook\n 'ruby-mode-hook\n (lambda ()\n ;; Check spelling.\n (flyspell-prog-mode)\n ;; Don't autofill\n (auto-fill-mode 0)\n ;; Make enter indent.\n (local-set-key (kbd \"C-m\") 'reindent-then-newline-and-indent)\n ;; Clean up whitespace on save.\n (add-hook 'before-save-hook 'whitespace-cleanup nil t)\n ;; Rebuild tags on save.\n (add-hook (make-local-variable 'after-save-hook) 'rebuild-tags nil t)\n ;; Disable rubocop\n (defvar flycheck-disabled-checkers \"flycheck.el\")\n (setq flycheck-disabled-checkers\n (cons 'ruby-rubocop flycheck-disabled-checkers))\n ;; Turn on subword-mode\n (require 'diminish)\n (subword-mode 1)\n (diminish 'subword-mode)\n ;; Make do\/end less prominent.\n (defvar paren-face-regexp)\n (setq-local paren-face-regexp\n (rx symbol-start (or \"do\" \"end\") symbol-end))))\n","subject":"Switch over to using Elixir `end` highlighting pattern","message":"Switch over to using Elixir `end` highlighting pattern\n","lang":"Emacs Lisp","license":"mit","repos":"kaidadragonfly\/.emacs"} {"commit":"decd961bc06e42ee4f0a1a75b5e66e62c066fcc8","old_file":"setup-package.el","new_file":"setup-package.el","old_contents":"(require 'package)\n\n(defvar marmalade '(\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\"))\n(defvar gnu '(\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\"))\n(defvar melpa '(\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n\n;; Add marmalade to package repos\n(add-to-list 'package-archives marmalade)\n(add-to-list 'package-archives melpa t)\n\n(package-initialize)\n\n(defun packages-install (&rest packages)\n (mapc (lambda (package)\n (let ((name (car package))\n (repo (cdr package)))\n (when (not (package-installed-p name))\n (let ((package-archives (list repo)))\n (package-initialize)\n (package-install name)))))\n packages)\n (package-initialize))\n\n(provide 'setup-package)\n","new_contents":"(require 'package)\n\n(defvar marmalade '(\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\"))\n(defvar gnu '(\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\"))\n(defvar melpa '(\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n\n;; Add marmalade to package repos\n(add-to-list 'package-archives marmalade)\n(add-to-list 'package-archives melpa t)\n\n(package-initialize)\n\n(unless (file-exists-p \"~\/.emacs.d\/elpa\/archives\")\n (package-refresh-contents))\n\n(defun packages-install (&rest packages)\n (mapc (lambda (package)\n (let ((name (car package))\n (repo (cdr package)))\n (when (not (package-installed-p name))\n (let ((package-archives (list repo)))\n (package-initialize)\n (package-install name)))))\n packages)\n (package-initialize)\n (delete-other-windows))\n\n(provide 'setup-package)\n","subject":"Make sure to fetch package-lists if needed.","message":"Make sure to fetch package-lists if needed.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"056f394ae08fb49f4a7d9a3f3a77e5ad928f2e11","old_file":"init-ido.el","new_file":"init-ido.el","old_contents":";; Use C-f during file selection to switch to regular find-file\n(ido-mode t) ; use 'buffer rather than t to use only buffer switching\n(ido-everywhere t)\n(setq ido-enable-flex-matching t)\n(setq ido-use-filename-at-point nil)\n(setq ido-auto-merge-work-directories-length 0)\n\n;; Allow the same buffer to be open in different frames\n(setq ido-default-buffer-method 'selected-window)\n\n(defun steve-ido-choose-from-recentf ()\n \"Use ido to select a recently opened file from the `recentf-list'\"\n (interactive)\n (find-file (ido-completing-read \"Open file: \" recentf-list nil t)))\n(global-set-key [(meta f11)] 'steve-ido-choose-from-recentf)\n\n\n;;----------------------------------------------------------------------------\n;; ido completion in M-x\n;;----------------------------------------------------------------------------\n(require 'smex)\n(smex-initialize)\n(global-set-key \"\\M-x\" 'smex)\n\n\n(provide 'init-ido)\n","new_contents":";; Use C-f during file selection to switch to regular find-file\n(ido-mode t) ; use 'buffer rather than t to use only buffer switching\n(ido-everywhere t)\n(setq ido-enable-flex-matching t)\n(setq ido-use-filename-at-point nil)\n(setq ido-auto-merge-work-directories-length 0)\n(setq ido-show-dot-for-dired t)\n\n;; Allow the same buffer to be open in different frames\n(setq ido-default-buffer-method 'selected-window)\n\n(defun steve-ido-choose-from-recentf ()\n \"Use ido to select a recently opened file from the `recentf-list'\"\n (interactive)\n (find-file (ido-completing-read \"Open file: \" recentf-list nil t)))\n(global-set-key [(meta f11)] 'steve-ido-choose-from-recentf)\n\n\n;;----------------------------------------------------------------------------\n;; ido completion in M-x\n;;----------------------------------------------------------------------------\n(require 'smex)\n(smex-initialize)\n(global-set-key \"\\M-x\" 'smex)\n\n\n(provide 'init-ido)\n","subject":"Include '.' in ido file completion lists, allowing quick switch to dired","message":"Include '.' in ido file completion lists, allowing quick switch to dired\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"danfengcao\/emacs.d,atreeyang\/emacs.d,dongdonghu\/.emacs.d,qianwan\/emacs.d,jachinpy\/emacs.d,farzadbekran\/emacs.d,mpwang\/emacs.d,farzadbekran\/emacs.d,hkcqr\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,lromang\/emacs.d,braveoyster\/emacs.d,kindoblue\/emacs.d,Togal\/emacs.d,scorpionis\/emacs.d,renatoriccio\/emacs.d,qinshulei\/emacs.d,YangXin\/emacs.d,ruiyang\/emacs.d,bibaijin\/emacs.d,kongfy\/emacs.d,LKI\/emacs.d,boblannon\/emacs.d,blueabysm\/emacs.d,zuoshifan\/emacs.d,emuio\/emacs.d,cjqw\/emacs.d,zuoshifan\/emacs.d,pairyo\/emacs.d,YangXin\/emacs.d,farzadbekran\/emacs.d,46do14\/emacs.d,Jadecity\/PurcellEmacs.d,lust4life\/emacs.d,Shanicky\/emacs.d,mmqmzk\/emacs.d,baohaojun\/emacs.d,ilove0518\/emacs.d,carlosliu\/emacs.d,dhanunjaya\/emacs.d,caoyuanqi\/emacs.d,zuoshifan\/emacs.d,me020523\/emacs.d,arthurl\/emacs.d,wenpincui\/emacs.d,zhaotai\/.emacs.d,svenyurgensson\/emacs.d,zuoshifan\/emacs.d,exclamaforte\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,fengxl\/emacs.d,sgarciac\/emacs.d,jkaessens\/emacs.d,LittleLmp\/emacs.d,ernest-dzf\/emacs.d,ruiyang\/emacs.d,zuoshifan\/emacs.d,haodaivshen\/emacs.d,purcell\/emacs.d,zenith-john\/emacs.d,farzadbekran\/emacs.d,hophacker\/emacs.d,jthetzel\/emacs.d,wegatron\/emacs.d,Enzo-Liu\/emacs.d,shafayetkhan\/emacs.d,blueseason\/emacs.d,farzadbekran\/emacs.d,benkha\/emacs.d,modkzs\/emcs.d,dcorking\/emacs.d,zhuoyikang\/emacs.d,alant\/emacs.d,Guoozz\/emacs.d,gsmlg\/emacs.d,zuoshifan\/emacs.d,krzysz00\/emacs.d,DarkThrone\/emacs.d,whizzzkid\/emacs.d,roxolan\/emacs.d,Werewolflsp\/emacs.d,lujianmei\/emacs.d,jhpx\/emacs.d,cyjia\/emacs.d"} {"commit":"5f0afe95eb796b02f5d9c88b5a0ffcb73c1a600c","old_file":"init-sql.el","new_file":"init-sql.el","old_contents":"(require-package 'sql-indent)\n(eval-after-load 'sql\n '(load-library \"sql-indent\"))\n\n(eval-after-load 'sql\n '(when (featurep 'dash-at-point)\n (defun sanityinc\/maybe-set-dash-db-docset ()\n (when (eq sql-product 'postgres)\n (setq dash-at-point-docset \"psql\")))\n\n (add-hook 'sql-mode-hook 'sanityinc\/maybe-set-dash-db-docset)\n (add-hook 'sql-interactive-mode-hook 'sanityinc\/maybe-set-dash-db-docset)\n (defadvice sql-set-product (after set-dash-docset activate)\n (sanityinc\/maybe-set-dash-db-docset))))\n\n\n(provide 'init-sql)\n","new_contents":"(require-package 'sql-indent)\n(eval-after-load 'sql\n '(load-library \"sql-indent\"))\n\n(eval-after-load 'sql\n '(when (package-installed-p 'dash-at-point)\n (defun sanityinc\/maybe-set-dash-db-docset ()\n (when (eq sql-product 'postgres)\n (setq dash-at-point-docset \"psql\")))\n\n (add-hook 'sql-mode-hook 'sanityinc\/maybe-set-dash-db-docset)\n (add-hook 'sql-interactive-mode-hook 'sanityinc\/maybe-set-dash-db-docset)\n (defadvice sql-set-product (after set-dash-docset activate)\n (sanityinc\/maybe-set-dash-db-docset))))\n\n\n(provide 'init-sql)\n","subject":"Use package-installed-p to detect dash-at-point","message":"Use package-installed-p to detect dash-at-point\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"4cf14534a6656a6dbc7323a63204c294fd69546b","old_file":"init-growl.el","new_file":"init-growl.el","old_contents":"(require 'todochiku) ;; growl notifications when compilation finishes\n(setq todochiku-icons-directory (expand-file-name \"~\/.emacs.d\/site-lisp\/todochiku-icons\"))\n\n\n;;----------------------------------------------------------------------------\n;; Use terminal-notifier in OS X Mountain Lion\n;; https:\/\/github.com\/alloy\/terminal-notifier (Install in \/Applications)\n;;----------------------------------------------------------------------------\n(setq terminal-notifier-path\n \"\/Applications\/terminal-notifier.app\/Contents\/MacOS\/terminal-notifier\")\n\n(defadvice todochiku-get-arguments (around todochiku-nc)\n (setq ad-return-value\n (list \"-title\" title \"-message\" message \"-activate\" \"org.gnu.Emacs\")))\n\n(when (file-executable-p terminal-notifier-path)\n (setq todochiku-command terminal-notifier-path)\n (ad-activate 'todochiku-get-arguments))\n\n\n(provide 'init-growl)\n","new_contents":"(require 'todochiku) ;; growl notifications when compilation finishes\n(setq todochiku-icons-directory (expand-file-name \"~\/.emacs.d\/site-lisp\/todochiku-icons\"))\n\n(defcustom terminal-notifier-path\n \"\/Applications\/terminal-notifier.app\/Contents\/MacOS\/terminal-notifier\"\n \"Path to the terminal-notifier app for Mountain Lion, if installed.\nSee https:\/\/github.com\/alloy\/terminal-notifier for more information.\")\n\n(when (and *is-a-mac* (file-executable-p terminal-notifier-path))\n (defadvice todochiku-get-arguments (around todochiku-terminal-notifier activate)\n (setq ad-return-value\n (list \"-title\" title \"-message\" message \"-activate\" \"org.gnu.Emacs\")))\n (setq todochiku-command terminal-notifier-path))\n\n\n(provide 'init-growl)\n","subject":"Tidy up terminal-notifier code, and skip file test when not on OS X","message":"Tidy up terminal-notifier code, and skip file test when not on OS X\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"pairyo\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,jhpx\/emacs.d,lust4life\/emacs.d,Shanicky\/emacs.d,qianwan\/emacs.d,scorpionis\/emacs.d,purcell\/emacs.d,dongdonghu\/.emacs.d,shafayetkhan\/emacs.d,zuoshifan\/emacs.d,modkzs\/emcs.d,benkha\/emacs.d,baohaojun\/emacs.d,dhanunjaya\/emacs.d,zuoshifan\/emacs.d,caoyuanqi\/emacs.d,ilove0518\/emacs.d,mmqmzk\/emacs.d,emuio\/emacs.d,cyjia\/emacs.d,Werewolflsp\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,zhuoyikang\/emacs.d,zenith-john\/emacs.d,zuoshifan\/emacs.d,wegatron\/emacs.d,jachinpy\/emacs.d,haodaivshen\/emacs.d,LKI\/emacs.d,LittleLmp\/emacs.d,whizzzkid\/emacs.d,braveoyster\/emacs.d,jkaessens\/emacs.d,farzadbekran\/emacs.d,sgarciac\/emacs.d,farzadbekran\/emacs.d,exclamaforte\/emacs.d,arthurl\/emacs.d,DarkThrone\/emacs.d,alant\/emacs.d,jthetzel\/emacs.d,qinshulei\/emacs.d,boblannon\/emacs.d,svenyurgensson\/emacs.d,atreeyang\/emacs.d,bibaijin\/emacs.d,me020523\/emacs.d,ruiyang\/emacs.d,zhaotai\/.emacs.d,hophacker\/emacs.d,Jadecity\/PurcellEmacs.d,Guoozz\/emacs.d,gsmlg\/emacs.d,carlosliu\/emacs.d,kongfy\/emacs.d,blueseason\/emacs.d,ruiyang\/emacs.d,lujianmei\/emacs.d,zuoshifan\/emacs.d,blueabysm\/emacs.d,wenpincui\/emacs.d,cjqw\/emacs.d,YangXin\/emacs.d,krzysz00\/emacs.d,lromang\/emacs.d,fengxl\/emacs.d,hkcqr\/emacs.d,46do14\/emacs.d,dcorking\/emacs.d,YangXin\/emacs.d,Togal\/emacs.d,kindoblue\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,Enzo-Liu\/emacs.d,renatoriccio\/emacs.d,zuoshifan\/emacs.d,ernest-dzf\/emacs.d,danfengcao\/emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,roxolan\/emacs.d,mpwang\/emacs.d"} {"commit":"23fc9a3fdd418116bd88bd82d36cd1bd37eaf879","old_file":"emacs.d\/config\/config-server.el","new_file":"emacs.d\/config\/config-server.el","old_contents":"(server-start)\n\n;; make C-x k work for emacsclient sessions too.\n(add-hook 'server-switch-hook\n (lambda ()\n (when server-buffer-clients\n (local-set-key (kbd \"C-x k\") 'server-edit)\n )\n )\n )\n","new_contents":"(server-start)\n\n(defun my\/kill-buffer-or-server-edit ()\n (interactive)\n (if server-buffer-clients\n (server-edit)\n (kill-buffer)\n )\n )\n\n;; make C-x k work for emacsclient sessions too.\n(add-hook 'server-switch-hook\n (lambda ()\n (local-set-key (kbd \"C-x k\") 'my\/kill-buffer-or-server-edit)\n )\n )\n","subject":"Fix handling of C-x k.","message":"Fix handling of C-x k.\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"shaleh\/dot-files"} {"commit":"de4c3b9495d2cbfb00b180ac35b241d599f0a5e7","old_file":"lisp\/init-osx-keys.el","new_file":"lisp\/init-osx-keys.el","old_contents":"(when *is-a-mac*\n (setq mac-command-modifier 'meta)\n (setq mac-option-modifier 'meta)\n (setq default-input-method \"MacOSX\")\n ;; Make mouse wheel \/ trackpad scrolling less jerky\n (setq mouse-wheel-scroll-amount '(1\n ((shift) . 5)\n ((control))))\n (dolist (multiple '(\"\" \"double-\" \"triple-\"))\n (dolist (direction '(\"right\" \"left\"))\n (global-set-key (kbd (concat \"<\" multiple \"wheel-\" direction \">\")) 'ignore)))\n (global-set-key (kbd \"M-`\") 'ns-next-frame)\n (global-set-key (kbd \"M-h\") 'ns-do-hide-emacs)\n (global-set-key (kbd \"M-˙\") 'ns-do-hide-others)\n (after-load 'nxml-mode\n (define-key nxml-mode-map (kbd \"M-h\") nil))\n (global-set-key (kbd \"M-ˍ\") 'ns-do-hide-others) ;; what describe-key reports for cmd-option-h\n )\n\n\n(provide 'init-osx-keys)\n","new_contents":"(when *is-a-mac*\n (setq mac-command-modifier 'meta)\n (setq mac-option-modifier 'none)\n (setq default-input-method \"MacOSX\")\n ;; Make mouse wheel \/ trackpad scrolling less jerky\n (setq mouse-wheel-scroll-amount '(1\n ((shift) . 5)\n ((control))))\n (dolist (multiple '(\"\" \"double-\" \"triple-\"))\n (dolist (direction '(\"right\" \"left\"))\n (global-set-key (kbd (concat \"<\" multiple \"wheel-\" direction \">\")) 'ignore)))\n (global-set-key (kbd \"M-`\") 'ns-next-frame)\n (global-set-key (kbd \"M-h\") 'ns-do-hide-emacs)\n (global-set-key (kbd \"M-˙\") 'ns-do-hide-others)\n (after-load 'nxml-mode\n (define-key nxml-mode-map (kbd \"M-h\") nil))\n (global-set-key (kbd \"M-ˍ\") 'ns-do-hide-others) ;; what describe-key reports for cmd-option-h\n )\n\n\n(provide 'init-osx-keys)\n","subject":"Change meta key to none","message":"Change meta key to none\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"shafayetkhan\/emacs.d"} {"commit":"3e017598ba6762e7d27e9cbc9f47a28f8dec53b7","old_file":"modes\/switch-window-conf.el","new_file":"modes\/switch-window-conf.el","old_contents":";;; switch-window-conf.el -- Settings for switch-window.\n(eval-when-compile\n (require 'switch-window))\n\n(custom-set-variables\n '(switch-window-shortcut-style 'qwerty)\n '(switch-window-increase 8)\n '(switch-window-timeout 5)\n '(switch-window-threshold 2)\n '(switch-window-preferred 'ivy)\n '(switch-window-configuration-change-hook-inhibit t))\n\n;;; switch-window-conf.el ends here\n","new_contents":";;; switch-window-conf.el -- Settings for switch-window.\n;;\n;;; Commentary:\n;;\n;;; Code:\n(require 'switch-window)\n\n(custom-set-variables\n '(switch-window-shortcut-style 'qwerty)\n '(switch-window-minibuffer-shortcut ?z)\n '(switch-window-timeout 5)\n '(switch-window-threshold 2)\n '(switch-window-preferred 'ivy)\n '(switch-window-configuration-change-hook-inhibit t)\n '(switch-window-input-style 'minibuffer))\n\n;;; switch-window-conf.el ends here\n","subject":"Update settings to better support EXWM","message":"switch-window: Update settings to better support EXWM\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"81e1ee7915aa362418b2a3b8c7639931d51a6ae3","old_file":"emacs\/emacs.d\/my-region-bindings-mode.el","new_file":"emacs\/emacs.d\/my-region-bindings-mode.el","old_contents":"(require 'region-bindings-mode)\n(require 'multiple-cursors)\n\n(region-bindings-mode-enable)\n\n(bind-keys :map region-bindings-mode-map\n (\"p\" . previous-line)\n (\"e\" . end-of-line)\n (\"a\" . beginning-of-line)\n (\"w\" . forward-word)\n (\"b\" . backward-word)\n (\"a\" . mc\/mark-all-like-this)\n (\"n\" . mc\/mark-next-like-this)\n (\"l\" . mc\/edit-lines))\n\n(add-to-list 'region-bindings-mode-disable-predicates\n 'minibufferp)\n","new_contents":"(require 'region-bindings-mode)\n(require 'multiple-cursors)\n\n(region-bindings-mode-enable)\n\n(bind-keys :map region-bindings-mode-map\n (\"l\" . mc\/edit-lines)\n (\"w\" . count-words-region)\n (\"u\" . upcase-region)\n (\"d\" . downcase-region)\n (\"m\" . apply-macro-to-region-lines)\n (\"C\" . my-duplicate-line-or-region)\n (\";\" . my-comment-line-or-region)\n (\"SPC\" . exchange-point-and-mark)\n\n (\"a\" . mc\/mark-all-like-this)\n (\"n\" . mc\/mark-next-like-this)\n )\n\n(add-to-list 'region-bindings-mode-disable-predicates\n 'minibufferp)\n","subject":"Add keys when region is active","message":"Add keys when region is active\n","lang":"Emacs Lisp","license":"mit","repos":"sri\/dotfiles,sri\/dotfiles,sri\/dotfiles"} {"commit":"b80f5daf5965ca4b8db6a4fb4d3b6eb324627d6f","old_file":"modules\/lang\/scala\/packages.el","new_file":"modules\/lang\/scala\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; lang\/scala\/packages.el\n\n(package! sbt-mode :pin \"633a315ad4\")\n(package! scala-mode :pin \"46bb948345\")\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; lang\/scala\/packages.el\n\n(package! sbt-mode :pin \"633a315ad4\")\n(package! scala-mode :pin \"46bb948345\")\n\n(when (featurep! +lsp)\n (package! lsp-metals :pin \"5468b638cd81b7d9ce9edc652c281b28bd775c23\"))\n","subject":"Add separate package for lsp-metals","message":"Add separate package for lsp-metals\n\nlsp-metals was extracted out of lsp-emacs into a separate package. This\nchange adds that separate package to the scala module when the lsp\nfeature is selected.\n\nFixes hlissner\/doom-emacs#3362\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs"} {"commit":"5f14b83b93c55074c46debf530b9001d6d37b139","old_file":"emacs\/ar\/ar-shell.el","new_file":"emacs\/ar\/ar-shell.el","old_contents":";;; ar-shell.el --- Shell support.\n\n;;; Commentary:\n;; Shell helpers.\n\n(require 'comint)\n\n(defun ar\/shell-cd (dir-path)\n \"Change shell current working directory to DIR-PATH.\n\nLike shell-pop--cd-to-cwd-shell, but without recentering.\"\n (unless (string-equal mode-name \"Shell\")\n (error \"Not in Shell mode\"))\n (message mode-name)\n (goto-char (point-max))\n (comint-kill-input)\n (insert (concat \"cd \" (shell-quote-argument dir-path)))\n (let ((comint-process-echoes t))\n (comint-send-input)))\n\n(provide 'ar-shell)\n\n;;; ar-shell.el ends here\n","new_contents":";;; ar-shell.el --- Shell support.\n\n;;; Commentary:\n;; Shell helpers.\n\n(require 'comint)\n\n(defun ar\/shell-cd (dir-path)\n \"Change shell current working directory to DIR-PATH.\n\nLike shell-pop--cd-to-cwd-shell, but without recentering.\"\n (unless (string-equal mode-name \"Shell\")\n (error \"Not in Shell mode\"))\n (message mode-name)\n (goto-char (point-max))\n (comint-kill-input)\n (insert (concat \"cd \" (shell-quote-argument dir-path)))\n (let ((comint-process-echoes t))\n (comint-send-input)))\n\n(defun ar\/shell-send-command (command)\n \"Send COMMAND to shell mode.\"\n (assert (string-equal mode-name \"Shell\") nil \"Not in Shell mode\")\n (message mode-name)\n (goto-char (point-max))\n (comint-kill-input)\n (insert command)\n (let ((comint-process-echoes t))\n (comint-send-input)))\n\n(provide 'ar-shell)\n\n;;; ar-shell.el ends here\n","subject":"Send command to shell mode","message":"Send command to shell mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"xenodium\/dotfiles,xenodium\/dotfiles"} {"commit":"af4c1dd40ab77d26db790853001b5bff5274749d","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n ivy\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +dante)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n idris\n\n :term\n term\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n ;;(write ; emacs as a word processor (latex + org + markdown)\n ;; +wordnut ; wordnet (wn) search\n ;; +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n ivy\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n idris\n\n :term\n term\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n ;;(write ; emacs as a word processor (latex + org + markdown)\n ;; +wordnut ; wordnet (wn) search\n ;; +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","subject":"Switch back to lsp for haskell in emacs","message":"Switch back to lsp for haskell in emacs\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"df11105874481aa50affc888bd50c4805e370c9d","old_file":"emacs\/.emacs.d\/config\/my-lookfeel.el","new_file":"emacs\/.emacs.d\/config\/my-lookfeel.el","old_contents":";; linum-relative: Vim-like relative line numbers\n;; https:\/\/github.com\/coldnew\/linum-relative\n(use-package linum-relative\n :ensure linum-relative\n :init\n (linum-relative-global-mode 1))\n\n;; Disable the intro screen & message\n(setq inhibit-splash-screen t\n inhibit-startup-echo-area-message t\n inhibit-startup-message t)\n\n;; Sane line wrapping\n(visual-line-mode 1)\n\n;; Always trail newline\n(setq require-final-newline t)\n\n;; Disable the toolbar\n(tool-bar-mode -1)\n\n(provide 'my-lookfeel)\n","new_contents":";; linum-relative: Vim-like relative line numbers\n;; https:\/\/github.com\/coldnew\/linum-relative\n(use-package linum-relative\n :ensure linum-relative\n :init\n (linum-relative-global-mode 1))\n\n;; atom-one-dark-theme: An Emacs port of the Atom One Dark theme from Atom.io.\n;; https:\/\/github.com\/jonathanchu\/atom-one-dark-theme\n(use-package atom-one-dark-theme\n :ensure atom-one-dark-theme\n :config\n (progn\n (unless noninteractive\n (load-theme 'atom-one-dark t))))\n\n;; Disable the intro screen & message\n(setq inhibit-splash-screen t\n inhibit-startup-echo-area-message t\n inhibit-startup-message t)\n\n;; Sane line wrapping\n(visual-line-mode 1)\n\n;; Always trail newline\n(setq require-final-newline t)\n\n;; Disable the toolbar\n(tool-bar-mode -1)\n\n(provide 'my-lookfeel)\n","subject":"Add atom-one-dark-theme package to Emacs","message":"Add atom-one-dark-theme package to Emacs\n\nChange colourscheme to look like that of the Atom editor.\n","lang":"Emacs Lisp","license":"unlicense","repos":"Llewxamris\/dotfiles"} {"commit":"300261f4050a761d3f307634b1f366d89209aa4c","old_file":"config\/eshell-parameters.el","new_file":"config\/eshell-parameters.el","old_contents":";; Emacs configuration\n\n;; Parameters for eshell.\n\n;; Make eshell open in a new window instead of replacing the current buffer in\n;; the current window.\n(setq-default display-buffer-alist '((\"\\\\`\\\\*e?shell\" display-buffer-pop-up-window)))\n\n;; Set eshell data directory and alias file.\n(setq-default eshell-directory-name \"~\/.emacs.d\/eshell\")\n(setq-default eshell-aliases-file \"~\/.emacs.d\/eshell\/aliases\")\n\n","new_contents":";; Emacs configuration\n\n;; Parameters for eshell.\n\n;; Make eshell open in a new window instead of replacing the current buffer in\n;; the current window.\n(setq-default display-buffer-alist '((\"\\\\`\\\\*e?shell\" display-buffer-pop-up-window)))\n\n;; Set eshell data directory and alias file.\n(setq-default eshell-directory-name \"~\/.emacs.d\/eshell\"\n eshell-aliases-file \"~\/.emacs.d\/eshell\/aliases\")\n\n","subject":"Use less calls to setq-default","message":"Use less calls to setq-default\n","lang":"Emacs Lisp","license":"mit","repos":"Guilz\/emacs.d"} {"commit":"acd2d3649a553fe0c191d22c132cc366de2ca8db","old_file":"user-lisp\/lsp-customisations.el","new_file":"user-lisp\/lsp-customisations.el","old_contents":"\n(use-package lsp-mode\n :config\n ;; For some reason icons aren't currently rendering, so don't show them.\n (setq lsp-modeline-code-actions-segments '(count name))\n\n (setq lsp-rust-analyzer-cargo-watch-command \"clippy\")\n (setq lsp-rust-clippy-preference \"on\")\n\n (set-face-attribute 'lsp-lsp-flycheck-warning-unnecessary-face nil :foreground nil)\n\n ;; Don't override my navigation bindings.\n (define-key lsp-signature-mode-map (kbd \"M-n\") nil)\n (define-key lsp-signature-mode-map (kbd \"M-p\") nil)\n\n (define-key lsp-mode-map (kbd \"C-c f\") #'lsp-format-buffer)\n (define-key lsp-mode-map (kbd \"C-c r\") #'lsp-rename)\n\n (add-hook 'rust-mode-hook #'lsp-mode))\n\n(provide 'lsp-customisations)\n","new_contents":"\n(use-package lsp-mode\n :config\n ;; For some reason icons aren't currently rendering, so don't show them.\n (setq lsp-modeline-code-actions-segments '(count name))\n\n (setq lsp-rust-analyzer-cargo-watch-command \"clippy\")\n (setq lsp-rust-clippy-preference \"on\")\n\n (set-face-attribute 'lsp-lsp-flycheck-warning-unnecessary-face nil :foreground nil)\n\n ;; Don't override my navigation bindings.\n (define-key lsp-signature-mode-map (kbd \"M-n\") nil)\n (define-key lsp-signature-mode-map (kbd \"M-p\") nil)\n\n (define-key lsp-mode-map (kbd \"C-c f\") #'lsp-format-buffer)\n (define-key lsp-mode-map (kbd \"C-c r\") #'lsp-rename)\n ;; Mnemonic: show references in Xref.\n (define-key lsp-mode-map (kbd \"C-c x\") #'lsp-find-references)\n\n (add-hook 'rust-mode-hook #'lsp-mode))\n\n(provide 'lsp-customisations)\n","subject":"Add keybinding for xref in LSP","message":"Add keybinding for xref in LSP\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"b117a8a57921df883c7d0f157e97a9c6d091d63e","old_file":"Packages\/settings\/setup-theme.el","new_file":"Packages\/settings\/setup-theme.el","old_contents":"(use-package spacemacs-theme\n :defer t\n :init\n (setq default-frame-alist (quote ((fullscreen . maximized))))\n (load-theme 'spacemacs-dark t)\n )\n\n(use-package spaceline\n :defer t\n :init\n (setq powerline-default-separator 'arrow-fade)\n )\n\n(use-package spaceline-config\n :demand t\n :ensure spaceline\n :config\n (spaceline-define-segment line-column\n \"The current line and column numbers.\"\n \"l:%l c:%2c\")\n (spaceline-helm-mode 1)\n (spaceline-spacemacs-theme)\n )\n\n(provide 'setup-theme)\n","new_contents":"(use-package spacemacs-theme\n :defer t\n :init\n (setq default-frame-alist (quote ((fullscreen . maximized))))\n (load-theme 'spacemacs-dark t)\n )\n\n(use-package spaceline\n :defer t\n :init\n (setq powerline-default-separator 'slant)\n (setq ns-use-srgb-colorspace nil)\n (setq powerline-height 15)\n )\n\n(use-package spaceline-config\n :demand t\n :ensure spaceline\n :config\n (spaceline-define-segment line-column\n \"The current line and column numbers.\"\n \"l:%l c:%2c\")\n (spaceline-helm-mode 1)\n (spaceline-spacemacs-theme)\n )\n\n(provide 'setup-theme)\n","subject":"Disable srgb colorspace and set powerline-height to 15","message":"Disable srgb colorspace and set powerline-height to 15\n","lang":"Emacs Lisp","license":"mit","repos":"hsienchiaolee\/aquamacs"} {"commit":"4441aed29aba572f86b20e046409e5eb682adb94","old_file":"init-package\/init-smartparens.el","new_file":"init-package\/init-smartparens.el","old_contents":"(use-package smartparens-config\n :commands smartparens-mode\n :init\n (add-to-hooks 'smartparens-mode '(prog-mode-hook\n erlang-mode-hook\n )))\n","new_contents":"(use-package smartparens-config\n :commands smartparens-mode\n :init\n (add-to-hooks 'smartparens-mode '(erlang-mode-hook\n markdown-mode-hook\n prog-mode-hook\n )))\n","subject":"Add smartparens to markdown mode hook","message":"Add smartparens to markdown mode hook\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"34dfeff044bf90934ff591d3652d8f4f7553f138","old_file":"setup-files\/setup-git-link.el","new_file":"setup-files\/setup-git-link.el","old_contents":";; Time-stamp: <2016-02-05 16:30:43 kmodi>\n\n;; Git Link\n;; https:\/\/github.com\/sshaw\/git-link\n\n(use-package git-link\n :bind (:map region-bindings-mode-map\n (\"g\" . modi\/git-link-force-hash))\n :config\n (progn\n (defun modi\/git-link-force-hash ()\n \"This function is the same as `git-link' except that it copies the link\nwith the commit hash in the link even if branch name is available.\"\n (interactive)\n (let ((git-link-use-commit t))\n (call-interactively 'git-link)))))\n\n\n(provide 'setup-git-link)\n","new_contents":";; Time-stamp: <2016-02-17 11:00:18 kmodi>\n\n;; Git Link\n;; https:\/\/github.com\/sshaw\/git-link\n\n(use-package git-link\n :bind (:map region-bindings-mode-map\n (\"g\" . modi\/git-link-force-hash))\n :config\n (progn\n (defun modi\/git-link-force-hash ()\n \"This function is the same as `git-link' except that it copies the link\nwith the commit hash in the link even if branch name is available.\"\n (interactive)\n (let ((git-link-use-commit t))\n (call-interactively 'git-link)))\n\n ;; Add support for git.savannah.gnu.org\n (add-to-list 'git-link-remote-alist '(\"git.savannah.gnu.org\" git-link-savannah-gnu))\n (add-to-list 'git-link-commit-remote-alist '(\"git.savannah.gnu.org\" git-link-commit-savannah-gnu))\n\n (defun git-link-savannah-gnu (hostname dirname filename branch commit start end)\n ;; Example: http:\/\/git.savannah.gnu.org\/cgit\/emacs.git\/tree\/lisp\/README?id=d4b93e11a519cf71beca69654fda158d01a26c3b#n1\n (format \"http:\/\/%s\/cgit\/%s\/tree\/%s?id=%s%s\"\n hostname\n (replace-regexp-in-string \"^r\/\\\\(.*\\\\)\" \"\\\\1.git\" dirname)\n filename\n (or branch commit)\n (format \"#n%s\" start)))\n\n (defun git-link-commit-savannah-gnu (hostname dirname commit)\n ;; Example: http:\/\/git.savannah.gnu.org\/cgit\/emacs.git\/commit\/?id=2abcb06cab03cf9040348146fcc0e3e93ae24a58\n (format \"http:\/\/%s\/cgit\/%s\/commit\/?id=%s\"\n hostname\n (replace-regexp-in-string \"^r\/\\\\(.*\\\\)\" \"\\\\1.git\" dirname)\n commit))))\n\n\n(provide 'setup-git-link)\n","subject":"Add git-link support for emacs source code","message":"Add git-link support for emacs source code\n\n- for git.savannah.gnu.org repos\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"6f32ff6797db1b61d54bc4699196460d9ac9d2ef","old_file":"setup-files\/setup-paradox.el","new_file":"setup-files\/setup-paradox.el","old_contents":";; Time-stamp: <2016-05-19 21:38:52 kmodi>\n\n;; Paradox\n;; https:\/\/github.com\/Malabarba\/paradox\n\n(use-package paradox\n :defer t\n :config\n (progn\n ;; The \"paradox-token\" file is supposed to contain this line:\n ;; (setq paradox-github-token \"\")\n (load (locate-user-emacs-file \"paradox-token\") :noerror :nomessage)\n\n (setq paradox-lines-per-entry 1)\n (setq paradox-automatically-star t)\n\n (paradox-enable)))\n\n\n(provide 'setup-paradox)\n","new_contents":";; Time-stamp: <2017-04-11 17:55:49 kmodi>\n\n;; Paradox\n;; https:\/\/github.com\/Malabarba\/paradox\n\n(use-package paradox\n :defer 10\n :config\n (progn\n ;; The \"paradox-token\" file is supposed to contain this line:\n ;; (setq paradox-github-token \"\")\n (load (locate-user-emacs-file \"paradox-token\") :noerror :nomessage)\n\n (setq paradox-lines-per-entry 1)\n (setq paradox-automatically-star t)\n\n (paradox-enable)))\n\n\n(provide 'setup-paradox)\n","subject":"Load paradox after idle time of 10 seconds","message":"Load paradox after idle time of 10 seconds\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"baa738ecd3937811b8e173eca68138b807dcfae5","old_file":"site-lisp\/clgc-tempo.el","new_file":"site-lisp\/clgc-tempo.el","old_contents":"(require 'tempo)\n;; (setq tempo-interactive t)\n\n(tempo-define-template \"org-digraph\"\n '(> \"#+begin_src dot :file \" (p \"Filename: \") \".png\\n\"\n > \"digraph G {\\n\"\n > \"}\\n\"\n > \"#+end_src\\n\"))\n\n(provide 'clgc-tempo)\n","new_contents":"(require 'tempo)\n;; (setq tempo-interactive t)\n\n(tempo-define-template \"org-digraph\"\n '(> \"#+begin_src dot :file \" (p \"Filename: \") \".png\\n\"\n > \"digraph G {\\n\"\n > \"}\\n\"\n > \"#+end_src\\n\"))\n\n(define-abbrev org-mode-abbrev-table \"dotgraph\" \"\" 'tempo-template-org-digraph)\n\n(provide 'clgc-tempo)\n","subject":"Add an abbrev binding to the digraph template","message":"Add an abbrev binding to the digraph template\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"dgtized\/dotfiles,dgtized\/dotfiles,dgtized\/dotfiles"} {"commit":"2fa4574a1148e287ee99ca6db6518475f168f3de","old_file":"emacs.el","new_file":"emacs.el","old_contents":"(setq package-archives '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\")))\n\n;; from http:\/\/stackoverflow.com\/questions\/10092322\/how-to-automatically-install-emacs-packages-by-specifying-a-list-of-package-name (Nicolas Dudebout)\n;; {{{\n(setq package-list '(ace-jump-mode\n browse-kill-ring\n auto-complete\n lua-mode\n glsl-mode\n undo-tree\n fic-mode\n web-mode\n php-mode\n auto-highlight-symbol\n org\n isearch-symbol-at-point\n ido-ubiquitous\n ido-vertical-mode\n smex\n window-number\n fuzzy\n goto-last-change\n markdown-mode\n flycheck))\n\n(package-initialize)\n\n(unless package-archive-contents\n (package-refresh-contents))\n\n(dolist (package package-list)\n (unless (package-installed-p package)\n (package-install package)))\n;; }}}\n\n(byte-recompile-directory \"~\/.emacs.d\")\n\n(add-hook 'after-init-hook (lambda () (load \"~\/.emacs.d\/init\")))\n\n;; auto puts\n(put 'set-goal-column 'disabled nil)\n(put 'upcase-region 'disabled nil)\n(put 'downcase-region 'disabled nil)\n","new_contents":"(setq package-archives '((\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\")))\n\n;; from http:\/\/stackoverflow.com\/questions\/10092322\/how-to-automatically-install-emacs-packages-by-specifying-a-list-of-package-name (Nicolas Dudebout)\n;; {{{\n(setq package-list '(ace-jump-mode\n browse-kill-ring\n auto-complete\n lua-mode\n glsl-mode\n undo-tree\n muse\n htmlize\n fic-mode\n web-mode\n php-mode\n auto-highlight-symbol\n org\n isearch-symbol-at-point\n ido-ubiquitous\n ido-vertical-mode\n smex\n window-number\n fuzzy\n goto-last-change\n markdown-mode\n flycheck))\n\n(package-initialize)\n\n(unless package-archive-contents\n (package-refresh-contents))\n\n(dolist (package package-list)\n (unless (package-installed-p package)\n (package-install package)))\n;; }}}\n\n(byte-recompile-directory \"~\/.emacs.d\")\n\n(add-hook 'after-init-hook (lambda () (load \"~\/.emacs.d\/init\")))\n\n;; auto puts\n(put 'set-goal-column 'disabled nil)\n(put 'upcase-region 'disabled nil)\n(put 'downcase-region 'disabled nil)\n","subject":"Add 'muse' and 'htmlize' packages to default install","message":"Add 'muse' and 'htmlize' packages to default install\n","lang":"Emacs Lisp","license":"mit","repos":"Plambir\/emacs-bootstrap"} {"commit":"c7ebbfb5dae843ccbad75a613ac5c9f8e339f0c0","old_file":"emacs\/emacs.d.symlink\/config\/evil-config.el","new_file":"emacs\/emacs.d.symlink\/config\/evil-config.el","old_contents":";;;; Evil mode--Vim-like stuff\n\n(require 'evil)\n(require 'key-chord)\n(require 'evil-search-highlight-persist)\n(require 'evil-surround)\n\n(key-chord-mode t)\n(global-evil-leader-mode t)\n(global-evil-surround-mode t)\n(evil-set-toggle-key \"C-M-z\") ; because f clobbering my C-z...\n\n(evil-leader\/set-leader \"\")\n(global-evil-search-highlight-persist t)\n(evil-leader\/set-key \"h\" 'evil-search-highlight-persist-remove-all)\n(key-chord-define evil-insert-state-map \"jk\" 'evil-normal-state) ; inoremap jk \n(evil-mode t)\n\n(setq evil-shift-width 2)\n\n(provide 'evil-config)\n","new_contents":";;;; Evil mode--Vim-like stuff\n\n(require 'evil)\n(require 'key-chord)\n(require 'evil-search-highlight-persist)\n(require 'evil-surround)\n\n(setq evil-shift-width 2)\n\n(key-chord-mode t)\n(global-evil-leader-mode t)\n(global-evil-surround-mode t)\n(evil-set-toggle-key \"C-M-z\") ; because f clobbering my C-z...\n\n(evil-leader\/set-leader \"\")\n(global-evil-search-highlight-persist t)\n(evil-leader\/set-key \"h\" 'evil-search-highlight-persist-remove-all)\n(key-chord-define evil-insert-state-map \"jk\" 'evil-normal-state) ; inoremap jk \n(evil-mode t)\n\n(provide 'evil-config)\n","subject":"Set evil shift width before activating evil-mode, oops","message":"Set evil shift width before activating evil-mode, oops\n","lang":"Emacs Lisp","license":"mit","repos":"alexkuang\/dotfiles,alexkuang\/dotfiles"} {"commit":"fc96d29b9101c946289e8158287cf9e11397332c","old_file":"init-python-mode.el","new_file":"init-python-mode.el","old_contents":"(autoload 'python-mode \"python-mode\" \"Python editing mode.\" t)\n(autoload 'doctest-mode \"doctest-mode\" \"Python doctest editing mode.\" t)\n\n(setq auto-mode-alist\n (append '((\"\\\\.py$\" . python-mode)\n\t\t(\"SConstruct$\" . python-mode)\n\t\t(\"SConscript$\" . python-mode))\n auto-mode-alist))\n\n(setq interpreter-mode-alist\n (cons '(\"python\" . python-mode) interpreter-mode-alist))\n\n\n;;----------------------------------------------------------------------------\n;; Pymacs and Rope for Python\n;;----------------------------------------------------------------------------\n;; See http:\/\/edward.oconnor.cx\/2008\/02\/ropemacs\n(setq pymacs-load-path\n (list (concat el-get-dir \"ropemacs\")))\n(add-hook 'python-mode-hook\n (lambda ()\n (require 'pymacs)\n (pymacs-load \"ropemacs\" \"rope-\")))\n\n\n;;----------------------------------------------------------------------------\n;; On-the-fly syntax checking via flymake\n;;----------------------------------------------------------------------------\n(setq flymake-python-pyflakes-executable \"pyflakes-2.6\")\n(require 'flymake-python)\n\n(add-hook 'python-mode-hook 'flymake-python-load)\n\n\n\n(provide 'init-python-mode)\n","new_contents":"(autoload 'python-mode \"python-mode\" \"Python editing mode.\" t)\n(autoload 'doctest-mode \"doctest-mode\" \"Python doctest editing mode.\" t)\n\n(setq auto-mode-alist\n (append '((\"\\\\.py$\" . python-mode)\n\t\t(\"SConstruct$\" . python-mode)\n\t\t(\"SConscript$\" . python-mode))\n auto-mode-alist))\n\n(setq interpreter-mode-alist\n (cons '(\"python\" . python-mode) interpreter-mode-alist))\n\n\n;;----------------------------------------------------------------------------\n;; Pymacs and Rope for Python\n;;----------------------------------------------------------------------------\n;; See http:\/\/edward.oconnor.cx\/2008\/02\/ropemacs\n(setq pymacs-load-path\n (list (concat el-get-dir \"ropemacs\")))\n(add-hook 'python-mode-hook\n (lambda ()\n (require 'pymacs)\n (pymacs-load \"ropemacs\" \"rope-\")))\n\n\n;;----------------------------------------------------------------------------\n;; On-the-fly syntax checking via flymake\n;;----------------------------------------------------------------------------\n(require 'flymake-python)\n\n(add-hook 'python-mode-hook 'flymake-python-load)\n\n\n\n(provide 'init-python-mode)\n","subject":"Remove overridden executable name for pyflakes","message":"Remove overridden executable name for pyflakes\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"cjqw\/emacs.d,zuoshifan\/emacs.d,jachinpy\/emacs.d,ruiyang\/emacs.d,mmqmzk\/emacs.d,modkzs\/emcs.d,fengxl\/emacs.d,haodaivshen\/emacs.d,farzadbekran\/emacs.d,krzysz00\/emacs.d,Enzo-Liu\/emacs.d,hkcqr\/emacs.d,scorpionis\/emacs.d,Guoozz\/emacs.d,svenyurgensson\/emacs.d,zuoshifan\/emacs.d,YangXin\/emacs.d,qinshulei\/emacs.d,baohaojun\/emacs.d,caoyuanqi\/emacs.d,pairyo\/emacs.d,LittleLmp\/emacs.d,blueabysm\/emacs.d,farzadbekran\/emacs.d,wenpincui\/emacs.d,zuoshifan\/emacs.d,roxolan\/emacs.d,bibaijin\/emacs.d,benkha\/emacs.d,qianwan\/emacs.d,shafayetkhan\/emacs.d,jthetzel\/emacs.d,zuoshifan\/emacs.d,danfengcao\/emacs.d,braveoyster\/emacs.d,zhuoyikang\/emacs.d,hophacker\/emacs.d,emuio\/emacs.d,kongfy\/emacs.d,jachinpy\/emacs.d,whizzzkid\/emacs.d,LKI\/emacs.d,alant\/emacs.d,lujianmei\/emacs.d,wegatron\/emacs.d,boblannon\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,ruiyang\/emacs.d,zuoshifan\/emacs.d,Togal\/emacs.d,dongdonghu\/.emacs.d,kindoblue\/emacs.d,jhpx\/emacs.d,gsmlg\/emacs.d,exclamaforte\/emacs.d,ernest-dzf\/emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,Jadecity\/PurcellEmacs.d,DarkThrone\/emacs.d,blueseason\/emacs.d,jkaessens\/emacs.d,zhaotai\/.emacs.d,arthurl\/emacs.d,carlosliu\/emacs.d,atreeyang\/emacs.d,ilove0518\/emacs.d,zenith-john\/emacs.d,Shanicky\/emacs.d,dhanunjaya\/emacs.d,renatoriccio\/emacs.d,YangXin\/emacs.d,cyjia\/emacs.d,zuoshifan\/emacs.d,lromang\/emacs.d,mpwang\/emacs.d,sgarciac\/emacs.d,Werewolflsp\/emacs.d,46do14\/emacs.d,lust4life\/emacs.d,dcorking\/emacs.d,me020523\/emacs.d,farzadbekran\/emacs.d,purcell\/emacs.d"} {"commit":"cd31671c1b3f4f9b55edcd5c0ff7ec1c7a22317b","old_file":"emacs\/fsharp-mode-pkg.el","new_file":"emacs\/fsharp-mode-pkg.el","old_contents":"(define-package\n \"fsharp-mode\"\n \"0.6\"\n \"F# mode for Emacs\"\n '((pos-tip \"0.4.5\"))\n","new_contents":"(define-package\n \"fsharp-mode\"\n \"0.6\"\n \"F# mode for Emacs\"\n '((pos-tip \"0.4.5\")))\n","subject":"Fix missing parenthesis in package defn","message":"Fix missing parenthesis in package defn\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"fsharp\/fsharpbinding,nosami\/xamarin-monodevelop-fsharp-addin,fsharp\/xamarin-monodevelop-fsharp-addin,nosami\/xamarin-monodevelop-fsharp-addin,Ming-Tang\/fsharpbinding,Ming-Tang\/fsharpbinding,fsharp\/xamarin-monodevelop-fsharp-addin,Ming-Tang\/fsharpbinding,fsharp\/fsharpbinding,fsharp\/fsharpbinding"} {"commit":"f91b98f0bea85295e3684402cd6ad1a9537545ef","old_file":"emacs.d\/core\/jl-base.el","new_file":"emacs.d\/core\/jl-base.el","old_contents":";; store backups in temp dir\n(setq backup-directory-alist\n `((\".*\" . ,temporary-file-directory)))\n\n;; store auto-saves in temp dir\n(setq auto-save-file-name-transforms `((\".*\" ,temporary-file-directory t))\n auto-save-list-file-prefix (concat temporary-file-directory \".auto-saves-\"))\n\n;; do not create lockfiles (.#file-name)\n(setq create-lockfiles nil)\n\n;; smooth scrolling\n(setq scroll-conservatively 10\n scroll-margin 7)\n\n\n;; show trailing whitespace\n(setq show-trailing-whitespace t\n whitespace-style '(face trailing))\n\n;; save cursor position between sessions\n(require 'saveplace)\n(setq-default save-place t)\n(setq save-place-file (expand-file-name \".places\" jl\/root-dir))\n\n;; set modifier bindings\n(setq ns-command-modifier 'meta\n ns-option-modifier 'super\n ns-function-modifier 'hyper)\n\n;; instantly display current keystrokes in mini buffer\n(setq echo-keystrokes 0.1)\n\n;; auto-indent on RET\n(define-key global-map (kbd \"RET\") 'newline-and-indent)\n\n(provide 'jl-base)\n","new_contents":";; store backups in temp dir\n(setq backup-directory-alist\n `((\".*\" . ,temporary-file-directory)))\n\n;; store auto-saves in temp dir\n(setq auto-save-file-name-transforms `((\".*\" ,temporary-file-directory t))\n auto-save-list-file-prefix (concat temporary-file-directory \".auto-saves-\"))\n\n;; do not create lockfiles (.#file-name)\n(setq create-lockfiles nil)\n\n;; create new lines on movement at EOF\n(setq next-line-add-newlines t)\n\n;; smooth scrolling\n(setq scroll-conservatively 10\n scroll-margin 7)\n\n\n;; show trailing whitespace\n(setq show-trailing-whitespace t\n whitespace-style '(face trailing))\n\n;; save cursor position between sessions\n(require 'saveplace)\n(setq-default save-place t)\n(setq save-place-file (expand-file-name \".places\" jl\/root-dir))\n\n;; set modifier bindings\n(setq ns-command-modifier 'meta\n ns-option-modifier 'super\n ns-function-modifier 'hyper)\n\n;; instantly display current keystrokes in mini buffer\n(setq echo-keystrokes 0.1)\n\n;; auto-indent on RET\n(define-key global-map (kbd \"RET\") 'newline-and-indent)\n\n(provide 'jl-base)\n","subject":"Create new lines on movement at EOF","message":"emacs: Create new lines on movement at EOF\n","lang":"Emacs Lisp","license":"mit","repos":"jdlehman\/dotfiles,jdlehman\/dotfiles"} {"commit":"4d102873bd6af120c2fcf1896c822fa725268c49","old_file":"setup-files\/setup-elisp.el","new_file":"setup-files\/setup-elisp.el","old_contents":";; Time-stamp: <2014-07-01 14:16:05 kmodi>\n\n;; Emacs Lisp Mode\n\n(defun my-emacs-lisp-mode-customizations()\n (when (boundp 'setup-linum-loaded)\n (nlinum-mode 1))\n )\n(add-hook 'emacs-lisp-mode-hook 'my-emacs-lisp-mode-customizations)\n\n\n(provide 'setup-elisp)\n","new_contents":";; Time-stamp: <2015-01-13 19:55:03 kmodi>\n\n;; Emacs Lisp Mode\n\n(defun my\/edebug-defun ()\n (interactive)\n (eval-defun :edebug))\n\n;; edebug\n(bind-keys\n :map modi-mode-map\n (\"\" . my\/edebug-defun) ; add edebug instrumentation\n (\"\" . eval-defun)) ; remove edebug instrumentation\n\n\n(provide 'setup-elisp)\n","subject":"Add bindings to quickly add and remove edebug instrumentation","message":"Add bindings to quickly add and remove edebug instrumentation\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"641d9b66da90eccb4d5d3293b8477dc092948df5","old_file":"lisp\/init-github.el","new_file":"lisp\/init-github.el","old_contents":";;; init-github.el --- Github integration -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(require 'init-git)\n\n(maybe-require-package 'yagist)\n(require-package 'bug-reference-github)\n(add-hook 'prog-mode-hook 'bug-reference-prog-mode)\n\n(maybe-require-package 'github-clone)\n(maybe-require-package 'magithub)\n\n(provide 'init-github)\n;;; init-github.el ends here\n","new_contents":";;; init-github.el --- Github integration -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(require 'init-git)\n\n(maybe-require-package 'yagist)\n(require-package 'bug-reference-github)\n(add-hook 'prog-mode-hook 'bug-reference-prog-mode)\n\n(maybe-require-package 'github-clone)\n(maybe-require-package 'forge)\n\n(provide 'init-github)\n;;; init-github.el ends here\n","subject":"Switch from magithub to forge","message":"Switch from magithub to forge\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"baohaojun\/emacs.d,sgarciac\/emacs.d,benkha\/emacs.d,lust4life\/emacs.d,emuio\/emacs.d,purcell\/emacs.d,arthurl\/emacs.d,svenyurgensson\/emacs.d,blueabysm\/emacs.d,cjqw\/emacs.d,krzysz00\/emacs.d,dcorking\/emacs.d,blueseason\/emacs.d,wegatron\/emacs.d,gsmlg\/emacs.d,qianwan\/emacs.d,braveoyster\/emacs.d"} {"commit":"4b8ac0ad3d6a8c1809d1d3694e33c892d87c7481","old_file":"modules\/ui\/fci\/config.el","new_file":"modules\/ui\/fci\/config.el","old_contents":";;; ui\/fci\/config.el -*- lexical-binding: t; -*-\n\n(defvar +fci-rule-color-function\n (lambda () (face-foreground 'line-number))\n \"Color used to draw the fill-column rule.\n\nAccepts a color string or a function that returns a color.\n\nChanges to this variable do not take effect until `fci-mode' is restarted.\")\n\n\n;;\n;; Plugins\n;;\n\n(def-package! fill-column-indicator\n :hook ((text-mode prog-mode conf-mode) . turn-on-fci-mode)\n :config\n (defun +fci|set-color ()\n \"Automatically change `fci-rule-color' based on `+fci-rule-color-function's\nreturn value. To disable this, either set `+fci-rule-color-function' to nil or\nremove `+fci|set-color' from `fci-mode-hook'.\"\n (when (functionp +fci-rule-color-function)\n (setq fci-rule-color (funcall +fci-rule-color-function))))\n (add-hook 'fci-mode-hook #'+fci|set-color)\n\n (when (featurep! :completion company)\n (add-hook 'company-completion-started-hook #'+fci|disable-when-company-activates)\n (add-hook! '(company-completion-finished-hook company-completion-cancelled-hook)\n #'+fci|enable-when-company-deactivates)))\n","new_contents":";;; ui\/fci\/config.el -*- lexical-binding: t; -*-\n\n(defvar +fci-rule-color-function\n (lambda () (face-foreground 'line-number))\n \"Color used to draw the fill-column rule.\n\nAccepts a color string or a function that returns a color.\n\nChanges to this variable do not take effect until `fci-mode' is restarted.\")\n\n\n;;\n;; Plugins\n;;\n\n(def-package! fill-column-indicator\n :hook ((text-mode prog-mode conf-mode) . turn-on-fci-mode)\n :config\n (add-hook 'org-mode-hook #'turn-off-fci-mode)\n\n (defun +fci|set-color ()\n \"Automatically change `fci-rule-color' based on `+fci-rule-color-function's\nreturn value. To disable this, either set `+fci-rule-color-function' to nil or\nremove `+fci|set-color' from `fci-mode-hook'.\"\n (when (functionp +fci-rule-color-function)\n (setq fci-rule-color (funcall +fci-rule-color-function))))\n (add-hook 'fci-mode-hook #'+fci|set-color)\n\n (when (featurep! :completion company)\n (add-hook 'company-completion-started-hook #'+fci|disable-when-company-activates)\n (add-hook! '(company-completion-finished-hook company-completion-cancelled-hook)\n #'+fci|enable-when-company-deactivates)))\n","subject":"Disable fci-mode in org-mode by default","message":"Disable fci-mode in org-mode by default\n\nToo many issues caused by variable font and icon sizes in org-mode (see\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom"} {"commit":"fe1c8d8e4b16dd4bfe5b324911fd306f85003d20","old_file":"init-clojure.el","new_file":"init-clojure.el","old_contents":"(add-hook 'clojure-mode-hook (lambda () (enable-paredit clojure-mode-map)))\n\n(setq clojure-src-root (expand-file-name \"~\/Projects\/External\"))\n(setq swank-clojure-extra-vm-args (list \"-server\"\n \"-Xmx1024m\"\n \"-XX:+UseConcMarkSweepGC\"\n \"-XX:+UseCompressedOops\"\n \"-XX:+DoEscapeAnalysis\"))\n\n(add-hook 'slime-repl-mode-hook 'slime-redirect-inferior-output)\n\n(eval-after-load \"viper\"\n '(add-to-list 'viper-vi-state-mode-list 'clojure-mode))\n\n(provide 'init-clojure)\n","new_contents":"(add-hook 'clojure-mode-hook (lambda () (enable-paredit clojure-mode-map)))\n\n(setq clojure-src-root (expand-file-name \"~\/Projects\/External\"))\n(setq swank-clojure-extra-vm-args (list \"-server\"\n \"-Xmx1024m\"\n \"-XX:+UseConcMarkSweepGC\"\n \"-XX:+UseCompressedOops\"\n \"-XX:+DoEscapeAnalysis\"))\n\n(add-hook 'slime-repl-mode-hook 'slime-redirect-inferior-output)\n\n(eval-after-load \"viper\"\n '(add-to-list 'viper-vi-state-mode-list 'clojure-mode))\n\n(eval-after-load \"gist\"\n '(add-to-list 'gist-supported-modes-alist '(clojure-mode . \".clj\")))\n\n(provide 'init-clojure)\n","subject":"Add clojure to list of supported languages in gist.el","message":"Add clojure to list of supported languages in gist.el\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"braveoyster\/emacs.d,zuoshifan\/emacs.d,46do14\/emacs.d,zuoshifan\/emacs.d,pairyo\/emacs.d,dongdonghu\/.emacs.d,modkzs\/emcs.d,YangXin\/emacs.d,hophacker\/emacs.d,carlosliu\/emacs.d,Guoozz\/emacs.d,jachinpy\/emacs.d,jachinpy\/emacs.d,cjqw\/emacs.d,whizzzkid\/emacs.d,exclamaforte\/emacs.d,zuoshifan\/emacs.d,zhuoyikang\/emacs.d,sgarciac\/emacs.d,danfengcao\/emacs.d,kindoblue\/emacs.d,benkha\/emacs.d,cyjia\/emacs.d,shafayetkhan\/emacs.d,Shanicky\/emacs.d,fengxl\/emacs.d,renatoriccio\/emacs.d,Werewolflsp\/emacs.d,farzadbekran\/emacs.d,Togal\/emacs.d,krzysz00\/emacs.d,lromang\/emacs.d,scorpionis\/emacs.d,caoyuanqi\/emacs.d,me020523\/emacs.d,LittleLmp\/emacs.d,roxolan\/emacs.d,farzadbekran\/emacs.d,jthetzel\/emacs.d,blueseason\/emacs.d,hkcqr\/emacs.d,zenith-john\/emacs.d,kongfy\/emacs.d,blueabysm\/emacs.d,gsmlg\/emacs.d,zuoshifan\/emacs.d,jkaessens\/emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,Jadecity\/PurcellEmacs.d,svenyurgensson\/emacs.d,LKI\/emacs.d,lust4life\/emacs.d,wegatron\/emacs.d,emuio\/emacs.d,farzadbekran\/emacs.d,arthurl\/emacs.d,DarkThrone\/emacs.d,zuoshifan\/emacs.d,lujianmei\/emacs.d,bibaijin\/emacs.d,mmqmzk\/emacs.d,qianwan\/emacs.d,purcell\/emacs.d,atreeyang\/emacs.d,qinshulei\/emacs.d,mpwang\/emacs.d,boblannon\/emacs.d,dhanunjaya\/emacs.d,Enzo-Liu\/emacs.d,YangXin\/emacs.d,baohaojun\/emacs.d,haodaivshen\/emacs.d,ruiyang\/emacs.d,dcorking\/emacs.d,wenpincui\/emacs.d,alant\/emacs.d,ernest-dzf\/emacs.d,zuoshifan\/emacs.d,zhaotai\/.emacs.d,ilove0518\/emacs.d,farzadbekran\/emacs.d,ruiyang\/emacs.d,jhpx\/emacs.d"} {"commit":"0b4716822f6aa77075919b9b31956751d8fd8523","old_file":".emacs.d\/lisp\/pjs-stardica.el","new_file":".emacs.d\/lisp\/pjs-stardica.el","old_contents":";;; pjs-stardica.el --- Stardica code and config -*- lexical-binding: t; -*-\n;;; Commentary:\n;;; Code:\n(require 'pjs)\n(setq pjs-inhibit-clojure-align-on-save 't)\n(setq pjs-inhibit-cleanup-on-save 't)\n(setq default-directory \"~\/\")\n\n(require 'org)\n(require 'projectile)\n(setq projectile-project-root-files nil)\n\n(add-to-list 'org-agenda-files \"~\/clubhouse\/clubhouse.org\" t)\n\n(remove-hook 'prog-mode-hook 'whitespace-mode)\n\n(use-package clubhouse-backend\n :load-path \"~\/src\/backend\/elisp\"\n :hook (clojure-mode . clubhouse-backend-font-lock)\n :bind ((\"C-c C-r\" . clubhouse-backend-goto-defresource)))\n\n(provide 'pjs-stardica)\n;;; pjs-stardica.el ends here\n","new_contents":";;; pjs-stardica.el --- Stardica code and config -*- lexical-binding: t; -*-\n;;; Commentary:\n;;; Code:\n(require 'pjs)\n(setq pjs-inhibit-clojure-align-on-save 't)\n(setq pjs-inhibit-cleanup-on-save 't)\n(setq default-directory \"~\/\")\n\n(require 'org)\n(require 'projectile)\n(setq projectile-project-root-files nil)\n\n(add-to-list 'org-agenda-files \"~\/clubhouse\/clubhouse.org\" t)\n\n(remove-hook 'prog-mode-hook 'whitespace-mode)\n\n(use-package clubhouse-backend\n :load-path \"~\/src\/backend\/elisp\"\n :if (file-exists-p \"~\/src\/backend\/elisp\")\n :hook (clojure-mode . clubhouse-backend-font-lock)\n :commands (clubhouse-backend-jack-in-dev-system)\n :bind ((\"C-c C-r\" . clubhouse-backend-goto-defresource)))\n\n(provide 'pjs-stardica)\n;;; pjs-stardica.el ends here\n","subject":"Add dev-system jack-in as command","message":"Add dev-system jack-in as command\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"pjstadig\/dotfiles,pjstadig\/dotfiles"} {"commit":"102c6d2ad4b7ffa3a70813586d0363704309894f","old_file":"lisp\/init-xterm.el","new_file":"lisp\/init-xterm.el","old_contents":"(require 'init-frame-hooks)\n\n(global-set-key [mouse-4] (lambda () (interactive) (scroll-down 1)))\n(global-set-key [mouse-5] (lambda () (interactive) (scroll-up 1)))\n\n(autoload 'mwheel-install \"mwheel\")\n\n(defun sanityinc\/console-frame-setup ()\n (xterm-mouse-mode 1) ; Mouse in a terminal (Use shift to paste with middle button)\n (mwheel-install))\n\n\n\n(add-hook 'after-make-console-frame-hooks 'sanityinc\/console-frame-setup)\n\n(provide 'init-xterm)\n","new_contents":"(require 'init-frame-hooks)\n\n(global-set-key [mouse-4] (lambda () (interactive) (scroll-down 1)))\n(global-set-key [mouse-5] (lambda () (interactive) (scroll-up 1)))\n\n(defun sanityinc\/console-frame-setup ()\n (xterm-mouse-mode 1) ; Mouse in a terminal (Use shift to paste with middle button)\n (mwheel-install))\n\n\n\n(add-hook 'after-make-console-frame-hooks 'sanityinc\/console-frame-setup)\n\n(provide 'init-xterm)\n","subject":"Remove defunct autoload for mwheel-install","message":"Remove defunct autoload for mwheel-install\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"lust4life\/emacs.d,cjqw\/emacs.d,dcorking\/emacs.d,purcell\/emacs.d,kongfy\/emacs.d,gsmlg\/emacs.d,emuio\/emacs.d,blueseason\/emacs.d,baohaojun\/emacs.d,sgarciac\/emacs.d,qianwan\/emacs.d,me020523\/emacs.d,arthurl\/emacs.d,svenyurgensson\/emacs.d,roxolan\/emacs.d,kindoblue\/emacs.d,wegatron\/emacs.d,braveoyster\/emacs.d,krzysz00\/emacs.d,blueabysm\/emacs.d,benkha\/emacs.d,mmqmzk\/emacs.d"} {"commit":"78aa98e1f2b9fb279743ef061315f9426db2c7c9","old_file":"init-package\/init-yasnippet.el","new_file":"init-package\/init-yasnippet.el","old_contents":"(require 'yasnippet)\n(require 'helm-c-yasnippet)\n(setq helm-c-yas-space-match-any-greedy t)\n(setq yas-snippet-dirs '((concat user-emacs-directory \"\/snippets\")))\n(yas-global-mode 1)\n","new_contents":"(require 'yasnippet)\n(require 'helm-c-yasnippet)\n(setq helm-c-yas-space-match-any-greedy t)\n(setq yas-snippet-dirs '(\"~\/.emacs.d\/snippets\"))\n(yas-global-mode 1)\n","subject":"Fix path to new yas yasnippet","message":"Fix path to new yas yasnippet\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"a5df5cea11523be8183d1088523ad35d16da341d","old_file":"lisp\/init-dired.el","new_file":"lisp\/init-dired.el","old_contents":";;; init-dired.el --- Dired customisations -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(setq-default dired-dwim-target t)\n\n;; Prefer g-prefixed coreutils version of standard utilities when available\n(let ((gls (executable-find \"gls\")))\n (when gls (setq insert-directory-program gls)))\n\n(when (maybe-require-package 'diredfl)\n (after-load 'dired\n (diredfl-global-mode)))\n\n(after-load 'dired\n (setq dired-recursive-deletes 'top)\n (define-key dired-mode-map [mouse-2] 'dired-find-file)\n (define-key dired-mode-map (kbd \"C-c C-q\") 'wdired-change-to-wdired-mode))\n\n(when (maybe-require-package 'diff-hl)\n (after-load 'dired\n (add-hook 'dired-mode-hook 'diff-hl-dired-mode)))\n\n(provide 'init-dired)\n;;; init-dired.el ends here\n","new_contents":";;; init-dired.el --- Dired customisations -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(setq-default dired-dwim-target t)\n\n;; Prefer g-prefixed coreutils version of standard utilities when available\n(let ((gls (executable-find \"gls\")))\n (when gls (setq insert-directory-program gls)))\n\n(when (maybe-require-package 'diredfl)\n (after-load 'dired\n (diredfl-global-mode)\n (require 'dired-x)))\n\n;; Hook up dired-x global bindings without loading it up-front\n(define-key ctl-x-map \"\\C-j\" 'dired-jump)\n(define-key ctl-x-4-map \"\\C-j\" 'dired-jump-other-window)\n\n(after-load 'dired\n (setq dired-recursive-deletes 'top)\n (define-key dired-mode-map [mouse-2] 'dired-find-file)\n (define-key dired-mode-map (kbd \"C-c C-q\") 'wdired-change-to-wdired-mode))\n\n(when (maybe-require-package 'diff-hl)\n (after-load 'dired\n (add-hook 'dired-mode-hook 'diff-hl-dired-mode)))\n\n(provide 'init-dired)\n;;; init-dired.el ends here\n","subject":"Add dired-jump bindings (C-x C-j, C-x 4 C-j)","message":"Add dired-jump bindings (C-x C-j, C-x 4 C-j)\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"gsmlg\/emacs.d,purcell\/emacs.d,braveoyster\/emacs.d,lust4life\/emacs.d,svenyurgensson\/emacs.d,krzysz00\/emacs.d,wegatron\/emacs.d,qianwan\/emacs.d,blueabysm\/emacs.d,benkha\/emacs.d,dcorking\/emacs.d,cjqw\/emacs.d,arthurl\/emacs.d,emuio\/emacs.d,sgarciac\/emacs.d,blueseason\/emacs.d,baohaojun\/emacs.d"} {"commit":"a6b2f312901ee177e48b7ebf6ee57bd95d7e37b2","old_file":"layers\/markdown\/markdown-init.el","new_file":"layers\/markdown\/markdown-init.el","old_contents":"(use-package markdown-mode\n :ensure t\n :commands (markdown-mode gfm-mode)\n :mode ((\"README\\\\.md\\\\'\" . gfm-mode)\n (\"\\\\.md\\\\'\" . markdown-mode)\n (\"\\\\.markdown\\\\'\" . markdown-mode))\n :init (setq markdown-command \"multimarkdown\"))\n(provide 'markdown-init)\n","new_contents":"(use-package markdown-mode\n :ensure t\n :commands (markdown-mode gfm-mode)\n :mode ((\"README\\\\.md\\\\'\" . gfm-mode)\n (\"\\\\.md\\\\'\" . markdown-mode)\n (\"\\\\.markdown\\\\'\" . markdown-mode))\n :init (setq markdown-command \"pandoc\"))\n(provide 'markdown-init)\n","subject":"Change markdown converter to pandoc","message":"Change markdown converter to pandoc\n","lang":"Emacs Lisp","license":"mit","repos":"timotheosh\/dotemacs"} {"commit":"1d99ee5017d325fd1e665ae5e1dd260984cfb9fa","old_file":"core\/packages.el","new_file":"core\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; core\/packages.el\n\n;; core-os.el\n(package! exec-path-from-shell :ignore (not IS-MAC))\n(package! osx-clipboard :ignore (not IS-MAC))\n\n;; core-ui.el\n(package! all-the-icons)\n(package! hide-mode-line)\n(package! highlight-indentation)\n(package! highlight-numbers)\n(unless (boundp 'display-line-numbers)\n (package! nlinum)\n (package! nlinum-hl)\n (package! nlinum-relative))\n(package! rainbow-delimiters)\n(package! visual-fill-column)\n(package! restart-emacs)\n\n;; core-editor.el\n(package! ace-link)\n(package! ace-window)\n(package! avy)\n(package! command-log-mode)\n(package! dtrt-indent)\n(package! expand-region)\n(package! helpful)\n(package! pcre2el)\n(package! smartparens)\n(package! undo-tree)\n\n;; core-projects.el\n(package! projectile)\n\n;; core-keybinds.el\n(package! which-key)\n(package! hydra)\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; core\/packages.el\n\n;; core-os.el\n(package! exec-path-from-shell :ignore (not IS-MAC))\n(package! osx-clipboard :ignore (not IS-MAC))\n\n;; core-ui.el\n(package! all-the-icons)\n(package! hide-mode-line)\n(package! highlight-indentation)\n(package! highlight-numbers)\n(unless (boundp 'display-line-numbers)\n (package! nlinum)\n (package! nlinum-hl)\n (package! nlinum-relative))\n(package! rainbow-delimiters)\n(package! visual-fill-column)\n(package! restart-emacs)\n\n;; core-editor.el\n(package! ace-link)\n(package! ace-window)\n(package! avy)\n(package! command-log-mode)\n(package! dtrt-indent)\n(package! expand-region)\n(package! helpful)\n(package! pcre2el)\n(package! smartparens)\n(package! undo-tree)\n\n;; core-projects.el\n(package! projectile)\n\n;; core-keybinds.el\n(package! which-key)\n(package! hydra)\n\n;; autoload\/debug.el\n(package! esup)\n","subject":"Add esup back to core package list","message":"Add esup back to core package list\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom"} {"commit":"f20fd012681b5bfbb18eaf210047412747544590","old_file":"user-lisp\/lisp-customisations.el","new_file":"user-lisp\/lisp-customisations.el","old_contents":";; paredit for both clojure and elisp\n(defun turn-on-paredit () (paredit-mode 1))\n(add-hook 'clojure-mode-hook 'turn-on-paredit)\n(add-hook 'emacs-lisp-mode-hook 'turn-on-paredit)\n\n(add-hook 'emacs-lisp-mode-hook\n (lambda ()\n (setq use-hl-line nil)\n (hl-sexp-mode)))\n(add-hook 'clojure-mode-hook\n (lambda ()\n (setq use-hl-line nil)\n (hl-sexp-mode)))\n\n;; rather than using TAGS, jump to function definitions that we have\n;; loaded\n(require 'elisp-slime-nav)\n(dolist (hook '(emacs-lisp-mode-hook ielm-mode-hook))\n (add-hook hook 'elisp-slime-nav-mode))\n\n(add-hook 'clojure-mode-hook 'rainbow-delimiters-mode)\n\n(autoload 'clojure-mode \"clojure-mode\")\n(add-to-list 'auto-mode-alist '(\"\\\\.clj$\" . clojure-mode))\n\n(require 'nrepl)\n\n(provide 'lisp-customisations)\n","new_contents":";; paredit for both clojure and elisp\n(defun turn-on-paredit () (paredit-mode 1))\n(add-hook 'clojure-mode-hook 'turn-on-paredit)\n(add-hook 'emacs-lisp-mode-hook 'turn-on-paredit)\n(add-hook 'scheme-mode-hook 'turn-on-paredit)\n\n(add-hook 'emacs-lisp-mode-hook\n (lambda ()\n (setq use-hl-line nil)\n (hl-sexp-mode)))\n(add-hook 'clojure-mode-hook\n (lambda ()\n (setq use-hl-line nil)\n (hl-sexp-mode)))\n\n;; rather than using TAGS, jump to function definitions that we have\n;; loaded\n(require 'elisp-slime-nav)\n(dolist (hook '(emacs-lisp-mode-hook ielm-mode-hook))\n (add-hook hook 'elisp-slime-nav-mode))\n\n(add-hook 'clojure-mode-hook 'rainbow-delimiters-mode)\n(add-hook 'scheme-mode-hook 'rainbow-delimiters-mode)\n\n(autoload 'clojure-mode \"clojure-mode\")\n(add-to-list 'auto-mode-alist '(\"\\\\.clj$\" . clojure-mode))\n\n(require 'nrepl)\n\n(provide 'lisp-customisations)\n","subject":"Use paredit and rainbow-delimiters when coding scheme","message":"Use paredit and rainbow-delimiters when coding scheme\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"2e5064a9e3229976ed2febe840fa38098796c9ef","old_file":"init-exec-path.el","new_file":"init-exec-path.el","old_contents":"(defun set-exec-path-from-shell-PATH ()\n (let ((path-from-shell (shell-command-to-string \"$SHELL --login -c 'echo $PATH'\")))\n (setenv \"PATH\" path-from-shell)\n (setq exec-path (split-string path-from-shell path-separator))))\n\n(when *is-a-mac*\n (eval-after-load \"woman\"\n '(setq woman-manpath (append (list \"\/opt\/local\/man\") woman-manpath)))\n\n ;; When started from Emacs.app or similar, ensure $PATH\n ;; is the same the user would see in Terminal.app\n (if window-system (set-exec-path-from-shell-PATH)))\n\n\n(provide 'init-exec-path)\n","new_contents":"(defun set-exec-path-from-shell-PATH ()\n (let ((path-from-shell (shell-command-to-string \"$SHELL --login -i -c 'echo $PATH'\")))\n (setenv \"PATH\" path-from-shell)\n (setq exec-path (split-string path-from-shell path-separator))))\n\n(when *is-a-mac*\n (eval-after-load \"woman\"\n '(setq woman-manpath (append (list \"\/opt\/local\/man\") woman-manpath)))\n\n ;; When started from Emacs.app or similar, ensure $PATH\n ;; is the same the user would see in Terminal.app\n (if window-system (set-exec-path-from-shell-PATH)))\n\n\n(provide 'init-exec-path)\n","subject":"Use -i in subshell to ensure default rvm paths get set up","message":"Use -i in subshell to ensure default rvm paths get set up\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"Enzo-Liu\/emacs.d,zuoshifan\/emacs.d,wegatron\/emacs.d,alant\/emacs.d,scorpionis\/emacs.d,cyjia\/emacs.d,renatoriccio\/emacs.d,lujianmei\/emacs.d,svenyurgensson\/emacs.d,lromang\/emacs.d,farzadbekran\/emacs.d,bibaijin\/emacs.d,LittleLmp\/emacs.d,qianwan\/emacs.d,farzadbekran\/emacs.d,baohaojun\/emacs.d,blueabysm\/emacs.d,jthetzel\/emacs.d,kongfy\/emacs.d,zuoshifan\/emacs.d,braveoyster\/emacs.d,zhuoyikang\/emacs.d,farzadbekran\/emacs.d,purcell\/emacs.d,exclamaforte\/emacs.d,shafayetkhan\/emacs.d,lust4life\/emacs.d,blueseason\/emacs.d,emuio\/emacs.d,hkcqr\/emacs.d,jachinpy\/emacs.d,YangXin\/emacs.d,farzadbekran\/emacs.d,dhanunjaya\/emacs.d,benkha\/emacs.d,Guoozz\/emacs.d,gsmlg\/emacs.d,DarkThrone\/emacs.d,zuoshifan\/emacs.d,carlosliu\/emacs.d,Werewolflsp\/emacs.d,boblannon\/emacs.d,modkzs\/emcs.d,mmqmzk\/emacs.d,ilove0518\/emacs.d,jachinpy\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,jhpx\/emacs.d,wenpincui\/emacs.d,zhaotai\/.emacs.d,dongdonghu\/.emacs.d,caoyuanqi\/emacs.d,46do14\/emacs.d,zuoshifan\/emacs.d,zenith-john\/emacs.d,dcorking\/emacs.d,arthurl\/emacs.d,Togal\/emacs.d,jkaessens\/emacs.d,whizzzkid\/emacs.d,ernest-dzf\/emacs.d,YangXin\/emacs.d,Shanicky\/emacs.d,krzysz00\/emacs.d,ruiyang\/emacs.d,ruiyang\/emacs.d,haodaivshen\/emacs.d,farzadbekran\/emacs.d,qinshulei\/emacs.d,atreeyang\/emacs.d,sgarciac\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,fengxl\/emacs.d,LKI\/emacs.d,me020523\/emacs.d,hophacker\/emacs.d,kindoblue\/emacs.d,roxolan\/emacs.d,cjqw\/emacs.d,pairyo\/emacs.d,Jadecity\/PurcellEmacs.d,zuoshifan\/emacs.d,danfengcao\/emacs.d,mpwang\/emacs.d"} {"commit":"c59e622be243950a5cb2ea1e15c800085f5d2eaa","old_file":".emacs.d\/lisp\/danylo-common-font-lock.el","new_file":".emacs.d\/lisp\/danylo-common-font-lock.el","old_contents":";;; danylo-common-font-lock.el --- Font locking commong code\n;;\n;; Author: Danylo Malyuta\n;;\n;; Keywords: font lock\n;;\n;; This file is not part of GNU Emacs\n;;\n;;; Commentary:\n;;\n;; Font locking common functions.\n;;\n;;; Code:\n\n(defun danylo\/font-lock-extend-region ()\n \"Extend the search region to include an entire block of text.\"\n (let ((changed nil))\n (save-excursion\n (goto-char font-lock-beg)\n (let ((found (or (re-search-backward \"\\n\\n\" nil t) (point-min))))\n\t(unless (eq font-lock-beg found)\n\t (goto-char found)\n\t (setq font-lock-beg (if (bolp) found (line-beginning-position))\n\t\tchanged t)))\n (goto-char font-lock-end)\n (let ((found (or (re-search-forward \"\\n\\n\" nil t) (point-max))))\n\t(unless (eq font-lock-end found)\n\t (goto-char found)\n\t (setq font-lock-end (if (bolp) found (line-beginning-position 2))\n\t\tchanged t))))\n changed))\n\n(provide 'danylo-common-font-lock)\n;;; danylo-common-font-lock.el ends here\n","new_contents":";;; danylo-common-font-lock.el --- Font locking commong code\n;;\n;; Author: Danylo Malyuta\n;;\n;; Keywords: font lock\n;;\n;; This file is not part of GNU Emacs\n;;\n;;; Commentary:\n;;\n;; Font locking common functions.\n;;\n;;; Code:\n\n(defun danylo\/font-lock-extend-region ()\n \"Extend the search region to include an entire block of text.\"\n (let ((changed nil))\n (save-excursion\n (goto-char font-lock-beg)\n (let ((found (or (re-search-backward \"^\\n$\" nil t) (point-min))))\n\t(unless (eq font-lock-beg found)\n\t (goto-char found)\n\t (setq font-lock-beg (if (bolp) found (line-beginning-position))\n\t\tchanged t)))\n (goto-char font-lock-end)\n (let ((found (or (re-search-forward \"^\\n$\" nil t) (point-max))))\n\t(unless (eq font-lock-end found)\n\t (goto-char found)\n\t (setq font-lock-end (if (bolp) found (line-beginning-position 2))\n\t\tchanged t))))\n changed))\n\n(provide 'danylo-common-font-lock)\n;;; danylo-common-font-lock.el ends here\n","subject":"Update font lock region extend to better version that fixes some bugs in Org","message":"Update font lock region extend to better version that fixes some bugs in Org\n","lang":"Emacs Lisp","license":"mit","repos":"dmalyuta\/dotfiles,dmalyuta\/dotfiles"} {"commit":"d5762c257b0f6c62c87166247dddb4e1e03d614c","old_file":"emacs.d\/config\/config-server.el","new_file":"emacs.d\/config\/config-server.el","old_contents":"(server-start)\n\n;; make C-x k work for emacsclient sessions too.\n(add-hook 'server-switch-hook\n (lambda ()\n (when server-buffer-clients\n (local-set-key (kbd \"C-x k\") 'server-edit)\n )\n )\n )\n","new_contents":"(server-start)\n\n(defun my\/kill-buffer-or-server-edit ()\n (interactive)\n (if server-buffer-clients\n (server-edit)\n (kill-buffer)\n )\n )\n\n;; make C-x k work for emacsclient sessions too.\n(add-hook 'server-switch-hook\n (lambda ()\n (local-set-key (kbd \"C-x k\") 'my\/kill-buffer-or-server-edit)\n )\n )\n","subject":"Fix handling of C-x k.","message":"Fix handling of C-x k.\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"shaleh\/dot-files"} {"commit":"9bc1ac8206a3ed2323f22898c4a0223fde37025d","old_file":"emacs.d\/scala-conf.el","new_file":"emacs.d\/scala-conf.el","old_contents":";; Configuration for Scala\n\n;; ENSIME\n(use-package ensime\n :ensure t\n :defer t\n :config (progn (add-hook 'scala-mode-hook 'ensime-scala-mode-hook)))\n","new_contents":";; Configuration for Scala\n\n(defun scala\/enable-eldoc ()\n \"Show the type of the symbol under the cursor\"\n (setq-local eldoc-documentation-function\n (lambda ()\n (when (ensime-connected-p)\n (ensime-print-type-at-point))))\n (eldoc-mode +1))\n\n;; ENSIME\n(use-package ensime\n :ensure t\n :defer t\n :config (progn (add-hook 'scala-mode-hook 'ensime-scala-mode-hook)\n (add-hook 'ensime-mode-hook #'scala\/enable-eldoc)))\n","subject":"Add function in Scala IDE configuration","message":"[EMACS] Add function in Scala IDE configuration\n\nThe function 'scala\/enable-eldoc' show the type of the symbol under the\ncursor using ENSIME and ElDoc.\n","lang":"Emacs Lisp","license":"mit","repos":"JesusMtnez\/dotfiles,JesusMtnez\/dotfiles"} {"commit":"b3594196893d84b9ed792b5d7c4346f4836e8958","old_file":"layers\/my-lisp\/packages.el","new_file":"layers\/my-lisp\/packages.el","old_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-lisp-packages '((emacs-lisp :location built-in)\n evil-lisp-state\n expand-region))\n\n(defun my-lisp\/post-init-emacs-lisp ()\n (when (configuration-layer\/package-used-p 'aggressive-indent)\n (add-hook 'emacs-lisp-mode-hook #'aggressive-indent-mode)))\n\n(defun my-lisp\/post-init-evil-lisp-state ()\n (with-eval-after-load 'evil-lisp-state\n (define-key evil-lisp-state-map \"A\" #'my-lisp\/insert-at-end-of-sexp)\n (define-key evil-lisp-state-map \"I\" #'my-lisp\/insert-at-beginning-of-sexp)\n (define-key evil-lisp-state-map \"C\" #'sp-clone-sexp)))\n\n(defun my-lisp\/post-init-expand-region ()\n (with-eval-after-load 'expand-region\n (er\/enable-mode-expansions 'emacs-lisp-mode\n #'my-lisp\/\/add-emacs-lisp-mode-expansions)))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-lisp-packages '((emacs-lisp :location built-in)\n evil-lisp-state\n expand-region\n faceup\n font-lock-studio))\n\n(defun my-lisp\/post-init-emacs-lisp ()\n (when (configuration-layer\/package-used-p 'aggressive-indent)\n (add-hook 'emacs-lisp-mode-hook #'aggressive-indent-mode)))\n\n(defun my-lisp\/post-init-evil-lisp-state ()\n (with-eval-after-load 'evil-lisp-state\n (define-key evil-lisp-state-map \"A\" #'my-lisp\/insert-at-end-of-sexp)\n (define-key evil-lisp-state-map \"I\" #'my-lisp\/insert-at-beginning-of-sexp)\n (define-key evil-lisp-state-map \"C\" #'sp-clone-sexp)))\n\n(defun my-lisp\/post-init-expand-region ()\n (with-eval-after-load 'expand-region\n (er\/enable-mode-expansions 'emacs-lisp-mode\n #'my-lisp\/\/add-emacs-lisp-mode-expansions)))\n\n(defun my-lisp\/init-faceup ()\n (use-package faceup\n :defer t))\n\n(defun my-lisp\/init-font-lock-studio ()\n (use-package font-lock-studio\n :defer t))\n","subject":"Install tools to debug syntax highlighting","message":"Install tools to debug syntax highlighting\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"0d9836a79d247202a0fc1da9f1406b330e95095e","old_file":"lisp\/init-themes.el","new_file":"lisp\/init-themes.el","old_contents":"(require-package 'color-theme-sanityinc-solarized)\n(require-package 'color-theme-sanityinc-tomorrow)\n\n;; If you don't customize it, this is the theme you get.\n(setq-default custom-enabled-themes '(sanityinc-tomorrow-bright))\n\n;; Ensure that themes will be applied even if they have not been customized\n(defun reapply-themes ()\n \"Forcibly load the themes listed in `custom-enabled-themes'.\"\n (dolist (theme custom-enabled-themes)\n (unless (custom-theme-p theme)\n (load-theme theme)))\n (custom-set-variables `(custom-enabled-themes (quote ,custom-enabled-themes))))\n\n(add-hook 'after-init-hook 'reapply-themes)\n\n\n;;------------------------------------------------------------------------------\n;; Toggle between light and dark\n;;------------------------------------------------------------------------------\n(defun light ()\n \"Activate a light color theme.\"\n (interactive)\n (setq custom-enabled-themes '(sanityinc-tomorrow-day))\n (reapply-themes))\n\n(defun dark ()\n \"Activate a dark color theme.\"\n (interactive)\n (setq custom-enabled-themes '(sanityinc-tomorrow-bright))\n (reapply-themes))\n\n\n(when (maybe-require-package 'dimmer)\n (setq-default dimmer-fraction 0.15)\n (add-hook 'after-init-hook 'dimmer-mode))\n\n\n(provide 'init-themes)\n","new_contents":"(require-package 'color-theme-sanityinc-solarized)\n(require-package 'color-theme-sanityinc-tomorrow)\n\n;; If you don't customize it, this is the theme you get.\n(setq-default custom-enabled-themes '(sanityinc-tomorrow-bright))\n\n;; Ensure that themes will be applied even if they have not been customized\n(defun reapply-themes ()\n \"Forcibly load the themes listed in `custom-enabled-themes'.\"\n (dolist (theme custom-enabled-themes)\n (unless (custom-theme-p theme)\n (load-theme theme)))\n (custom-set-variables `(custom-enabled-themes (quote ,custom-enabled-themes))))\n\n(add-hook 'after-init-hook 'reapply-themes)\n\n\n;;------------------------------------------------------------------------------\n;; Toggle between light and dark\n;;------------------------------------------------------------------------------\n(defun light ()\n \"Activate a light color theme.\"\n (interactive)\n (setq custom-enabled-themes '(sanityinc-tomorrow-day))\n (reapply-themes))\n\n(defun dark ()\n \"Activate a dark color theme.\"\n (interactive)\n (setq custom-enabled-themes '(sanityinc-tomorrow-bright))\n (reapply-themes))\n\n\n(when (maybe-require-package 'dimmer)\n (setq-default dimmer-fraction 0.15)\n (add-hook 'after-init-hook 'dimmer-mode)\n ;; TODO: file upstream as a PR\n (advice-add 'frame-set-background-mode :after (lambda (&rest args) (dimmer-process-all))))\n\n\n(provide 'init-themes)\n","subject":"Refresh \"dimmer\" state when the frame background mode changes","message":"Refresh \"dimmer\" state when the frame background mode changes\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueabysm\/emacs.d,lust4life\/emacs.d,benkha\/emacs.d,kongfy\/emacs.d,arthurl\/emacs.d,sgarciac\/emacs.d,me020523\/emacs.d,wegatron\/emacs.d,blueseason\/emacs.d,braveoyster\/emacs.d,mmqmzk\/emacs.d,emuio\/emacs.d,purcell\/emacs.d,qianwan\/emacs.d,dcorking\/emacs.d,kindoblue\/emacs.d,gsmlg\/emacs.d,krzysz00\/emacs.d,cjqw\/emacs.d,baohaojun\/emacs.d,svenyurgensson\/emacs.d"} {"commit":"02952baf579ffafbad010fd8bae466044b6d276b","old_file":"init-elpa.el","new_file":"init-elpa.el","old_contents":"(eval-after-load \"package\"\n '(when (> emacs-major-version 23)\n (setq package-archives (cons '(\"tromey\" . \"http:\/\/tromey.com\/elpa\/\") package-archives))))\n\n(provide 'init-elpa)\n","new_contents":"(eval-after-load \"package\"\n '(progn\n (when (> emacs-major-version 23)\n (add-to-list 'package-archives '(\"tromey\" . \"http:\/\/tromey.com\/elpa\/\")))\n\n (add-to-list 'package-archives '(\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\"))\n (add-to-list 'package-archives '(\"technomancy\" . \"http:\/\/repo.technomancy.us\/emacs\"))\n))\n\n(provide 'init-elpa)\n","subject":"Add marmalade to package archives list","message":"Add marmalade to package archives list\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"alant\/emacs.d,carlosliu\/emacs.d,Jadecity\/PurcellEmacs.d,zhuoyikang\/emacs.d,mpwang\/emacs.d,LittleLmp\/emacs.d,haodaivshen\/emacs.d,boblannon\/emacs.d,kindoblue\/emacs.d,blueabysm\/emacs.d,YangXin\/emacs.d,lust4life\/emacs.d,YangXin\/emacs.d,lujianmei\/emacs.d,sgarciac\/emacs.d,cyjia\/emacs.d,Enzo-Liu\/emacs.d,zenith-john\/emacs.d,zhaotai\/.emacs.d,renatoriccio\/emacs.d,cjqw\/emacs.d,zuoshifan\/emacs.d,dongdonghu\/.emacs.d,kongfy\/emacs.d,jachinpy\/emacs.d,farzadbekran\/emacs.d,dhanunjaya\/emacs.d,zuoshifan\/emacs.d,Shanicky\/emacs.d,farzadbekran\/emacs.d,svenyurgensson\/emacs.d,qinshulei\/emacs.d,atreeyang\/emacs.d,jhpx\/emacs.d,zuoshifan\/emacs.d,jkaessens\/emacs.d,pairyo\/emacs.d,danfengcao\/emacs.d,braveoyster\/emacs.d,ruiyang\/emacs.d,LKI\/emacs.d,wegatron\/emacs.d,Togal\/emacs.d,farzadbekran\/emacs.d,blueseason\/emacs.d,zuoshifan\/emacs.d,arthurl\/emacs.d,wenpincui\/emacs.d,emuio\/emacs.d,qianwan\/emacs.d,modkzs\/emcs.d,exclamaforte\/emacs.d,Guoozz\/emacs.d,ruiyang\/emacs.d,dcorking\/emacs.d,zuoshifan\/emacs.d,ilove0518\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,scorpionis\/emacs.d,krzysz00\/emacs.d,farzadbekran\/emacs.d,bibaijin\/emacs.d,fengxl\/emacs.d,baohaojun\/emacs.d,zuoshifan\/emacs.d,hkcqr\/emacs.d,hophacker\/emacs.d,shafayetkhan\/emacs.d,farzadbekran\/emacs.d,me020523\/emacs.d,roxolan\/emacs.d,gsmlg\/emacs.d,zuoshifan\/emacs.d,benkha\/emacs.d,lromang\/emacs.d,Werewolflsp\/emacs.d,whizzzkid\/emacs.d,purcell\/emacs.d,ernest-dzf\/emacs.d,jachinpy\/emacs.d,jthetzel\/emacs.d,caoyuanqi\/emacs.d,DarkThrone\/emacs.d,46do14\/emacs.d,mmqmzk\/emacs.d"} {"commit":"d5593775341a4ffe57a9706b1b5d7335844ee397","old_file":"core\/packages.el","new_file":"core\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; core\/packages.el\n\n;; core.el\n(package! dotenv-mode)\n(package! auto-minor-mode)\n\n;; core-ui.el\n(package! all-the-icons)\n(package! hide-mode-line)\n(package! highlight-numbers)\n(unless (locate-library \"display-line-numbers\")\n (package! nlinum)\n (package! nlinum-hl)\n (package! nlinum-relative))\n(package! rainbow-delimiters)\n(package! restart-emacs)\n\n;; core-editor.el\n(package! better-jumper)\n(package! dtrt-indent)\n(package! helpful)\n(package! ns-auto-titlebar :ignore (not IS-MAC))\n(package! pcre2el)\n(package! smartparens)\n(package! so-long\n :built-in 'prefer\n :recipe (:repo \"https:\/\/git.savannah.gnu.org\/git\/so-long.git\"))\n(package! osx-clipboard :ignore (not IS-MAC))\n(package! undo-tree)\n(package! ws-butler)\n(package! xclip :ignore IS-LINUX)\n\n;; core-projects.el\n(package! projectile)\n\n;; core-keybinds.el\n(package! general)\n(package! which-key)\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; core\/packages.el\n\n;; core.el\n(package! dotenv-mode)\n(package! auto-minor-mode)\n\n;; core-ui.el\n(package! all-the-icons)\n(package! hide-mode-line)\n(package! highlight-numbers)\n(unless (locate-library \"display-line-numbers\")\n (package! nlinum)\n (package! nlinum-hl)\n (package! nlinum-relative))\n(package! rainbow-delimiters)\n(package! restart-emacs)\n\n;; core-editor.el\n(package! better-jumper)\n(package! dtrt-indent)\n(package! helpful)\n(package! ns-auto-titlebar :ignore (not IS-MAC))\n(package! pcre2el)\n(package! smartparens)\n(package! so-long\n :built-in 'prefer\n :recipe (:repo \"https:\/\/git.savannah.gnu.org\/git\/so-long.git\"))\n(package! osx-clipboard :ignore (not IS-MAC))\n(package! undo-tree)\n(package! ws-butler)\n(package! xclip :ignore (not IS-LINUX))\n\n;; core-projects.el\n(package! projectile)\n\n;; core-keybinds.el\n(package! general)\n(package! which-key)\n","subject":"Fix xclip exclusion on linux","message":"Fix xclip exclusion on linux\n\nDue to unintentionally inverted condition\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d"} {"commit":"2e10f51890a5137ee14e83cb5c6ffaafef8c7e1f","old_file":"setup-files\/setup-which-key.el","new_file":"setup-files\/setup-which-key.el","old_contents":";; Time-stamp: <2015-07-15 12:09:48 kmodi>\n\n;; Which Key\n;; https:\/\/github.com\/justbur\/emacs-which-key\n\n(use-package which-key\n :defer 15\n :config\n (progn\n (setq which-key-popup-type 'minibuffer) ; default\n ;; (setq which-key-popup-type 'side-window)\n\n (setq which-key-key-replacement-alist\n '((\"<\\\\(\\\\(C-\\\\|M-\\\\)*.+\\\\)>\" . \"\\\\1\")\n (\"left\" . \"◀\")\n (\"right\" . \"▶\")\n (\"up\" . \"▲\")\n (\"down\" . \"▼\")))\n (setq which-key-special-keys '(\"SPC\" \"TAB\" \"RET\" \"ESC\" \"DEL\"))\n\n (which-key-mode 1)))\n\n\n(provide 'setup-which-key)\n","new_contents":";; Time-stamp: <2015-07-15 14:30:33 kmodi>\n\n;; Which Key\n;; https:\/\/github.com\/justbur\/emacs-which-key\n\n(use-package which-key\n :defer 15\n :config\n (progn\n (setq which-key-popup-type 'minibuffer) ; default\n ;; (setq which-key-popup-type 'side-window)\n\n (setq which-key-key-replacement-alist\n '((\"<\\\\(\\\\(C-\\\\|M-\\\\)*.+\\\\)>\" . \"\\\\1\")\n (\"left\" . \"◀\")\n (\"right\" . \"▶\")\n (\"up\" . \"▲\")\n (\"down\" . \"▼\")))\n\n (setq which-key-special-keys '(\"SPC\" \"TAB\" \"RET\" \"ESC\" \"DEL\"))\n\n (setq which-key-key-based-description-replacement-alist\n '((\"C-x 8\" . \"unicode\")\n (\"C-x a\" . \"abbrev\/expand\")\n (\"C-x r\" . \"rect\/reg\")\n (\"C-x w\" . \"hi-lock-map\")\n (\"C-c \/\" . \"engine-mode-map\")))\n\n (which-key-mode 1)))\n\n\n(provide 'setup-which-key)\n","subject":"Customize prefix map strings in which-key popups","message":"Customize prefix map strings in which-key popups\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"b8000bb33056605be3ff24c621e399e2404c7f03","old_file":"home\/.emacs.d\/lisp\/init-lisp.el","new_file":"home\/.emacs.d\/lisp\/init-lisp.el","old_contents":";;; init-lisp.el -- Lisp and like setup\n\n;;; Commentary:\n;;; Lisp editing setup for Emacs\n;;; Code:\n(defvar my-lisp-modes\n '(cider-repl-mode clojure-mode emacs-lisp-mode lisp-mode))\n(use-package aggressive-indent\n :commands (aggressive-indent-mode)\n :init\n (dolist (lisp my-lisp-modes)\n (add-hook (make-symbol (concat (symbol-name lisp) \"-hook\")) 'aggressive-indent-mode))\n (add-hook 'emacs-lisp-mode-hook 'aggressive-indent-mode))\n\n(use-package paredit\n :commands (paredit-mode)\n :init\n (dolist (lisp my-lisp-modes)\n (add-hook (make-symbol (concat (symbol-name lisp) \"-hook\")) 'paredit-mode))\n :diminish paredit-mode)\n\n(add-hook 'emacs-lisp-mode-hook (lambda() (setq mode-name \"Elisp\")))\n\n(provide 'init-lisp)\n;;; init-lisp.el ends here\n","new_contents":";;; init-lisp.el -- Lisp and like setup\n\n;;; Commentary:\n;;; Lisp editing setup for Emacs\n;;; Code:\n(use-package aggressive-indent\n :commands (aggressive-indent-mode)\n :init\n (add-hook 'cider-repl-mode-hook 'aggressive-indent-mode)\n (add-hook 'clojure-mode-hook 'aggressive-indent-mode)\n (add-hook 'emacs-lisp-mode-hook 'aggressive-indent-mode)\n (add-hook 'lisp-mode-hook 'aggressive-indent-mode))\n\n(use-package paredit\n :commands (paredit-mode)\n :init\n (add-hook 'cider-repl-mode-hook 'paredit-mode)\n (add-hook 'clojure-mode-hook 'paredit-mode)\n (add-hook 'emacs-lisp-mode-hook 'paredit-mode)\n (add-hook 'lisp-mode-hook 'paredit-mode)\n :diminish paredit-mode)\n\n(add-hook 'emacs-lisp-mode-hook (lambda() (setq mode-name \"Elisp\")))\n\n(provide 'init-lisp)\n;;; init-lisp.el ends here\n;; fuzzy find in current project with ,t\n","subject":"Fix paredit and aggressive-indent hooks in Lisps","message":"Fix paredit and aggressive-indent hooks in Lisps\n","lang":"Emacs Lisp","license":"mit","repos":"cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles,cartolari\/dotfiles"} {"commit":"09e2a66b8b59f03f0ab5fce5339ea2b0b89d60c5","old_file":"lisp\/init-python.el","new_file":"lisp\/init-python.el","old_contents":";;; init-python.el --- Python editing -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(setq auto-mode-alist\n (append '((\"SConstruct\\\\'\" . python-mode)\n (\"SConscript\\\\'\" . python-mode))\n auto-mode-alist))\n\n(require-package 'pip-requirements)\n\n(when (maybe-require-package 'anaconda-mode)\n (after-load 'python\n (add-hook 'python-mode-hook 'anaconda-mode)\n (add-hook 'python-mode-hook 'anaconda-eldoc-mode))\n (after-load 'anaconda-mode\n (define-key anaconda-mode-map (kbd \"M-?\") nil))\n (when (maybe-require-package 'company-anaconda)\n (after-load 'company\n (after-load 'python\n (push 'company-anaconda company-backends)))))\n\n\n(provide 'init-python)\n;;; init-python.el ends here\n","new_contents":";;; init-python.el --- Python editing -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n\n;; See the following note about how I set up python + virtualenv to\n;; work seamlessly with Emacs:\n;; https:\/\/gist.github.com\/purcell\/81f76c50a42eee710dcfc9a14bfc7240\n\n\n(setq auto-mode-alist\n (append '((\"SConstruct\\\\'\" . python-mode)\n (\"SConscript\\\\'\" . python-mode))\n auto-mode-alist))\n\n(require-package 'pip-requirements)\n\n(when (maybe-require-package 'anaconda-mode)\n (after-load 'python\n (add-hook 'python-mode-hook 'anaconda-mode)\n (add-hook 'python-mode-hook 'anaconda-eldoc-mode))\n (after-load 'anaconda-mode\n (define-key anaconda-mode-map (kbd \"M-?\") nil))\n (when (maybe-require-package 'company-anaconda)\n (after-load 'company\n (after-load 'python\n (push 'company-anaconda company-backends)))))\n\n\n(provide 'init-python)\n;;; init-python.el ends here\n","subject":"Add note about python and virtualenvs","message":"Add note about python and virtualenvs\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"arthurl\/emacs.d,wegatron\/emacs.d,qianwan\/emacs.d,gsmlg\/emacs.d,cjqw\/emacs.d,lust4life\/emacs.d,baohaojun\/emacs.d,krzysz00\/emacs.d,svenyurgensson\/emacs.d,braveoyster\/emacs.d,emuio\/emacs.d,sgarciac\/emacs.d,blueseason\/emacs.d,blueabysm\/emacs.d,dcorking\/emacs.d,purcell\/emacs.d"} {"commit":"7cf8301ea9d471e03c5d284518fa84d41fb5822a","old_file":"prelude\/prelude-osx.el","new_file":"prelude\/prelude-osx.el","old_contents":";; On OS X Emacs doesn't use the shell PATH if it's not started from\n;; the shell. If you're using homebrew modifying the PATH is essential.\n(push \"\/usr\/local\/bin\" exec-path)\n(setenv \"PATH\" (concat \"\/usr\/local\/bin:\" (getenv \"PATH\")))\n\n;; Emacs users obviously have little need for Command and Option keys,\n;; but they do need Meta and Super\n(setq mac-command-modifier 'super)\n(setq mac-option-modifier 'meta)\n(provide 'prelude-osx)\n","new_contents":";; On OS X Emacs doesn't use the shell PATH if it's not started from\n;; the shell.\n;; If you're using homebrew or port, modifying the PATH is essential.\n(let (osx-paths)\n (dolist (path '(\"\/usr\/local\/bin\" \"\/opt\/local\/bin\" \"\/opt\/local\/sbin\") (setenv \"PATH\" (concat osx-paths (getenv \"PATH\"))))\n (push path exec-path)\n (setq osx-paths (concat (concat path \":\") osx-paths))))\n\n;; Emacs users obviously have little need for Command and Option keys,\n;; but they do need Meta and Super\n(setq mac-command-modifier 'super)\n(setq mac-option-modifier 'meta)\n(provide 'prelude-osx)\n","subject":"Add path support for macports binaries","message":"OSX: Add path support for macports binaries\n\nmacports binaries are located at \/opt\/local\/bin and sbin\n","lang":"Emacs Lisp","license":"mit","repos":"oldfartdeveloper\/emacsd,pramukta\/emacs.d,pramukta\/emacs.d,gihankarunarathne\/Nunoboko,blowery\/dot-emacs,pramukta\/emacs.d"} {"commit":"d2b24975c8ec24a2faf0c864d21cb8ad50160189","old_file":"after-init.el","new_file":"after-init.el","old_contents":";; -*- Mode: Emacs-Lisp -*-\n;; -*- lisp -*-\n;; ~\/.emacs.d\/after-init.el\n;; Load extra packages installed with elpa\n;; Jaseem Abid \n\n;; centered cursor mode\n(require 'centered-cursor-mode)\n(global-centered-cursor-mode t)\n;; Snippets\n(require 'yasnippet)\n(yas-global-mode 1)\n;; Explain an HTTP status code.\n;; Run it with M-x hc\n(require 'httpcode)\n;; Hackernews :)\n(require 'hackernews)\n;; Multiple cursors\n;; Tutorial : http:\/\/emacsrocks.com\/e13.html\n(require 'multiple-cursors)\n;; Expand region\n(require 'expand-region)\n(global-set-key (kbd \"C-M-e\") 'er\/expand-region)\n(global-set-key (kbd \"C-M-i\") 'er\/mark-inner-tag)\n(global-set-key (kbd \"C-M-o\") 'er\/mark-outer-tag)\n;; git-commit-mode\n(require 'magit)\n(add-hook 'magit-log-edit-mode-hook 'git-commit-mode-magit-setup)\n;; Remember mode\n(require 'remember)\n;; Coffee-mode\n(require 'coffee-mode)\n;; Rainbow-mode\n(require 'rainbow-mode)\n","new_contents":";; -*- Mode: Emacs-Lisp -*-\n;; -*- lisp -*-\n;; ~\/.emacs.d\/after-init.el\n;; Load extra packages installed with elpa\n;; Jaseem Abid \n\n;; centered cursor mode\n(require 'centered-cursor-mode)\n(global-centered-cursor-mode t)\n;; Snippets\n(require 'yasnippet)\n(yas-global-mode 1)\n;; Explain an HTTP status code.\n;; Run it with M-x hc\n(require 'httpcode)\n;; Hackernews :)\n(require 'hackernews)\n;; Multiple cursors\n;; Tutorial : http:\/\/emacsrocks.com\/e13.html\n(require 'multiple-cursors)\n;; Expand region\n(require 'expand-region)\n(global-set-key (kbd \"C-M-e\") 'er\/expand-region)\n(global-set-key (kbd \"C-M-i\") 'er\/mark-inner-tag)\n(global-set-key (kbd \"C-M-o\") 'er\/mark-outer-tag)\n;; git-commit-mode\n(require 'magit)\n(add-hook 'magit-log-edit-mode-hook 'git-commit-mode-magit-setup)\n;; Remember mode\n(require 'remember)\n;; Coffee-mode\n(require 'coffee-mode)\n;; Rainbow-mode\n(require 'rainbow-mode)\n;; rinari\n(require 'rinari)\n(global-rinari-mode)\n","subject":"Enable rinari global mode, not minor mode","message":"Enable rinari global mode, not minor mode\n","lang":"Emacs Lisp","license":"mit","repos":"jaseemabid\/emacs.d,arajparaj\/emacs.d"} {"commit":"2711067d099a3e31e18c35286433a80841c39f04","old_file":"emacs.d\/lisp\/personal\/settings.el","new_file":"emacs.d\/lisp\/personal\/settings.el","old_contents":"(setf inhibit-startup-screen t) ; disable welcome screen\n\n(setf ring-bell-function 'ignore) ; disable alarm bell\n\n(when (not (display-graphic-p))\n (menu-bar-mode -1)) ; disable menu bar in CLI\n\n;; improve scrolling\n(setf scroll-margin 5\n scroll-step 1\n scroll-conservatively 10000\n scroll-up-aggressively 0.01\n scroll-down-aggressively 0.01)\n\n(show-paren-mode 1) ; highlight matching parens\n\n(global-hl-line-mode 1) ; highlight current line\n\n(setq-default indent-tabs-mode nil) ; use spaces instead of tabs\n","new_contents":"(setf inhibit-startup-screen t) ; disable welcome screen\n\n(setf ring-bell-function 'ignore) ; disable alarm bell\n\n(when (not (display-graphic-p))\n (menu-bar-mode -1)) ; disable menu bar in CLI\n\n;; improve scrolling\n(setf scroll-margin 5\n scroll-step 1\n scroll-conservatively 10000\n scroll-up-aggressively 0.01\n scroll-down-aggressively 0.01)\n\n(show-paren-mode 1) ; highlight matching parens\n\n(global-hl-line-mode 1) ; highlight current line\n\n(setq-default indent-tabs-mode nil) ; use spaces instead of tabs\n\n(xterm-mouse-mode 1) ; enable mouse support in terminal\n","subject":"Enable mouse support for terminal Emacs","message":"Enable mouse support for terminal Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"anishathalye\/dotfiles,anishathalye\/dotfiles,anishathalye\/dotfiles"} {"commit":"8bdf7bd22259ea80dad89b4c3123f91c273f46fe","old_file":"config\/config-org.el","new_file":"config\/config-org.el","old_contents":";; config-org.el ---\n\n(require 'org-exp)\n(require 'org-install)\n(org-remember-insinuate)\n\n(set-face-foreground 'org-hide (face-background 'default))\n(setq org-directory (concat emacs-config-dir \"\/jerry\/org\")\n org-agenda-files (list (concat org-directory \"\/gtd.org\")\n\t\t\t (concat org-directory \"\/notes.org\"))\n org-completion-use-ido t\n org-default-notes-file (concat org-directory \"\/notes.org\")\n org-hide-leading-stars t ;ֻʾһ㼶 *\n org-id-locations-file \"~\/.emacs.d\/auto-save-list\/.org-id-locations\"\n org-log-done 'note\n org-startup-truncated nil\n org-export-html-style-include-default nil\n org-export-html-toplevel-hlevel 1\n org-export-html-postamble nil\n )\n(add-to-list 'org-export-language-setup (list \"zh\" \"\" \"\" \"Ŀ¼\" \"\"))\n(define-key global-map (kbd \"C-c a\") 'org-agenda)\n(define-key global-map (kbd \"C-c l\") 'org-store-link)\n(define-key global-map (kbd \"C-c c\") 'org-capture)\n\n(provide 'config-org)\n;;; config-org.el ends here ---\n","new_contents":";; config-org.el ---\n\n(require 'org-exp)\n(require 'org-install)\n(org-remember-insinuate)\n\n(set-face-foreground 'org-hide (face-background 'default))\n(setq org-directory \"~\/Ubuntu One\/org\"\n org-agenda-files (list (concat org-directory \"\/gtd.org\")\n\t\t\t (concat org-directory \"\/notes.org\"))\n org-completion-use-ido t\n org-default-notes-file (concat org-directory \"\/notes.org\")\n org-hide-leading-stars t ;ֻʾһ㼶 *\n org-id-locations-file \"~\/.emacs.d\/auto-save-list\/.org-id-locations\"\n org-log-done 'note\n org-startup-truncated nil\n org-export-html-style-include-default nil\n org-export-html-toplevel-hlevel 1\n org-export-html-postamble nil\n )\n(add-to-list 'org-export-language-setup (list \"zh\" \"\" \"\" \"Ŀ¼\" \"\"))\n(define-key global-map (kbd \"C-c a\") 'org-agenda)\n(define-key global-map (kbd \"C-c l\") 'org-store-link)\n(define-key global-map (kbd \"C-c c\") 'org-capture)\n\n(provide 'config-org)\n;;; config-org.el ends here ---\n","subject":"Change org directory to correct one.","message":"Change org directory to correct one.\n","lang":"Emacs Lisp","license":"mit","repos":"JerryXGH\/emacs-config,JerryXGH\/emacs-config,JerryXGH\/emacs-config,JerryXGH\/emacs-config,JerryXGH\/emacs-config,JerryXGH\/emacs-config,JerryXGH\/emacs-config,JerryXGH\/emacs-config"} {"commit":"1f5e505addaf0c7adb0e81872f25d919abb7549e","old_file":"layers\/mfa-iimage\/packages.el","new_file":"layers\/mfa-iimage\/packages.el","old_contents":"(defconst mfa-iimage-packages '(iimage))\n\n(defun mfa-iimage\/init-iimage ()\n (use-package iimage\n :defer t\n :init\n (progn\n (spacemacs\/declare-prefix \"ot\" \"toggles\")\n (spacemacs\/set-leader-keys \"oti\" #'iimage-mode))))\n","new_contents":"(defconst mfa-iimage-packages '(iimage))\n\n(defun mfa-iimage\/init-iimage ()\n (use-package iimage\n :defer t))\n","subject":"Remove image-mode key bindings because they shadow terminal bindings","message":"Remove image-mode key bindings because they shadow terminal bindings\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"96541e0d596ed1b6de8466280cca02a49c3af955","old_file":"conf\/_mac.el","new_file":"conf\/_mac.el","old_contents":";; Apple specific stuff\n\n;; On OS X GUI applications do not inherit variables from the shell\n;; configuration and thus have a different $PATH\n;; test by doing \"M-: (executable-find \"flake8\")\"\n;; C-h v exec-path\n(exec-path-from-shell-initialize)\n\n;; This is for mu4e to be able to get gpg going (sig verifying etc)\n;; I was unable to M-x getenv RET GPG_AGENT_INFO (even if I manually set it,\n;; as gpg-agent form gpgtools.org does not export this)\n;; M-x shell-copy-environment-variable was no help either\n;; This should be no problem in *nix's\n(setenv \"GPG_AGENT_INFO\" \"~\/.gnupg\/S.gpg-agent\")\n\n(setq mac-option-modifier 'super)\n(setq mac-command-modifier 'meta)\n(setq ns-function-modifier 'hyper)\n\n;; Ignore .DS_Store files with ido mode\n(add-to-list 'ido-ignore-files \"\\\\.DS_Store\")\n\n(provide '_mac)\n","new_contents":";; Apple specific stuff\n\n;; On OS X GUI applications do not inherit variables from the shell\n;; configuration and thus have a different $PATH\n;; test by doing \"M-: (executable-find \"flake8\")\"\n;; C-h v exec-path\n(exec-path-from-shell-initialize)\n\n;; This is for mu4e to be able to get gpg going (sig verifying etc)\n;; I was unable to M-x getenv RET GPG_AGENT_INFO (even if I manually set it,\n;; as gpg-agent form gpgtools.org does not export this)\n;; M-x shell-copy-environment-variable was no help either\n;; This should be no problem in *nix's\n(setenv \"GPG_AGENT_INFO\" \"~\/.gnupg\/S.gpg-agent\")\n\n;; switch modifiers in system prefs\n;; (setq mac-option-modifier 'super)\n;; (setq mac-command-modifier 'meta)\n(setq ns-function-modifier 'hyper)\n\n;; Ignore .DS_Store files with ido mode\n(add-to-list 'ido-ignore-files \"\\\\.DS_Store\")\n\n(provide '_mac)\n","subject":"Switch alt-cmd keys in OS prefs","message":"[OSX] Switch alt-cmd keys in OS prefs\n","lang":"Emacs Lisp","license":"unlicense","repos":"jeroentbt\/.emacs.d"} {"commit":"93fc6b584d3313ac8ae16f7fe14833711476f522","old_file":"custom\/10-circe.el","new_file":"custom\/10-circe.el","old_contents":";; IRC reconnect\n(eval-after-load 'rcirc\n '(defun-rcirc-command reconnect (arg)\n\t \"Reconnect the server process.\"\n\t (interactive \"i\")\n\t (unless process\n\t (error \"There's no process for this target\"))\n\t (let* ((server (car (process-contact process)))\n\t\t(port (process-contact process :service))\n\t\t(nick (rcirc-nick process))\n\t\tchannels query-buffers)\n\t (dolist (buf (buffer-list))\n\t (with-current-buffer buf\n\t (when (eq process (rcirc-buffer-process))\n\t\t (remove-hook 'change-major-mode-hook\n\t\t\t 'rcirc-change-major-mode-hook)\n\t\t (if (rcirc-channel-p rcirc-target)\n\t\t (setq channels (cons rcirc-target channels))\n\t\t (setq query-buffers (cons buf query-buffers))))))\n\t (delete-process process)\n\t (rcirc-connect server port nick\n\t\t\t rcirc-default-user-name\n\t\t\t rcirc-default-full-name\n\t\t\t channels))))\n\n;; Shortcut to connect to IRC\n(defun irc ()\n \"Connect to IRC\"\n (interactive)\n (circe \"Freenode\"))\n\n;; Enable chanop commands\n(eval-after-load 'circe '(require 'circe-chanop))\n","new_contents":";; IRC reconnect\n(eval-after-load 'rcirc\n '(defun-rcirc-command reconnect (arg)\n\t \"Reconnect the server process.\"\n\t (interactive \"i\")\n\t (unless process\n\t (error \"There's no process for this target\"))\n\t (let* ((server (car (process-contact process)))\n\t\t(port (process-contact process :service))\n\t\t(nick (rcirc-nick process))\n\t\tchannels query-buffers)\n\t (dolist (buf (buffer-list))\n\t (with-current-buffer buf\n\t (when (eq process (rcirc-buffer-process))\n\t\t (remove-hook 'change-major-mode-hook\n\t\t\t 'rcirc-change-major-mode-hook)\n\t\t (if (rcirc-channel-p rcirc-target)\n\t\t (setq channels (cons rcirc-target channels))\n\t\t (setq query-buffers (cons buf query-buffers))))))\n\t (delete-process process)\n\t (rcirc-connect server port nick\n\t\t\t rcirc-default-user-name\n\t\t\t rcirc-default-full-name\n\t\t\t channels))))\n\n;; Shortcut to connect to IRC\n(defun irc ()\n \"Connect to IRC\"\n (interactive)\n (circe \"Freenode\"))\n\n;; Enable chanop commands\n(eval-after-load 'circe '(require 'circe-chanop))\n\n;; Circe (IRC) configuration\n;; Put your configuration in a ~\/.private.el file with permissions 0600\n(load-file \"~\/.private.el\")\n(setq circe-network-options\n\t `((\"Freenode\"\n\t\t :nick ,freenode-user\n\t\t :channels (\"#mlug-au\")\n\t\t :nickserv-password ,freenode-password\n\t\t )))\n","subject":"Add more to irc config","message":"Add more to irc config\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"1550ec2cd5d30d42889d11ebd0a897392e4bd3b1","old_file":"lisp\/init-locales.el","new_file":"lisp\/init-locales.el","old_contents":"(defun sanityinc\/utf8-locale-p (v)\n \"Return whether locale string V relates to a UTF-8 locale.\"\n (and v (string-match \"UTF-8\" v)))\n\n(defun locale-is-utf8-p ()\n \"Return t iff the \\\"locale\\\" command or environment variables prefer UTF-8.\"\n (or (sanityinc\/utf8-locale-p (and (executable-find \"locale\") (shell-command-to-string \"locale\")))\n (sanityinc\/utf8-locale-p (getenv \"LC_ALL\"))\n (sanityinc\/utf8-locale-p (getenv \"LC_CTYPE\"))\n (sanityinc\/utf8-locale-p (getenv \"LANG\"))))\n\n(when (or window-system (locale-is-utf8-p))\n (setq utf-translate-cjk-mode nil) ; disable CJK coding\/encoding (Chinese\/Japanese\/Korean characters)\n (set-language-environment 'utf-8)\n (setq locale-coding-system 'utf-8)\n (set-default-coding-systems 'utf-8)\n (set-terminal-coding-system 'utf-8)\n (unless (eq system-type 'windows-nt)\n (set-selection-coding-system 'utf-8))\n (prefer-coding-system 'utf-8))\n\n(provide 'init-locales)\n","new_contents":"(defun sanityinc\/utf8-locale-p (v)\n \"Return whether locale string V relates to a UTF-8 locale.\"\n (and v (string-match \"UTF-8\" v)))\n\n(defun locale-is-utf8-p ()\n \"Return t iff the \\\"locale\\\" command or environment variables prefer UTF-8.\"\n (or (sanityinc\/utf8-locale-p (and (executable-find \"locale\") (shell-command-to-string \"locale\")))\n (sanityinc\/utf8-locale-p (getenv \"LC_ALL\"))\n (sanityinc\/utf8-locale-p (getenv \"LC_CTYPE\"))\n (sanityinc\/utf8-locale-p (getenv \"LANG\"))))\n\n(when (or window-system (locale-is-utf8-p))\n (setq utf-translate-cjk-mode nil) ; disable CJK coding\/encoding (Chinese\/Japanese\/Korean characters)\n (set-language-environment 'utf-8)\n (setq locale-coding-system 'utf-8)\n (set-default-coding-systems 'utf-8)\n (set-terminal-coding-system 'utf-8)\n (set-selection-coding-system (if (eq system-type 'windows-nt) 'utf-16-le 'utf-8))\n (prefer-coding-system 'utf-8))\n\n(provide 'init-locales)\n","subject":"Use utf-16-le for selection-coding-system on windows","message":"Use utf-16-le for selection-coding-system on windows\n\nSee https:\/\/stackoverflow.com\/questions\/2901541\/which-coding-system-should-i-use-in-emacs\/2903256#comment20730840_2903256\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"DarkThrone\/emacs.d,ruiyang\/emacs.d,haodaivshen\/emacs.d,exclamaforte\/emacs.d,shafayetkhan\/emacs.d,benkha\/emacs.d,zhaotai\/.emacs.d,emuio\/emacs.d,ilove0518\/emacs.d,LittleLmp\/emacs.d,jthetzel\/emacs.d,farzadbekran\/emacs.d,roxolan\/emacs.d,zenith-john\/emacs.d,danfengcao\/emacs.d,modkzs\/emcs.d,lust4life\/emacs.d,ruiyang\/emacs.d,purcell\/emacs.d,boblannon\/emacs.d,Guoozz\/emacs.d,mmqmzk\/emacs.d,Jadecity\/PurcellEmacs.d,wenpincui\/emacs.d,hkcqr\/emacs.d,svenyurgensson\/emacs.d,whizzzkid\/emacs.d,fengxl\/emacs.d,wegatron\/emacs.d,Togal\/emacs.d,qinshulei\/emacs.d,Shanicky\/emacs.d,Enzo-Liu\/emacs.d,me020523\/emacs.d,sgarciac\/emacs.d,dhanunjaya\/emacs.d,zhuoyikang\/emacs.d,blueabysm\/emacs.d,alant\/emacs.d,caoyuanqi\/emacs.d,lromang\/emacs.d,jhpx\/emacs.d,atreeyang\/emacs.d,gsmlg\/emacs.d,jachinpy\/emacs.d,renatoriccio\/emacs.d,braveoyster\/emacs.d,kongfy\/emacs.d,farzadbekran\/emacs.d,arthurl\/emacs.d,scorpionis\/emacs.d,jkaessens\/emacs.d,mpwang\/emacs.d,krzysz00\/emacs.d,cjqw\/emacs.d,farzadbekran\/emacs.d,baohaojun\/emacs.d,46do14\/emacs.d,farzadbekran\/emacs.d,jachinpy\/emacs.d,carlosliu\/emacs.d,LKI\/emacs.d,ernest-dzf\/emacs.d,dcorking\/emacs.d,qianwan\/emacs.d,kindoblue\/emacs.d,farzadbekran\/emacs.d,lujianmei\/emacs.d,hophacker\/emacs.d,Werewolflsp\/emacs.d,cyjia\/emacs.d,dongdonghu\/.emacs.d,bibaijin\/emacs.d,blueseason\/emacs.d,pairyo\/emacs.d"} {"commit":"b808b57fd3d91bb683ee78ccc68a8f4b8f55f59f","old_file":"mfa-editorconfig\/packages.el","new_file":"mfa-editorconfig\/packages.el","old_contents":"(defconst mfa-editorconfig-packages '(editorconfig))\n\n(defun mfa-editorconfig\/init-editorconfig ()\n (use-package editorconfig\n :config\n (add-to-list 'edconf-custom-hooks\n '(lambda (props)\n (maphash (lambda (key value)\n (progn\n ;; undo require-final-newline to get compatible with ethan-wspace\n ;; should probably be moved to ethan-wspace layer\n (when (eq 'insert_final_newline key)\n (setq require-final-newline nil\n mode-require-final-newline nil))\n (message \"editorconfig set %s to %s\" key value)))\n props)))))\n","new_contents":"(defconst mfa-editorconfig-packages '(editorconfig))\n\n(defun mfa-editorconfig\/init-editorconfig ()\n (use-package editorconfig\n :diminish\n :init\n (editorconfig-mode)\n :config\n (progn\n (spacemacs|hide-lighter editorconfig-mode)\n (defvar mfa\/edconf-verbose nil)\n (add-to-list 'edconf-custom-hooks\n '(lambda (props)\n (maphash (lambda (key value)\n (when mfa\/edconf-verbose\n (message \"editorconfig set %s to %s\" key value)))\n props))))))\n","subject":"Remove references to ethan-wspace in editorconfig-mode config","message":"Remove references to ethan-wspace in editorconfig-mode config\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"1220784cd1d05b7f2ca12a05a5797a4806cdb223","old_file":"settings\/setup-interface.el","new_file":"settings\/setup-interface.el","old_contents":";; Font\n(set-face-attribute 'default nil\n :family \"Menlo\"\n :height 120)\n(set-face-attribute 'fixed-pitch nil\n :family 'unspecified\n :inherit 'default)\n\n;; Turn off mouse interface early in startup to avoid momentary display\n(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))\n(if (fboundp 'tabbar-mode) (tabbar-mode -1))\n(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))\n(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))\n\n;; vertical window split\n(setq split-width-threshold 190)\n(setq split-height-threshold nil)\n\n;; Line wrap indicator\n(setq-default visual-line-fringe-indicators '(left-curly-arrow nil))\n\n(show-paren-mode 1)\n\n(provide 'setup-interface)\n","new_contents":";; Font\n(set-face-attribute 'default nil\n :family \"Menlo\"\n :height 160)\n(set-face-attribute 'fixed-pitch nil\n :family 'unspecified\n :inherit 'default)\n\n;; Turn off mouse interface early in startup to avoid momentary display\n(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))\n(if (fboundp 'tabbar-mode) (tabbar-mode -1))\n(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))\n(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))\n\n;; vertical window split\n(setq split-width-threshold 190)\n(setq split-height-threshold nil)\n\n;; Line wrap indicator\n(setq-default visual-line-fringe-indicators '(left-curly-arrow nil))\n\n;; Fill column\n(setq fill-column 80)\n\n(show-paren-mode 1)\n\n(provide 'setup-interface)\n","subject":"Increase font height and set fill-column to 80","message":"Increase font height and set fill-column to 80\n","lang":"Emacs Lisp","license":"mit","repos":"hsienchiaolee\/aquamacs"} {"commit":"b7dcd1eec41f314bf7a836c6d8c9a1143a8e4cac","old_file":"conf\/_appearance.el","new_file":"conf\/_appearance.el","old_contents":"(load-theme 'heroku t)\n\n;; don't beep but flash the screen\n;; font-lock-mode provides the colors for spec languages, set max fontification (1-3)\n;; force color theme (no increments)\n;; don't truncate on partial width\n(setq visible-bell t\n font-lock-maximum-decoration t\n color-theme-is-global t\n truncate-partial-width-windows nil)\n\n;; Enable syntax highlighting for older Emacsen that have it off\n(global-font-lock-mode t)\n\n;; Highlight current line\n(global-hl-line-mode 1)\n\n;; Don't defer screen updates when performing operations\n(setq redisplay-dont-pause t)\n\n;; Highlight matching parentheses when the point is on them.\n(show-paren-mode 1)\n\n(when window-system\n (setq frame-title-format '(buffer-file-name \"%f\" (\"%b\")))\n;; (tooltip-mode -1)\n (blink-cursor-mode -1))\n\n;; Show active region\n(transient-mark-mode 1)\n(make-variable-buffer-local 'transient-mark-mode)\n(put 'transient-mark-mode 'permanent-local t)\n(setq-default transient-mark-mode t)\n\n;; Don't highlight matches with jump-char - it's distracting\n(setq jump-char-lazy-highlight-face nil)\n\n;; Fontify org-mode code blocks\n(setq org-src-fontify-natively t)\n\n\n(provide '_appearance)\n","new_contents":"(load-theme 'solarized-dark t)\n\n;; don't beep but flash the screen\n;; font-lock-mode provides the colors for spec languages, set max fontification (1-3)\n;; force color theme (no increments)\n;; don't truncate on partial width\n(setq visible-bell t\n font-lock-maximum-decoration t\n color-theme-is-global t\n truncate-partial-width-windows nil)\n\n;; Enable syntax highlighting for older Emacsen that have it off\n(global-font-lock-mode t)\n\n;; Highlight current line\n(global-hl-line-mode 1)\n\n;; Don't defer screen updates when performing operations\n(setq redisplay-dont-pause t)\n\n;; Highlight matching parentheses when the point is on them.\n(show-paren-mode 1)\n\n(when window-system\n (setq frame-title-format '(buffer-file-name \"%f\" (\"%b\")))\n;; (tooltip-mode -1)\n (blink-cursor-mode -1))\n\n;; Show active region\n(transient-mark-mode 1)\n(make-variable-buffer-local 'transient-mark-mode)\n(put 'transient-mark-mode 'permanent-local t)\n(setq-default transient-mark-mode t)\n\n;; Don't highlight matches with jump-char - it's distracting\n(setq jump-char-lazy-highlight-face nil)\n\n;; Fontify org-mode code blocks\n(setq org-src-fontify-natively t)\n\n\n(provide '_appearance)\n","subject":"Change default theme -> solarized-dark","message":"Change default theme -> solarized-dark\n","lang":"Emacs Lisp","license":"unlicense","repos":"jeroentbt\/.emacs.d"} {"commit":"872b26e0eda7258f6d5e176840be5d7bbec3f483","old_file":"contrib\/!lang\/lua\/packages.el","new_file":"contrib\/!lang\/lua\/packages.el","old_contents":"(setq lua-packages\n '(\n flycheck\n lua-mode\n ))\n\n(defun lua\/post-init-flycheck ()\n (add-hook 'lua-mode-hook 'flycheck-mode))\n\n(defun lua\/init-lua-mode ()\n (use-package lua-mode\n :defer t\n :mode (\"\\\\.lua\\\\'\" . lua-mode)\n :interpreter (\"lua\" . lua-mode)\n :config\n (progn\n (setq lua-indent-level 2\n lua-indent-string-contents t)\n (evil-leader\/set-key-for-mode 'lua-mode \"md\" 'lua-search-documentation)\n (evil-leader\/set-key-for-mode 'lua-mode \"msb\" 'lua-send-buffer)\n (evil-leader\/set-key-for-mode 'lua-mode \"msf\" 'lua-send-defun)\n (evil-leader\/set-key-for-mode 'lua-mode \"msl\" 'lua-send-current-line)\n (evil-leader\/set-key-for-mode 'lua-mode \"msr\" 'lua-send-region))))\n","new_contents":"(setq lua-packages\n '(\n company\n flycheck\n lua-mode\n ))\n\n(defun lua\/post-init-flycheck ()\n (add-hook 'lua-mode-hook 'flycheck-mode))\n\n(defun lua\/init-lua-mode ()\n (use-package lua-mode\n :defer t\n :mode (\"\\\\.lua\\\\'\" . lua-mode)\n :interpreter (\"lua\" . lua-mode)\n :config\n (progn\n (setq lua-indent-level 2\n lua-indent-string-contents t)\n (evil-leader\/set-key-for-mode 'lua-mode \"md\" 'lua-search-documentation)\n (evil-leader\/set-key-for-mode 'lua-mode \"msb\" 'lua-send-buffer)\n (evil-leader\/set-key-for-mode 'lua-mode \"msf\" 'lua-send-defun)\n (evil-leader\/set-key-for-mode 'lua-mode \"msl\" 'lua-send-current-line)\n (evil-leader\/set-key-for-mode 'lua-mode \"msr\" 'lua-send-region))))\n\n(defun lua\/post-init-company ()\n (add-hook 'lua-mode-hook 'company-mode))\n","subject":"Add company-mode hook for lua","message":"Add company-mode hook for lua\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"2eff37a5dd3dd26bac29fc2430e9fa88f7177866","old_file":"config\/emacs\/emacs_ubuntu_trusty.el","new_file":"config\/emacs\/emacs_ubuntu_trusty.el","old_contents":"; .emacs specific for Ubuntu Trusty\n\n; 3\/5\/2015 for ibus\n(require 'ibus)\n(add-hook 'after-init-hook 'ibus-mode-on)\n(add-hook 'after-init-hook 'ibus-mode)\n\n;; Custom ROS location\n(set-register ?r '(file . \"~\/link\/ROS\/indigo_trusty\/\"))\n\n;;20160429 Moved from downstream (kudu1, Trusty 14.04), hoping this is valid for all Ubuntu machines.\n;;ɥ뵭ϤȤľϤڤؤ롣\n;;;(define-key mozc-mode-map \"$\" 'YaTeX-insert-dollar-or-mozc-insert)\n(define-key mozc-mode-map \"\\C-\\o\" 'YaTeX-insert-dollar-or-mozc-insert)\n(defun YaTeX-insert-dollar-or-mozc-insert ()\n (interactive)\n (if (eq major-mode 'yatex-mode)\n (YaTeX-insert-dollar)\n (mozc-insert)))\n","new_contents":"; .emacs specific for Ubuntu Trusty\n\n; 3\/5\/2015 for ibus\n(require 'ibus)\n(add-hook 'after-init-hook 'ibus-mode-on)\n(add-hook 'after-init-hook 'ibus-mode)\n\n;; Custom ROS location\n(set-register ?r '(file . \"~\/link\/ROS\/indigo_trusty\/\"))\n\n;;20160429 Moved from downstream (kudu1, Trusty 14.04), hoping this is valid for all Ubuntu machines.\n;; mozc\n(require 'mozc)\n(setq default-input-method \"japanese-mozc\")\n;;ɥ뵭ϤȤľϤڤؤ롣\n;;;(define-key mozc-mode-map \"$\" 'YaTeX-insert-dollar-or-mozc-insert)\n(define-key mozc-mode-map \"\\C-\\o\" 'YaTeX-insert-dollar-or-mozc-insert)\n(defun YaTeX-insert-dollar-or-mozc-insert ()\n (interactive)\n (if (eq major-mode 'yatex-mode)\n (YaTeX-insert-dollar)\n (mozc-insert)))\n","subject":"Add missing mozc config for commonized setting.","message":"[emacs] Add missing mozc config for commonized setting.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"130s\/hut_10sqft,130s\/compenv_ubuntu,130s\/hut_10sqft,130s\/compenv_ubuntu"} {"commit":"96f76f6aa6b2c740f4c18fc0343b5681019424c8","old_file":"setup-files\/setup-hydra.el","new_file":"setup-files\/setup-hydra.el","old_contents":";; Time-stamp: <2015-02-24 08:48:21 kmodi>\n\n;; Hydra\n;; https:\/\/github.com\/abo-abo\/hydra\n\n(use-package hydra\n ;; :load-path \"elisp\/hydra\"\n :config\n (progn\n ;; (setq hydra-lv nil)\n (hydra-add-font-lock)))\n\n\n(provide 'setup-hydra)\n\n;; |----------+-----------+------------------+----------------+-------------|\n;; | Body | Head | Allows execution | Quits hydra | Quits hydra |\n;; | Color | Inherited | of NON-HEADs | after NON-HEAD | after HEAD |\n;; | | Color | | execution | execution |\n;; |----------+-----------+------------------+----------------+-------------|\n;; | amaranth | red | No | No | No |\n;; | pink | red | Yes | No | No |\n;; | red | red | Yes | Yes | No |\n;; | teal | blue | No | No | Yes |\n;; | blue | blue | Yes | Yes | Yes |\n;; |----------+-----------+------------------+----------------+-------------|\n","new_contents":";; Time-stamp: <2015-02-24 19:38:12 kmodi>\n\n;; Hydra\n;; https:\/\/github.com\/abo-abo\/hydra\n\n(use-package hydra\n ;; :load-path \"elisp\/hydra\"\n :config\n (progn\n ;; (setq hydra-lv nil)\n (set-face-attribute 'hydra-face-red nil :foreground \"Red\" :bold t)\n (set-face-attribute 'hydra-face-blue nil :foreground \"RoyalBlue3\" :bold t)\n (set-face-attribute 'hydra-face-amaranth nil :foreground \"#e52b50\" :bold t)\n (set-face-attribute 'hydra-face-pink nil :foreground \"HotPink1\" :bold t)\n (set-face-attribute 'hydra-face-teal nil :foreground \"#367588\" :bold t)\n (hydra-add-font-lock)))\n\n\n(provide 'setup-hydra)\n\n;; |----------+-----------+------------------+----------------+-------------|\n;; | Body | Head | Allows execution | Quits hydra | Quits hydra |\n;; | Color | Inherited | of NON-HEADs | after NON-HEAD | after HEAD |\n;; | | Color | | execution | execution |\n;; |----------+-----------+------------------+----------------+-------------|\n;; | amaranth | red | No | No | No |\n;; | pink | red | Yes | No | No |\n;; | red | red | Yes | Yes | No |\n;; | teal | blue | No | No | Yes |\n;; | blue | blue | Yes | Yes | Yes |\n;; |----------+-----------+------------------+----------------+-------------|\n","subject":"Improve the blue of `hydra-face-blue`","message":"Change: Improve the blue of `hydra-face-blue`\n\n- `set-face-attribute` calls for other faces are also put here in case\n they are needed to be modified later on\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"93499f7dcf85f193c30a577c4e49dafce626e575","old_file":"load\/osx.el","new_file":"load\/osx.el","old_contents":";; mouse integration\n(require 'mwheel)\n\n(if (equal (getenv \"TERM_PROGRAM\") \"iTerm.app\")\n (progn\n (require 'mouse) ;; needed for iterm2 compatibility\n (message\n \"********************************************************************************\")\n (message \"HERE\")\n (message\n \"********************************************************************************\")\n (xterm-mouse-mode)\n (defvar mouse-wheel-progressive-speed)\n (setq mouse-wheel-progressive-speed nil)\n (defvar mouse-wheel-scroll-amount)\n (setq mouse-wheel-scroll-amount '(1))\n\n (mouse-wheel-mode 1)\n\n (declare-function cua-copy-region (arg) \"cua-base.el\")\n (defun smart-copy-region ()\n (interactive)\n (cua-copy-region nil)\n (shell-command-on-region\n (region-beginning)\n (region-end)\n \"pbcopy\")\n (message \"\"))\n (global-set-key (kbd \"M-w\") 'smart-copy-region)))\n","new_contents":";; mouse integration\n(require 'mwheel)\n\n(when (equal (getenv \"TERM_PROGRAM\") \"iTerm.app\")\n (require 'mouse) ;; needed for iterm2 compatibility\n (xterm-mouse-mode)\n (defvar mouse-wheel-progressive-speed)\n (setq mouse-wheel-progressive-speed nil)\n (defvar mouse-wheel-scroll-amount)\n (setq mouse-wheel-scroll-amount '(1))\n\n (mouse-wheel-mode 1)\n\n (declare-function cua-copy-region (arg) \"cua-base.el\")\n (defun smart-copy-region ()\n (interactive)\n (cua-copy-region nil)\n (shell-command-on-region\n (region-beginning)\n (region-end)\n \"pbcopy\")\n (message \"\"))\n (global-set-key (kbd \"M-w\") 'smart-copy-region))\n","subject":"Remove debug logging, switch to using \"when\"","message":"Remove debug logging, switch to using \"when\"\n","lang":"Emacs Lisp","license":"mit","repos":"kaidadragonfly\/.emacs"} {"commit":"1ece92551b5b628f819a1646601acfbd947012a0","old_file":"emacs\/.emacs.d\/lisp\/ds-elisp.el","new_file":"emacs\/.emacs.d\/lisp\/ds-elisp.el","old_contents":"\n(when ds\/emacs-up-to-date?\n (add-hook 'emacs-lisp-mode-hook 'prettify-symbols-mode))\n\n;; Use double semi-colon for emacs lisp (default seems to be single).\n(add-hook 'emacs-lisp-mode-hook (lambda () (setq comment-start \";;\"\n comment-end \"\")))\n","new_contents":"\n(when ds\/emacs-up-to-date?\n (add-hook 'emacs-lisp-mode-hook 'prettify-symbols-mode))\n\n;; Use double semi-colon for emacs lisp (default seems to be single).\n(add-hook 'emacs-lisp-mode-hook (lambda () (setq comment-start \";;\"\n comment-end \"\")))\n\n\n(defun insert-key-as-kbd (key)\n (interactive \"kKey: \")\n (insert (format \"(kbd \\\"%s\\\")\" (key-description key))))\n\n(define-key emacs-lisp-mode-map (kbd \"C-,\") #'insert-key-as-kbd)\n","subject":"Add function to insert `kbd` commands in elisp","message":"Add function to insert `kbd` commands in elisp\n","lang":"Emacs Lisp","license":"cc0-1.0","repos":"davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles"} {"commit":"16cc7810943268d8968776059a391d3160e4098f","old_file":"emacs.d\/lisp\/personal\/settings.el","new_file":"emacs.d\/lisp\/personal\/settings.el","old_contents":"(setf inhibit-startup-screen t) ; disable welcome screen\n\n(menu-bar-mode -1) ; disable menu bar\n\n;; improve scrolling\n(setf scroll-margin 5\n scroll-step 1\n scroll-conservatively 10000\n scroll-up-aggressively 0.01\n scroll-down-aggressively 0.01)\n\n(show-paren-mode 1) ; highlight matching parens\n\n(global-hl-line-mode 1) ; highlight current line\n\n(setq-default indent-tabs-mode nil) ; use spaces instead of tabs\n","new_contents":"(setf inhibit-startup-screen t) ; disable welcome screen\n\n(when (not (display-graphic-p))\n (menu-bar-mode -1)) ; disable menu bar in CLI\n\n;; improve scrolling\n(setf scroll-margin 5\n scroll-step 1\n scroll-conservatively 10000\n scroll-up-aggressively 0.01\n scroll-down-aggressively 0.01)\n\n(show-paren-mode 1) ; highlight matching parens\n\n(global-hl-line-mode 1) ; highlight current line\n\n(setq-default indent-tabs-mode nil) ; use spaces instead of tabs\n","subject":"Make emacs menu bar disabled only in CLI","message":"Make emacs menu bar disabled only in CLI\n","lang":"Emacs Lisp","license":"mit","repos":"anishathalye\/dotfiles,anishathalye\/dotfiles,anishathalye\/dotfiles"} {"commit":"9662678a1f4f2fb16b2b61074adb747122114d13","old_file":"elcustom\/setup-company.el","new_file":"elcustom\/setup-company.el","old_contents":"(global-company-mode)\n\n(defun my\/custom-backends ()\n (setq company-backends (delete 'company-capf company-backend))\n (add-to-list 'company-backends 'company-c-headers))\n\n(setq-default company-backends\n\t '((company-bbdb\n\t\t company-nxml\n\t\t company-css\n\t\t company-eclim\n\t\t company-semantic\n\t\t company-c-headers\n\t\t company-yasnippet\n\t\t company-xcode\n\t\t company-cmake\n\t\t company-dabbrev-code\n\t\t company-gtags\n\t\t company-etags\n\t\t company-keywords\n\t\t company-oddmuse\n\t\t company-files\n\t\t company-semantic\n\t\t company-capf)))\n\n;(add-hook 'c-mode-hook 'my\/custom-backends)\n;(add-hook 'c++-mode-hook 'my\/custom-backends)\n\n(eval-after-load 'company\n '(progn\n (define-key company-active-map (kbd \"TAB\") 'company-complete-common-or-cycle)\n (define-key company-active-map [tab] 'company-complete-common-or-cycle)))\n;; (setq company-selection t) <-- this doesn't make sense -- Dmitry\n(setq company-idle-delay 0)\n\n(provide 'setup-company)\n","new_contents":"(global-company-mode)\n\n(defun my\/custom-backends ()\n (setq company-backends (delete 'company-capf company-backend))\n (add-to-list 'company-backends 'company-c-headers))\n\n(setq-default company-backends\n\t '((company-bbdb\n\t\t company-nxml\n\t\t company-css\n\t\t company-eclim\n\t\t company-semantic\n\t\t company-c-headers\n\t\t company-yasnippet\n\t\t company-xcode\n\t\t company-cmake\n\t\t company-dabbrev-code\n\t\t company-gtags\n\t\t company-etags\n\t\t company-keywords\n\t\t company-oddmuse\n\t\t company-files\n\t\t company-capf)))\n\n;(add-hook 'c-mode-hook 'my\/custom-backends)\n;(add-hook 'c++-mode-hook 'my\/custom-backends)\n\n(eval-after-load 'company\n '(progn\n (define-key company-active-map (kbd \"TAB\") 'company-complete-common-or-cycle)\n (define-key company-active-map [tab] 'company-complete-common-or-cycle)))\n;; (setq company-selection t) <-- this doesn't make sense -- Dmitry\n(setq company-idle-delay 0)\n\n(provide 'setup-company)\n","subject":"Remove duplicate semantic backend. Woops!","message":"Remove duplicate semantic backend. Woops!\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"316b0308b0dded984bbb6d2b24f129a2aeefe6ba","old_file":"dotfiles\/emacs.d\/rc\/startup.el","new_file":"dotfiles\/emacs.d\/rc\/startup.el","old_contents":"(setq inhibit-startup-message t) \n(setq initial-scratch-message \";;; S C R A T C H B U F F E R ;;;\n\")\n\n(setq indent-tabs-mode nil)\n\n(if window-system\n (progn\n (global-set-key [kp-delete] 'delete-char)\n (global-set-key [M-kp-delete] 'kill-word)\n (menu-bar-mode 1)\n (tool-bar-mode 0))\n (menu-bar-mode 0))\n\n","new_contents":"(setq inhibit-startup-message t) \n(setq initial-scratch-message \";;; S C R A T C H B U F F E R ;;;\n\")\n\n(setq indent-tabs-mode nil)\n\n(if window-system\n (progn\n ; make forward-delete work\n (global-set-key [kp-delete] 'delete-char)\n (global-set-key [M-kp-delete] 'kill-word)\n ; make command the META key, and option access accents properly\n (setq ns-alternate-modifier (quote none))\n (setq ns-command-modifier (quote meta))\n (menu-bar-mode 1)\n (tool-bar-mode 0))\n (menu-bar-mode 0))\n\n","subject":"Save font settings here as well as in custom","message":"Save font settings here as well as in custom\n","lang":"Emacs Lisp","license":"mit","repos":"cdlm\/infrastructure,cdlm\/infrastructure,cdlm\/infrastructure,cdlm\/infrastructure"} {"commit":"2d0c8b003ce525dfb3c48198aed2abfe03a52965","old_file":"init-locales.el","new_file":"init-locales.el","old_contents":"(defun locale-is-utf8-p ()\n \"Return t iff the \\\"locale\\\" command or environment variables prefer UTF-8.\"\n (flet ((is-utf8 (v) (and v (string-match \"UTF-8\" v))))\n (or (is-utf8 (and (executable-find \"locale\") (shell-command-to-string \"locale\")))\n (is-utf8 (getenv \"LC_ALL\"))\n (is-utf8 (getenv \"LC_CTYPE\"))\n (is-utf8 (getenv \"LANG\")))))\n\n(when (or window-system (locale-is-utf8-p))\n (setq utf-translate-cjk-mode nil) ; disable CJK coding\/encoding (Chinese\/Japanese\/Korean characters)\n (set-language-environment 'utf-8)\n (when *is-carbon-emacs*\n (set-keyboard-coding-system 'utf-8-mac))\n (setq locale-coding-system 'utf-8)\n (set-default-coding-systems 'utf-8)\n (set-terminal-coding-system 'utf-8)\n (unless (eq system-type 'windows-nt)\n (set-selection-coding-system 'utf-8))\n (prefer-coding-system 'utf-8))\n\n(provide 'init-locales)\n","new_contents":"(require 'cl-lib)\n\n(defun locale-is-utf8-p ()\n \"Return t iff the \\\"locale\\\" command or environment variables prefer UTF-8.\"\n (cl-flet ((is-utf8 (v) (and v (string-match \"UTF-8\" v))))\n (or (is-utf8 (and (executable-find \"locale\") (shell-command-to-string \"locale\")))\n (is-utf8 (getenv \"LC_ALL\"))\n (is-utf8 (getenv \"LC_CTYPE\"))\n (is-utf8 (getenv \"LANG\")))))\n\n(when (or window-system (locale-is-utf8-p))\n (setq utf-translate-cjk-mode nil) ; disable CJK coding\/encoding (Chinese\/Japanese\/Korean characters)\n (set-language-environment 'utf-8)\n (when *is-carbon-emacs*\n (set-keyboard-coding-system 'utf-8-mac))\n (setq locale-coding-system 'utf-8)\n (set-default-coding-systems 'utf-8)\n (set-terminal-coding-system 'utf-8)\n (unless (eq system-type 'windows-nt)\n (set-selection-coding-system 'utf-8))\n (prefer-coding-system 'utf-8))\n\n(provide 'init-locales)\n","subject":"Replace an flet with cl-flet","message":"Replace an flet with cl-flet\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"renatoriccio\/emacs.d,svenyurgensson\/emacs.d,bibaijin\/emacs.d,dongdonghu\/.emacs.d,farzadbekran\/emacs.d,Werewolflsp\/emacs.d,DarkThrone\/emacs.d,caoyuanqi\/emacs.d,kongfy\/emacs.d,LittleLmp\/emacs.d,carlosliu\/emacs.d,mmqmzk\/emacs.d,qinshulei\/emacs.d,pairyo\/emacs.d,wenpincui\/emacs.d,lust4life\/emacs.d,dcorking\/emacs.d,qianwan\/emacs.d,shafayetkhan\/emacs.d,exclamaforte\/emacs.d,fengxl\/emacs.d,jhpx\/emacs.d,scorpionis\/emacs.d,ernest-dzf\/emacs.d,blueseason\/emacs.d,blueabysm\/emacs.d,zenith-john\/emacs.d,krzysz00\/emacs.d,atreeyang\/emacs.d,hophacker\/emacs.d,zhuoyikang\/emacs.d,zhaotai\/.emacs.d,emuio\/emacs.d,mpwang\/emacs.d,purcell\/emacs.d,alant\/emacs.d,ruiyang\/emacs.d,jthetzel\/emacs.d,jachinpy\/emacs.d,cjqw\/emacs.d,Jadecity\/PurcellEmacs.d,kindoblue\/emacs.d,Enzo-Liu\/emacs.d,Togal\/emacs.d,LKI\/emacs.d,ilove0518\/emacs.d,boblannon\/emacs.d,jachinpy\/emacs.d,arthurl\/emacs.d,lromang\/emacs.d,me020523\/emacs.d,whizzzkid\/emacs.d,wegatron\/emacs.d,farzadbekran\/emacs.d,baohaojun\/emacs.d,modkzs\/emcs.d,roxolan\/emacs.d,farzadbekran\/emacs.d,Shanicky\/emacs.d,danfengcao\/emacs.d,gsmlg\/emacs.d,lujianmei\/emacs.d,braveoyster\/emacs.d,sgarciac\/emacs.d,haodaivshen\/emacs.d,farzadbekran\/emacs.d,dhanunjaya\/emacs.d,jkaessens\/emacs.d,Guoozz\/emacs.d,hkcqr\/emacs.d,46do14\/emacs.d,benkha\/emacs.d,farzadbekran\/emacs.d,cyjia\/emacs.d,ruiyang\/emacs.d"} {"commit":"656f1851b7c158b630fcb29b977d4a51074be1b5","old_file":"emacs\/.emacs.d\/packages\/projectile.el","new_file":"emacs\/.emacs.d\/packages\/projectile.el","old_contents":"(use-package projectile\n :ensure t\n :defer t\n :bind ((\"C-c p\" . projectile-command-map))\n :init\n (setq projectile-indexing-method 'native)\n (setq projectile-enable-caching t)\n (setq projectile-project-search-path '(\"~\/workspace\/\"))\n (projectile-mode 1))\n","new_contents":"(use-package projectile\n :ensure t\n :defer t\n :bind ((\"C-c p\" . projectile-command-map))\n :init\n (setq projectile-indexing-method 'alien)\n (setq projectile-enable-caching t)\n (setq projectile-project-search-path '(\"~\/workspace\/\"))\n (setq projectile-completion-system 'helm)\n (projectile-mode 1))\n","subject":"Set a better cache and enable Helm integration","message":"Emacs: Set a better cache and enable Helm integration\n","lang":"Emacs Lisp","license":"mit","repos":"benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles,benmezger\/dotfiles"} {"commit":"c2d02c0203ebf018d0ca95b9d81b3a88264d74e0","old_file":"lisp\/init-terraform.el","new_file":"lisp\/init-terraform.el","old_contents":";;; init-terraform.el --- Work with Terraform configurations -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n;;; Terraform\n\n(when (maybe-require-package 'terraform-mode)\n (when (maybe-require-package 'company-terraform)\n (after-load 'terraform-mode\n (company-terraform-init))))\n\n(provide 'init-terraform)\n;;; init-terraform.el ends here\n;;; init-terraform.el ends here\n","new_contents":";;; init-terraform.el --- Work with Terraform configurations -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n;;; Terraform\n\n(when (maybe-require-package 'terraform-mode)\n (when (maybe-require-package 'company-terraform)\n (after-load 'terraform-mode\n (company-terraform-init)\n\n ;; I find formatters based on \"reformatter\" to be more reliable\n ;; so I redefine `terraform-format-on-save-mode' here.\n (when (maybe-require-package 'reformatter)\n (reformatter-define terraform-format\n :program \"terraform\" :args '(\"fmt\" \"-\"))))))\n\n(provide 'init-terraform)\n;;; init-terraform.el ends here\n;;; init-terraform.el ends here\n","subject":"Use reformatter to redefine terraform-format-on-save-mode","message":"Use reformatter to redefine terraform-format-on-save-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"gsmlg\/emacs.d,krzysz00\/emacs.d,sgarciac\/emacs.d,dcorking\/emacs.d,baohaojun\/emacs.d,qianwan\/emacs.d,purcell\/emacs.d,emuio\/emacs.d,braveoyster\/emacs.d,svenyurgensson\/emacs.d,blueseason\/emacs.d,blueabysm\/emacs.d,arthurl\/emacs.d,lust4life\/emacs.d"} {"commit":"acb1480ef213a5c1c15d59a2a4cc9c4fd3868606","old_file":"emacs.d\/lisp\/personal\/settings.el","new_file":"emacs.d\/lisp\/personal\/settings.el","old_contents":"(setf inhibit-startup-screen t) ; disable welcome screen\n\n(setf ring-bell-function 'ignore) ; disable alarm bell\n\n(when (not (display-graphic-p))\n (menu-bar-mode -1)) ; disable menu bar in CLI\n\n;; improve scrolling\n(setf scroll-margin 5\n scroll-step 1\n scroll-conservatively 10000\n scroll-up-aggressively 0.01\n scroll-down-aggressively 0.01)\n\n(show-paren-mode 1) ; highlight matching parens\n\n(global-hl-line-mode 1) ; highlight current line\n\n(setq-default indent-tabs-mode nil) ; use spaces instead of tabs\n\n(xterm-mouse-mode 1) ; enable mouse support in terminal\n\n(setq tab-always-indent 'complete) ; make tab complete as well as indent\n\n(setq ns-pop-up-frames nil) ; open files in existing frame\n","new_contents":"(setf inhibit-startup-screen t) ; disable welcome screen\n\n(setf ring-bell-function 'ignore) ; disable alarm bell\n\n(when (not (display-graphic-p))\n (menu-bar-mode -1)) ; disable menu bar in CLI\n\n;; improve scrolling\n(setf scroll-margin 5\n scroll-step 1\n scroll-conservatively 10000\n scroll-up-aggressively 0.01\n scroll-down-aggressively 0.01)\n\n(show-paren-mode 1) ; highlight matching parens\n\n(global-hl-line-mode 1) ; highlight current line\n\n(setq-default indent-tabs-mode nil) ; use spaces instead of tabs\n\n(xterm-mouse-mode 1) ; enable mouse support in terminal\n\n(setq tab-always-indent 'complete) ; make tab complete as well as indent\n\n(setq ns-pop-up-frames nil) ; open files in existing frame\n\n;; store all backup and autosave files outside the working directory,\n;; in the temporary-file-directory\n(setq backup-directory-alist\n `((\".*\" . ,temporary-file-directory)))\n(setq auto-save-file-name-transforms\n `((\".*\" ,temporary-file-directory t)))\n","subject":"Make Emacs save temp files outside the working dir","message":"Make Emacs save temp files outside the working dir\n","lang":"Emacs Lisp","license":"mit","repos":"anishathalye\/dotfiles,anishathalye\/dotfiles,anishathalye\/dotfiles"} {"commit":"dda557910285b5803b93de181159ec2c6c0a7d70","old_file":"layers\/python\/hy-init.el","new_file":"layers\/python\/hy-init.el","old_contents":";; Hy mode\n;;\n;; You can get an hy repl by typing in M-x inferior-lisp while in a hy\n;; buffer. Needs some work to send buffer to the repl, and only open a\n;; new repl if one does not already exist for the active hy buffer.\n(use-package hy-mode\n :ensure t\n :mode (\"\\\\.hy\\\\'\" . hy-mode)\n :config\n (require 'programming-init)\n (setq hy-mode-inferior-lisp-command \"hy\")\n :init\n ;; Add smartparens-strict-mode\n (dolist (func '(my-programming-hooks\n smartparens-strict-mode\n rainbow-delimiters-mode))\n (add-hook 'hy-mode-hook func))\n (use-package aggressive-indent\n :ensure t\n :init\n (add-hook 'hy-mode-hook 'aggressive-indent-mode)\n (add-hook 'inferior-lisp-mode-hook 'aggressive-indent-mode))\n (define-key hy-mode-map \"\\C-x\\C-e\" 'hy-shell-eval-last-sexp)\n (define-key hy-mode-map \"\\C-c\\C-c\" 'hy-shell-eval-buffer))\n(provide 'hy-init)\n","new_contents":";; Hy mode\n;;\n;; You can get an hy repl by typing in M-x inferior-lisp while in a hy\n;; buffer. Needs some work to send buffer to the repl, and only open a\n;; new repl if one does not already exist for the active hy buffer.\n(use-package hy-mode\n :ensure t\n :mode (\"\\\\.hy\\\\'\" . hy-mode)\n :config\n (require 'programming-init)\n (setq hy-mode-inferior-lisp-command \"hy\")\n ;; Add smartparens-strict-mode\n (dolist (func '(my-programming-hooks\n smartparens-strict-mode\n rainbow-delimiters-mode))\n (add-hook 'hy-mode-hook func))\n (use-package aggressive-indent\n :ensure t\n :init\n (add-hook 'hy-mode-hook 'aggressive-indent-mode)\n (add-hook 'inferior-lisp-mode-hook 'aggressive-indent-mode))\n (define-key hy-mode-map \"\\C-x\\C-e\" 'hy-shell-eval-last-sexp)\n (define-key hy-mode-map \"\\C-c\\C-c\" 'hy-shell-eval-buffer))\n(provide 'hy-init)\n","subject":"Correct the load ordering for hy-mode (for hy-mode-map).","message":"Correct the load ordering for hy-mode (for hy-mode-map).\n","lang":"Emacs Lisp","license":"mit","repos":"timotheosh\/dotemacs"} {"commit":"c0a2a1110aab66ce72fc9f893624e426b8cdcf69","old_file":"setup-files\/setup-nim.el","new_file":"setup-files\/setup-nim.el","old_contents":";; Time-stamp: <2017-05-01 17:28:23 kmodi>\n\n;; Nim\n;; https:\/\/github.com\/nim-lang\/nim-mode\n\n(use-package nim-mode\n :ensure t\n :mode ((\"\\\\.nim\\\\'\" . nim-mode))\n :config\n (progn\n (with-eval-after-load 'smart-compile\n (add-to-list 'smart-compile-alist\n '(nim-mode . \"nim c --verbosity:0 %f\")))\n\n (when (executable-find \"nimsuggest\")\n (setq nim-nimsuggest-path (executable-find \"nimsuggest\"))\n ;; Currently nimsuggest doesn't support nimscript files, so only nim-mode ..\n ;; nimsuggest will provide hints in the minibuffer using `eldoc-mode'.\n (add-hook 'nim-mode-hook #'nimsuggest-mode))))\n\n\n(provide 'setup-nim)\n","new_contents":";; Time-stamp: <2017-07-06 18:46:00 kmodi>\n\n;; Nim\n;; https:\/\/github.com\/nim-lang\/nim-mode\n\n(use-package nim-mode\n :ensure t\n :mode ((\"\\\\.nim\\\\'\" . nim-mode))\n :config\n (progn\n (with-eval-after-load 'smart-compile\n (add-to-list 'smart-compile-alist\n '(nim-mode . \"nim c --verbosity:0 %f\")))\n\n (when (executable-find \"nimsuggest\")\n (setq nim-nimsuggest-path (executable-find \"nimsuggest\"))\n ;; Currently nimsuggest doesn't support nimscript files, so only nim-mode ..\n ;; nimsuggest will provide hints in the minibuffer using `eldoc-mode'.\n (add-hook 'nim-mode-hook #'nimsuggest-mode))\n\n (use-package ob-nim\n :ensure t\n :config\n (progn\n (with-eval-after-load 'setup-org\n (add-to-list 'modi\/ob-enabled-languages \"nim\" :append))))))\n\n\n(provide 'setup-nim)\n","subject":"Add ob-nim; Org Babel for Nim","message":"Add ob-nim; Org Babel for Nim\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"0e44c4b6468b664c66676abf49aa3b5ae88adf33","old_file":"common\/_emacs.d\/config\/config-magit.el","new_file":"common\/_emacs.d\/config\/config-magit.el","old_contents":";;; config-magit --- What it says on the tin.\n\n;;; Commentary:\n;; None at this time.\n\n;;; Code:\n;; Shut magit up.\n(setq magit-last-seen-setup-instructions \"1.4.0\")\n\n;; Make magit start full-frame, but otherwise behave the same.\n(setq magit-display-buffer-function 'magit-display-buffer-fullframe-status-v1)\n\n;; Bind C-k to set-mark-command. In magit, I can't seem to reliably stage blocks\n;; by going into visual mode, C-SPC is launchers, and C-@ is crazy awkward. So,\n;; I need another binding. C-k is a pneumonic for marK.\n(global-set-key (kbd \"C-k\") 'set-mark-command)\n\n(provide 'config-magit)\n;;; config-magit.el ends here\n","new_contents":";;; config-magit --- What it says on the tin.\n\n;;; Commentary:\n;; None at this time.\n\n;;; Code:\n;; Shut magit up.\n(setq magit-last-seen-setup-instructions \"1.4.0\")\n\n;; Make magit start full-frame, but otherwise behave the same.\n(setq magit-display-buffer-function 'magit-display-buffer-fullframe-status-v1)\n\n;; Warn\n(setq git-commit-summary-max-length 50)\n\n;; Bind C-k to set-mark-command. In magit, I can't seem to reliably stage blocks\n;; by going into visual mode, C-SPC is launchers, and C-@ is crazy awkward. So,\n;; I need another binding. C-k is a pneumonic for marK.\n(global-set-key (kbd \"C-k\") 'set-mark-command)\n\n(provide 'config-magit)\n;;; config-magit.el ends here\n","subject":"Use 50 column git summaries","message":"Use 50 column git summaries\n","lang":"Emacs Lisp","license":"mit","repos":"gehrman\/dotfiles,gehrman\/dotfiles"} {"commit":"f2f2d4050715aa6f57ac2219ef9a870e96c2dd4b","old_file":"doom\/config.el","new_file":"doom\/config.el","old_contents":";;; $DOOMDIR\/config.el -*- lexical-binding: t; -*-\n\n;; Place your private configuration here!\n;; Remember, you do NOT need to run 'doom sync' after modifying this file!\n\n(setq user-full-name \"abtv\"\n user-mail-address \"\")\n\n(setq doom-theme 'adwaita)\n(with-eval-after-load \"adwaita-theme\"\n (custom-theme-set-faces\n 'adwaita\n '(default ((t (:background \"#CCCCCC\"))))))\n\n(setq org-directory \"~\/org\/\")\n(with-eval-after-load 'org\n (setq\n org-agenda-span 7\n org-agenda-start-on-weekday 1))\n\n(setq display-line-numbers-type nil)\n","new_contents":";;; $DOOMDIR\/config.el -*- lexical-binding: t; -*-\n\n;; Place your private configuration here!\n;; Remember, you do NOT need to run 'doom sync' after modifying this file!\n\n(setq user-full-name \"abtv\"\n user-mail-address \"\")\n\n(setq doom-theme 'adwaita)\n(with-eval-after-load \"adwaita-theme\"\n (custom-theme-set-faces\n 'adwaita\n '(default ((t (:background \"#CCCCCC\"))))))\n\n(setq org-directory \"~\/org\/\")\n(with-eval-after-load 'org\n (setq\n org-agenda-span 7\n org-agenda-start-on-weekday 1))\n\n(map! :leader\n :desc \"Kill this buffer\" \"d\" #'kill-this-buffer)\n\n(setq display-line-numbers-type nil)\n","subject":"Kill current buffer with SPC d in Emacs","message":"Kill current buffer with SPC d in Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"abtv\/dotfiles"} {"commit":"822141ddc03c184e0a467de39cca28399f415b6d","old_file":"emacs.d\/text-editing.el","new_file":"emacs.d\/text-editing.el","old_contents":";; text-editing.el\n;;\n;; Misc. settings for formatting text\n\n(setq-default tab-always-indent nil ; tab actually works like a tab key\n require-final-newline 't ; unix-friendly trailing newline\n tab-width 4 ; tabs are four spaces\n indent-tabs-mode nil ; tab works like a tab key\n sentence-end-double-space nil ; sentences end with one space\n fill-column 78) ; good width for default\n\n(add-hook 'before-save-hook 'whitespace-cleanup) ; no messy space\n(add-hook 'text-mode-hook 'turn-on-auto-fill) ; wrap text\n","new_contents":";; text-editing.el\n;;\n;; Misc. settings for formatting text\n\n(setq-default tab-always-indent nil ; tab actually works like a tab key\n require-final-newline 't ; unix-friendly trailing newline\n tab-width 4 ; tabs are four spaces\n indent-tabs-mode nil ; tab works like a tab key\n sentence-end-double-space nil ; sentences end with one space\n fill-column 78) ; good width for default\n\n(add-hook 'before-save-hook 'whitespace-cleanup) ; no messy space\n(add-hook 'text-mode-hook 'turn-on-auto-fill) ; wrap text\n\n\n;; Emacs's open-line functionality is dumb\n(defvar newline-and-indent t\n \"Modify the behavior of the open-*-line functions to cause them to autoindent.\")\n\n(defun open-next-line (arg)\n \"Move to the next line and then opens a line. See also\n `newline-and-indent'.\"\n (interactive \"p\")\n (end-of-line)\n (open-line arg)\n (next-line 1)\n (when newline-and-indent\n (indent-according-to-mode)))\n\n(defun open-previous-line (arg)\n \"Open a new line before the current one.\n See also `newline-and-indent'.\"\n (interactive \"p\")\n (beginning-of-line)\n (open-line arg)\n (when newline-and-indent\n (indent-according-to-mode)))\n\n(global-set-key (kbd \"C-o\") 'open-next-line)\n(global-set-key (kbd \"M-o\") 'open-previous-line)\n","subject":"Add open lines functionality from vim.","message":"Add open lines functionality from vim.\n","lang":"Emacs Lisp","license":"mit","repos":"mmcclimon\/dotfiles,mmcclimon\/dotfiles,mmcclimon\/dotfiles"} {"commit":"035cef604b163b33255d80db811624fa68591f67","old_file":"setup-files\/setup-rainbow-delimiters.el","new_file":"setup-files\/setup-rainbow-delimiters.el","old_contents":";; Time-stamp: <2015-02-23 11:42:32 kmodi>\n\n;; Rainbow Delimiters\n;; http:\/\/www.emacswiki.org\/emacs\/RainbowDelimiters\n\n(use-package rainbow-delimiters\n :config\n (progn\n ;; Enable in all programming-related modes\n (add-hook 'prog-mode-hook 'rainbow-delimiters-mode)))\n\n\n(provide 'setup-rainbow-delimiters)\n","new_contents":";; Time-stamp: <2015-02-23 11:42:32 kmodi>\n\n;; Rainbow Delimiters\n;; http:\/\/www.emacswiki.org\/emacs\/RainbowDelimiters\n\n(use-package rainbow-delimiters\n :config\n (progn\n ;; Enable in all programming-related modes\n (add-hook 'prog-mode-hook #'rainbow-delimiters-mode)))\n\n\n(provide 'setup-rainbow-delimiters)\n","subject":"Improve add-hook for function rainbow-delimiters-mode.","message":"Improve add-hook for function rainbow-delimiters-mode.\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"dd29c72b58581a4a56d7432944514ca11de888bd","old_file":"lisp\/init-locales.el","new_file":"lisp\/init-locales.el","old_contents":";;; init-locales.el --- Configure default locale -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(defun sanityinc\/utf8-locale-p (v)\n \"Return whether locale string V relates to a UTF-8 locale.\"\n (and v (string-match \"UTF-8\" v)))\n\n(defun sanityinc\/locale-is-utf8-p ()\n \"Return t iff the \\\"locale\\\" command or environment variables prefer UTF-8.\"\n (or (sanityinc\/utf8-locale-p (and (executable-find \"locale\") (shell-command-to-string \"locale\")))\n (sanityinc\/utf8-locale-p (getenv \"LC_ALL\"))\n (sanityinc\/utf8-locale-p (getenv \"LC_CTYPE\"))\n (sanityinc\/utf8-locale-p (getenv \"LANG\"))))\n\n(when (or window-system (sanityinc\/locale-is-utf8-p))\n (set-language-environment 'utf-8)\n (setq locale-coding-system 'utf-8)\n (set-default-coding-systems 'utf-8)\n (set-terminal-coding-system 'utf-8)\n (set-selection-coding-system (if (eq system-type 'windows-nt) 'utf-16-le 'utf-8))\n (prefer-coding-system 'utf-8))\n\n(provide 'init-locales)\n;;; init-locales.el ends here\n","new_contents":";;; init-locales.el --- Configure default locale -*- lexical-binding: t -*-\n;;; Commentary:\n;;; Code:\n\n(defun sanityinc\/utf8-locale-p (v)\n \"Return whether locale string V relates to a UTF-8 locale.\"\n (and v (string-match \"UTF-8\" v)))\n\n(defun sanityinc\/locale-is-utf8-p ()\n \"Return t iff the \\\"locale\\\" command or environment variables prefer UTF-8.\"\n (or (sanityinc\/utf8-locale-p (and (executable-find \"locale\") (shell-command-to-string \"locale\")))\n (sanityinc\/utf8-locale-p (getenv \"LC_ALL\"))\n (sanityinc\/utf8-locale-p (getenv \"LC_CTYPE\"))\n (sanityinc\/utf8-locale-p (getenv \"LANG\"))))\n\n(when (or window-system (sanityinc\/locale-is-utf8-p))\n (set-language-environment 'utf-8)\n (setq locale-coding-system 'utf-8)\n (set-selection-coding-system (if (eq system-type 'windows-nt) 'utf-16-le 'utf-8))\n (prefer-coding-system 'utf-8))\n\n(provide 'init-locales)\n;;; init-locales.el ends here\n","subject":"Remove redundant coding system configuration","message":"Remove redundant coding system configuration\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"lust4life\/emacs.d,arthurl\/emacs.d,benkha\/emacs.d,purcell\/emacs.d,sgarciac\/emacs.d,baohaojun\/emacs.d,dcorking\/emacs.d,krzysz00\/emacs.d,svenyurgensson\/emacs.d,cjqw\/emacs.d,braveoyster\/emacs.d,wegatron\/emacs.d,gsmlg\/emacs.d,emuio\/emacs.d,blueseason\/emacs.d,qianwan\/emacs.d,blueabysm\/emacs.d"} {"commit":"14ce4512720b7e99c0ee483f6e40b3123633dc40","old_file":"user-lisp\/org-customisations.el","new_file":"user-lisp\/org-customisations.el","old_contents":"(use-package org\n :config\n ;; When clocking in, just use the time from the last clocked out\n ;; item.\n (setq org-clock-continuously t)\n\n ;; Show drawers, e.g. :PROPERTIES:, when we expand a heading.\n ;; See http:\/\/emacs.stackexchange.com\/a\/22540\/304\n (remove-hook 'org-cycle-hook #'org-cycle-hide-drawers)\n\n ;; When creating or completing a TODO, record the timestamps.\n (setq org-log-done 'time)\n\n ;; Syntax highlight org code snippets.\n (setq org-src-fontify-natively t)\n\n ;; Show *foo* and \/foo\/ without org markers, just the formatting.\n (setq org-hide-emphasis-markers t)\n\n ;; Allow running code in sh and python\n (require 'ob-sh)\n (require 'ob-python)\n\n ;; Don't underline dates, it's distracting.\n (custom-set-faces\n '(org-date ((((class color)) (:underline nil))) t)))\n\n(require 'org-expiry)\n\n(add-hook 'org-after-todo-state-change-hook\n (lambda ()\n (when (string= org-state \"TODO\")\n (save-excursion\n (org-back-to-heading)\n (org-expiry-insert-created)))))\n\n(setq deft-directory \"~\/scratch\")\n(setq deft-default-extension \"org\")\n\n(provide 'org-customisations)\n","new_contents":"(use-package org\n :config\n ;; When clocking in, just use the time from the last clocked out\n ;; item.\n (setq org-clock-continuously t)\n\n ;; Show drawers, e.g. :PROPERTIES:, when we expand a heading.\n ;; See http:\/\/emacs.stackexchange.com\/a\/22540\/304\n (remove-hook 'org-cycle-hook #'org-cycle-hide-drawers)\n\n ;; When creating or completing a TODO, record the timestamps.\n (setq org-log-done 'time)\n\n ;; Syntax highlight org code snippets.\n (setq org-src-fontify-natively t)\n\n ;; Show *foo* and \/foo\/ without org markers, just the formatting.\n (setq org-hide-emphasis-markers t)\n\n ;; Allow running code in sh and python\n (require 'ob-sh)\n (require 'ob-python)\n\n ;; Don't underline dates, it's distracting.\n (custom-set-faces\n '(org-date ((((class color)) (:underline nil))) t)))\n\n(define-key org-mode-map (kbd \"C-c t\") #'counsel-org-tag)\n\n(require 'org-expiry)\n\n(add-hook 'org-after-todo-state-change-hook\n (lambda ()\n (when (string= org-state \"TODO\")\n (save-excursion\n (org-back-to-heading)\n (org-expiry-insert-created)))))\n\n(setq deft-directory \"~\/scratch\")\n(setq deft-default-extension \"org\")\n\n(provide 'org-customisations)\n","subject":"Define a keybinding for tagging org headings with counsel","message":"Define a keybinding for tagging org headings with counsel\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"cf36237b327c4ac152a86f1c7fe673c5f6c10d97","old_file":"init-clojure.el","new_file":"init-clojure.el","old_contents":"(add-hook 'clojure-mode-hook 'pretty-lambdas)\n(add-hook 'clojure-mode-hook (lambda () (enable-paredit clojure-mode-map)))\n\n\n(setq clojure-src-root (expand-file-name \"~\/Projects\/External\"))\n\n(setq swank-clojure-jar-path (concat clojure-src-root \"\/clojure\/clojure.jar\")\n swank-clojure-extra-classpaths (list (concat clojure-src-root \"\/clojure-contrib\/clojure-contrib.jar\")))\n\n(require 'swank-clojure-autoload)\n\n(eval-after-load \"slime\"\n '(progn\n ;; Ensure we get a REPL\n (slime-setup '(slime-repl))))\n\n\n(defun slime-clojure ()\n \"Fire up slime running the swank-clojure backend\"\n (interactive)\n (slime 'clojure))\n\n(provide 'init-clojure)\n","new_contents":"(add-hook 'clojure-mode-hook 'pretty-lambdas)\n(add-hook 'clojure-mode-hook (lambda () (enable-paredit clojure-mode-map)))\n\n\n(setq clojure-src-root (expand-file-name \"~\/Projects\/External\"))\n\n(setq swank-clojure-jar-path (concat clojure-src-root \"\/clojure\/clojure.jar\")\n swank-clojure-extra-vm-args (list \"-Xmx1024m\")\n swank-clojure-extra-classpaths (list (concat clojure-src-root \"\/clojure-contrib\/clojure-contrib.jar\")))\n\n(require 'swank-clojure-autoload)\n\n(eval-after-load \"slime\"\n '(progn\n ;; Ensure we get a REPL\n (slime-setup '(slime-repl))))\n\n\n(defun slime-clojure ()\n \"Fire up slime running the swank-clojure backend\"\n (interactive)\n (slime 'clojure))\n\n(provide 'init-clojure)\n","subject":"Allow the clojure REPL more memory by default under slime","message":"Allow the clojure REPL more memory by default under slime\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zuoshifan\/emacs.d,Togal\/emacs.d,fengxl\/emacs.d,whizzzkid\/emacs.d,Werewolflsp\/emacs.d,alant\/emacs.d,cyjia\/emacs.d,caoyuanqi\/emacs.d,Guoozz\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,danfengcao\/emacs.d,sgarciac\/emacs.d,scorpionis\/emacs.d,farzadbekran\/emacs.d,ilove0518\/emacs.d,baohaojun\/emacs.d,zhuoyikang\/emacs.d,modkzs\/emcs.d,ernest-dzf\/emacs.d,zuoshifan\/emacs.d,boblannon\/emacs.d,arthurl\/emacs.d,wenpincui\/emacs.d,ruiyang\/emacs.d,roxolan\/emacs.d,bibaijin\/emacs.d,jachinpy\/emacs.d,renatoriccio\/emacs.d,jachinpy\/emacs.d,shafayetkhan\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,kongfy\/emacs.d,zuoshifan\/emacs.d,DarkThrone\/emacs.d,lujianmei\/emacs.d,YangXin\/emacs.d,dongdonghu\/.emacs.d,jhpx\/emacs.d,lromang\/emacs.d,zenith-john\/emacs.d,zuoshifan\/emacs.d,wegatron\/emacs.d,farzadbekran\/emacs.d,46do14\/emacs.d,haodaivshen\/emacs.d,LKI\/emacs.d,emuio\/emacs.d,carlosliu\/emacs.d,purcell\/emacs.d,jthetzel\/emacs.d,cjqw\/emacs.d,atreeyang\/emacs.d,Enzo-Liu\/emacs.d,lust4life\/emacs.d,mpwang\/emacs.d,kindoblue\/emacs.d,zuoshifan\/emacs.d,jkaessens\/emacs.d,qianwan\/emacs.d,farzadbekran\/emacs.d,pairyo\/emacs.d,hkcqr\/emacs.d,Jadecity\/PurcellEmacs.d,LittleLmp\/emacs.d,farzadbekran\/emacs.d,blueabysm\/emacs.d,gsmlg\/emacs.d,benkha\/emacs.d,YangXin\/emacs.d,braveoyster\/emacs.d,zhaotai\/.emacs.d,Shanicky\/emacs.d,dcorking\/emacs.d,blueseason\/emacs.d,ruiyang\/emacs.d,mmqmzk\/emacs.d,me020523\/emacs.d,zuoshifan\/emacs.d,dhanunjaya\/emacs.d,hophacker\/emacs.d,krzysz00\/emacs.d,svenyurgensson\/emacs.d,qinshulei\/emacs.d,exclamaforte\/emacs.d"} {"commit":"8c9abe047c2a5f5794746cc300b5993db799f8d2","old_file":"lisp\/init-vc.el","new_file":"lisp\/init-vc.el","old_contents":"(maybe-require-package 'diff-hl)\n(add-hook 'prog-mode-hook 'turn-on-diff-hl-mode)\n(add-hook 'vc-dir-mode-hook 'turn-on-diff-hl-mode)\n\n(maybe-require-package 'browse-at-remote)\n\n(provide 'init-vc)\n","new_contents":"(when (maybe-require-package 'diff-hl)\n (add-hook 'prog-mode-hook 'turn-on-diff-hl-mode)\n (add-hook 'vc-dir-mode-hook 'turn-on-diff-hl-mode))\n\n(maybe-require-package 'browse-at-remote)\n\n(provide 'init-vc)\n","subject":"Enable diff-hl-mode only when available","message":"Enable diff-hl-mode only when available\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"wegatron\/emacs.d,blueseason\/emacs.d,kindoblue\/emacs.d,me020523\/emacs.d,roxolan\/emacs.d,kongfy\/emacs.d,dcorking\/emacs.d,sgarciac\/emacs.d,svenyurgensson\/emacs.d,braveoyster\/emacs.d,purcell\/emacs.d,benkha\/emacs.d,arthurl\/emacs.d,baohaojun\/emacs.d,krzysz00\/emacs.d,emuio\/emacs.d,qianwan\/emacs.d,mmqmzk\/emacs.d,cyjia\/emacs.d,lust4life\/emacs.d,gsmlg\/emacs.d,cjqw\/emacs.d,blueabysm\/emacs.d"} {"commit":"b2229660126c9e6d5fe87bd59047cc04874e2ac3","old_file":"site-lisp\/init.el","new_file":"site-lisp\/init.el","old_contents":";;; .emacs --- initialization\n;; Please be -*- emacs-lisp -*-\n;;; Code:\n; (package-initialize)\n\n(if (file-exists-p \"~\/.site-config\")\n (save-excursion\n (let ((site-config-buf (find-file-noselect \"~\/.site-config\")))\n (switch-to-buffer site-config-buf)\n (goto-char (point-min))\n (while (re-search-forward \"export \\\\(.*\\\\)=\\\\(.*\\\\)\" nil t)\n (setenv (match-string 1) (match-string 2)))\n (kill-buffer site-config-buf))))\n\n(load (concat (getenv \"DOTC_DIR\") \"\/site-lisp\/clgc-init.el\"))\n\n;;; .emacs ends here\n","new_contents":";;; .emacs --- initialization\n;; Please be -*- emacs-lisp -*-\n;;; Code:\n; (package-initialize)\n\n(if (file-exists-p \"~\/.site-config\")\n (save-excursion\n (let ((site-config-buf (find-file-noselect \"~\/.site-config\")))\n (switch-to-buffer site-config-buf)\n (goto-char (point-min))\n (while (re-search-forward \"export \\\\(.*\\\\)=\\\\(.*\\\\)\" nil t)\n (setenv (match-string 1) (match-string 2)))\n (kill-buffer site-config-buf))))\n\n(setenv \"INSIDE_EMACS\" \"1\")\n(load (concat (getenv \"DOTC_DIR\") \"\/site-lisp\/clgc-init.el\"))\n\n;;; .emacs ends here\n","subject":"Set INSIDE_EMACS on emacs start","message":"Set INSIDE_EMACS on emacs start\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"dgtized\/dotfiles,dgtized\/dotfiles,dgtized\/dotfiles"} {"commit":"a255eca94c3aa462ad62f7a42f34438452d2cabc","old_file":"Emacs\/emacs-custom.el","new_file":"Emacs\/emacs-custom.el","old_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(fido-mode t)\n '(global-display-line-numbers-mode t)\n '(ido-create-new-buffer 'always)\n '(ido-enable-flex-matching t)\n '(ido-everywhere t)\n '(ido-mode 'both nil (ido))\n '(indent-tabs-mode nil)\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode))\n '(standard-indent 4)\n '(tab-always-indent 'complete))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(fido-mode t)\n '(global-display-line-numbers-mode t)\n '(ido-create-new-buffer 'always)\n '(ido-enable-flex-matching t)\n '(ido-everywhere t)\n '(ido-mode 'both nil (ido))\n '(indent-tabs-mode nil)\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode))\n '(standard-indent 4)\n '(tab-always-indent 'complete)\n '(tab-width 4))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Set default tab-width to 4 in Emacs","message":"Set default tab-width to 4 in Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"Gosin\/Vim4Gosin"} {"commit":"48e337d623f4d963c58055d9b570600c5c95c5e0","old_file":"user-lisp\/lsp-customisations.el","new_file":"user-lisp\/lsp-customisations.el","old_contents":"\n(setq lsp-modeline-code-actions-segments '(count name))\n\n(setq lsp-rust-clippy-preference \"on\")\n\n(set-face-attribute 'lsp-lsp-flycheck-warning-unnecessary-face nil :foreground nil)\n\n;; Don't override my navigation bindings.\n(define-key lsp-signature-mode-map (kbd \"M-n\") nil)\n(define-key lsp-signature-mode-map (kbd \"M-p\") nil)\n","new_contents":"\n(setq lsp-modeline-code-actions-segments '(count name))\n\n(setq lsp-rust-clippy-preference \"on\")\n\n(set-face-attribute 'lsp-lsp-flycheck-warning-unnecessary-face nil :foreground nil)\n\n;; Don't override my navigation bindings.\n(define-key lsp-signature-mode-map (kbd \"M-n\") nil)\n(define-key lsp-signature-mode-map (kbd \"M-p\") nil)\n\n(define-key lsp-mode-map (kbd \"C-c f\") #'lsp-format-buffer)\n","subject":"Add a C-c f keybinding for formatting with LSP","message":"Add a C-c f keybinding for formatting with LSP\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"ef3516bed51427c88cf69fe5c5c806910ad96a5d","old_file":"layers\/mfa-go\/packages.el","new_file":"layers\/mfa-go\/packages.el","old_contents":"(defconst mfa-go-packages '(go-dlv))\n\n(defun mfa-go\/init-go-dlv ()\n (use-package go-dlv\n :defer t))\n","new_contents":"(defconst mfa-go-packages '(go-dlv projectile))\n\n(defun mfa-go\/init-go-dlv ()\n (use-package go-dlv\n :defer t))\n\n(defun mfa-go\/post-init-projectile ()\n (push '(projectile-project-test-cmd . \"go test\") safe-local-variable-values)\n (push '(projectile-project-compilation-cmd . \"go build\") safe-local-variable-values))\n","subject":"Whitelist go build commands as safe local variable values","message":"Whitelist go build commands as safe local variable values\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"39fd43dc7620000b49610207150894000287f324","old_file":"emacs.d\/conf\/51_configuration.el","new_file":"emacs.d\/conf\/51_configuration.el","old_contents":";; ==================================================\n;; Configuration language\n;; ==================================================\n\n;; --------------------------------------------------\n;; Yaml\n;; --------------------------------------------------\n(require 'yaml-mode)\n(add-to-list 'auto-mode-alist '(\"\\\\.yml$\" . yaml-mode))\n(add-hook 'yaml-mode-hook\n '(lambda ()\n (define-key yaml-mode-map \"\\C-m\" 'newline-and-indent)))\n\n;; --------------------------------------------------\n;; Vagrant\n;; --------------------------------------------------\n(add-to-list 'auto-mode-alist '(\"Vagrantfile$\" . ruby-mode))\n\n;; --------------------------------------------------\n;; Docker\n;; --------------------------------------------------\n(require 'dockerfile-mode nil)\n(add-to-list 'auto-mode-alist '(\"Dockerfile\\\\'\" . dockerfile-mode))\n\n;; --------------------------------------------------\n;; Capistrano\n;; --------------------------------------------------\n(add-to-list 'auto-mode-alist '(\"Capfile$\" . ruby-mode))\n\n;; --------------------------------------------------\n;; Guard\n;; --------------------------------------------------\n(add-to-list 'auto-mode-alist '(\"Guardfile$\" . ruby-mode))\n\n;; --------------------------------------------------\n;; Chef\n;; --------------------------------------------------\n(add-to-list 'auto-mode-alist '(\"Berksfile$\" . ruby-mode))\n\n","new_contents":";; ==================================================\n;; Configuration language\n;; ==================================================\n\n;; --------------------------------------------------\n;; Yaml\n;; --------------------------------------------------\n(require 'yaml-mode)\n(add-to-list 'auto-mode-alist '(\"\\\\.yml$\" . yaml-mode))\n(add-hook 'yaml-mode-hook\n '(lambda ()\n (define-key yaml-mode-map \"\\C-m\" 'newline-and-indent)))\n\n;; --------------------------------------------------\n;; Vagrant\n;; --------------------------------------------------\n(add-to-list 'auto-mode-alist '(\"Vagrantfile$\" . ruby-mode))\n\n;; --------------------------------------------------\n;; Docker\n;; --------------------------------------------------\n(require 'dockerfile-mode nil)\n(add-to-list 'auto-mode-alist '(\"Dockerfile\\\\'\" . dockerfile-mode))\n\n;; --------------------------------------------------\n;; Capistrano\n;; --------------------------------------------------\n(add-to-list 'auto-mode-alist '(\"Capfile$\" . ruby-mode))\n\n;; --------------------------------------------------\n;; Guard\n;; --------------------------------------------------\n(add-to-list 'auto-mode-alist '(\"Guardfile$\" . ruby-mode))\n\n;; --------------------------------------------------\n;; Chef\n;; --------------------------------------------------\n(add-to-list 'auto-mode-alist '(\"Berksfile$\" . ruby-mode))\n\n;; --------------------------------------------------\n;; Systemd\n;; --------------------------------------------------\n(add-to-list 'auto-mode-alist '(\"\\\\.service$\" . conf-mode))\n","subject":"Add conf mode for systemd","message":"Add conf mode for systemd\n","lang":"Emacs Lisp","license":"mit","repos":"naokazuterada\/dotfiles,naokazuterada\/dotfiles"} {"commit":"59df9862887054f31604ff1dd253a661dddacca4","old_file":"load\/md.el","new_file":"load\/md.el","old_contents":"(add-to-list 'auto-mode-alist '(\"\\\\.md\\\\'\" . markdown-mode))\n\n(add-hook\n 'markdown-mode-hook\n (lambda ()\n (local-unset-key (kbd \"\"))\n (defvar markdown-indent-on-enter \"markdown-mode.el\")\n (setq markdown-indent-on-enter nil)\n ;; Clean whitespace on save (except in \/Developer\/).\n (add-hook 'before-save-hook\n (lambda ()\n (unless\n (string-match \"\/Developer\/\" default-directory)\n (whitespace-cleanup))) nil t)\n ;; Use visual-line-mode instead of auto-fill-mode\n (auto-fill-mode 0)\n (visual-line-mode 1)\n ;; Disable flycheck\n (flycheck-mode 0)\n ;; Disable company-mode\n (company-mode 0)))\n","new_contents":"(add-to-list 'auto-mode-alist '(\"\\\\.md\\\\'\" . markdown-mode))\n\n(add-hook\n 'markdown-mode-hook\n (lambda ()\n (local-unset-key (kbd \"\"))\n (defvar markdown-indent-on-enter \"markdown-mode.el\")\n (setq markdown-indent-on-enter nil)\n ;; Clean whitespace on save (except in \/Developer\/).\n (add-hook 'before-save-hook\n (lambda ()\n (unless\n (string-match \"\/Developer\/\" default-directory)\n (whitespace-cleanup))) nil t)\n ;; Use visual-line-mode instead of auto-fill-mode\n (auto-fill-mode 0)\n (visual-line-mode 1)\n ;; Disable flycheck\n (flycheck-mode 0)\n ;; Disable company-mode\n (company-mode 0)\n ;; Turn on subword mode.\n (subword-mode)\n (require 'diminish)\n (diminish 'subword-mode)))\n","subject":"Enable subword mode in markdown","message":"Enable subword mode in markdown\n","lang":"Emacs Lisp","license":"mit","repos":"kaidadragonfly\/.emacs"} {"commit":"2e3feaa05de82545dc4542d54e00ae12474f7709","old_file":"init-flyspell.el","new_file":"init-flyspell.el","old_contents":"(dolist (hook '(lisp-mode-hook\n emacs-lisp-mode-hook\n scheme-mode-hook\n ruby-mode-hook\n yaml-mode\n python-mode-hook\n shell-mode-hook\n php-mode-hook\n css-mode-hook\n haskell-mode-hook\n caml-mode-hook\n nxml-mode-hook\n crontab-mode-hook\n perl-mode-hook\n tcl-mode-hook\n javascript-mode-hook))\n (add-hook hook 'flyspell-prog-mode))\n(add-hook 'nxml-mode-hook\n (lambda ()\n (add-to-list 'flyspell-prog-text-faces 'nxml-text-face)))\n\n\n(provide 'init-flyspell)\n","new_contents":"(dolist (hook '(lisp-mode-hook\n emacs-lisp-mode-hook\n scheme-mode-hook\n clojure-mode-hook\n ruby-mode-hook\n yaml-mode\n python-mode-hook\n shell-mode-hook\n php-mode-hook\n css-mode-hook\n haskell-mode-hook\n caml-mode-hook\n nxml-mode-hook\n crontab-mode-hook\n perl-mode-hook\n tcl-mode-hook\n javascript-mode-hook))\n (add-hook hook 'flyspell-prog-mode))\n(add-hook 'nxml-mode-hook\n (lambda ()\n (add-to-list 'flyspell-prog-text-faces 'nxml-text-face)))\n\n\n(provide 'init-flyspell)\n","subject":"Add clojure-mode to mode list for flyspell-prog-mode","message":"Add clojure-mode to mode list for flyspell-prog-mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"bibaijin\/emacs.d,arthurl\/emacs.d,ruiyang\/emacs.d,zuoshifan\/emacs.d,zhaotai\/.emacs.d,shafayetkhan\/emacs.d,jachinpy\/emacs.d,sgarciac\/emacs.d,wenpincui\/emacs.d,emuio\/emacs.d,kongfy\/emacs.d,atreeyang\/emacs.d,cjqw\/emacs.d,ilove0518\/emacs.d,hkcqr\/emacs.d,farzadbekran\/emacs.d,lromang\/emacs.d,qinshulei\/emacs.d,farzadbekran\/emacs.d,whizzzkid\/emacs.d,Werewolflsp\/emacs.d,purcell\/emacs.d,me020523\/emacs.d,baohaojun\/emacs.d,zuoshifan\/emacs.d,Guoozz\/emacs.d,danfengcao\/emacs.d,ernest-dzf\/emacs.d,zuoshifan\/emacs.d,modkzs\/emcs.d,lujianmei\/emacs.d,caoyuanqi\/emacs.d,zuoshifan\/emacs.d,LKI\/emacs.d,jthetzel\/emacs.d,pairyo\/emacs.d,kindoblue\/emacs.d,farzadbekran\/emacs.d,boblannon\/emacs.d,dhanunjaya\/emacs.d,roxolan\/emacs.d,hophacker\/emacs.d,lust4life\/emacs.d,svenyurgensson\/emacs.d,jhpx\/emacs.d,haodaivshen\/emacs.d,blueabysm\/emacs.d,exclamaforte\/emacs.d,YangXin\/emacs.d,blueseason\/emacs.d,zuoshifan\/emacs.d,46do14\/emacs.d,zhuoyikang\/emacs.d,carlosliu\/emacs.d,zuoshifan\/emacs.d,qianwan\/emacs.d,mmqmzk\/emacs.d,Jadecity\/PurcellEmacs.d,LittleLmp\/emacs.d,benkha\/emacs.d,fengxl\/emacs.d,ruiyang\/emacs.d,Enzo-Liu\/emacs.d,DarkThrone\/emacs.d,zuoshifan\/emacs.d,jachinpy\/emacs.d,cyjia\/emacs.d,scorpionis\/emacs.d,YangXin\/emacs.d,renatoriccio\/emacs.d,mpwang\/emacs.d,dcorking\/emacs.d,alant\/emacs.d,krzysz00\/emacs.d,zenith-john\/emacs.d,wegatron\/emacs.d,farzadbekran\/emacs.d,braveoyster\/emacs.d,Togal\/emacs.d,Shanicky\/emacs.d,gsmlg\/emacs.d,zuoshifan\/emacs.d,dongdonghu\/.emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,jkaessens\/emacs.d"} {"commit":"b9af86862b5a1d7d506cd688f0a69eea6c02f680","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n ivy\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n\n :lang\n agda\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk)\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n (write ; emacs as a word processor (latex + org + markdown)\n +wordnut ; wordnet (wn) search\n +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n ivy\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n hydra\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n ein\n\n :lang\n agda\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk)\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n (write ; emacs as a word processor (latex + org + markdown)\n +wordnut ; wordnet (wn) search\n +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","subject":"Enable :tools ein in doom","message":"Enable :tools ein in doom\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"8383cb3089d69530606760ac56f8df89fe402963","old_file":"lisp\/packages.el","new_file":"lisp\/packages.el","old_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"melpa\" . \"http:\/\/melpa.org\/packages\/\")\n (\"org\" . \"http:\/\/orgmode.org\/elpa\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '( bbdb\n beginend\n bm\n circe\n circe-notifications\n color-theme-sanityinc-tomorrow\n company\n company-flx\n company-ghc\n dante\n deft\n dictionary\n dired-collapse\n dired-narrow\n dired-subtree\n flx\n flx-ido\n flycheck\n gist\n google-contacts\n graphviz-dot-mode\n indium\n haskell-mode\n highlight-indent-guides\n htmlize\n http\n hydra\n inf-ruby\n js2-mode\n magit\n markdown-mode\n nix-mode\n no-littering\n passmm\n rainbow-mode\n rhtml-mode\n ruby-end\n scad-mode\n smex\n smtpmail-multi\n yaml-mode\n yasnippet\n )\n \"A list of packages to ensure are installed at launch.\")\n\n;; Prepare package management\n(package-initialize)\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (package-refresh-contents)\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p t))))\n","new_contents":";;; packages.el -- Emacs package management\n(require 'package)\n\n(defvar pjones:package-archives\n '((\"melpa\" . \"http:\/\/melpa.org\/packages\/\")\n (\"org\" . \"http:\/\/orgmode.org\/elpa\/\"))\n \"List of package archives to use with Emacs.\")\n\n(defvar pjones:packages\n '( bbdb\n beginend\n bm\n circe\n circe-notifications\n color-theme-sanityinc-tomorrow\n company\n company-flx\n company-ghc\n dante\n deft\n dictionary\n dired-collapse\n dired-narrow\n dired-subtree\n flx\n flx-ido\n flycheck\n gist\n google-contacts\n graphviz-dot-mode\n indium\n haskell-mode\n highlight-indent-guides\n htmlize\n http\n hydra\n inf-ruby\n js2-mode\n magit\n markdown-mode\n nix-mode\n no-littering\n org\n org-tree-slide\n passmm\n rainbow-mode\n rhtml-mode\n ruby-end\n scad-mode\n smex\n smtpmail-multi\n yaml-mode\n yasnippet\n )\n \"A list of packages to ensure are installed at launch.\")\n\n;; Prepare package management\n(package-initialize)\n\n(dolist (archive pjones:package-archives)\n (add-to-list 'package-archives archive))\n\n;; Make sure all the packages are installed\n(defun pjones:install-packages ()\n (package-refresh-contents)\n (dolist (p pjones:packages)\n (when (not (package-installed-p p))\n (package-install p t))))\n","subject":"Bring in orgmode and org-tree-slide","message":"Bring in orgmode and org-tree-slide\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"pjones\/emacsrc"} {"commit":"4b63fddba3aa229ca9d7c2c402f1a216155b2cad","old_file":"lib\/display.el","new_file":"lib\/display.el","old_contents":";; -*- lexical-binding: t -*-\n\n;;;###autoload\n(defun display-assume-graphic-p ()\n \"My Emacs instances are dedicated to either the graphical environment or the\nterminal. My customizations differ slightly between the two. This functions\nreturns whether this Emacs instance is dedicated to the graphical environment.\"\n (or (display-graphic-p)\n (string-equal (getenv \"EMACS_SOCKET_NAME\") \"server-x\")))\n\n;;;###autoload\n(defun display-scaling-factor ()\n \"Reads the display scaling factor from the Cinnamon dconf database.\nThis will return 2 on Hi-DPI displays, 1 otherwise.\"\n (pcase (getenv \"DESKTOP_SESSION\")\n (\"plasma\"\n (round (string-to-number\n (shell-command-to-string\n \"xrdb -query | awk -F :\\\\\\\\t 'BEGIN { dpi = 96 } $1 == \\\"Xft.dpi\\\" { dpi = $2 } END { print dpi }'\"))\n 96))\n (\"cinnamon\"\n (string-to-number\n (shell-command-to-string\n \"dconf read \/org\/cinnamon\/active-display-scale\")))\n (\"gnome\"\n (string-to-number\n (shell-command-to-string\n \"dconf read \/org\/gnome\/desktop\/interface\/scaling-factor | awk '{ print $2 }'\")))\n (_ 1)))\n\n;;;###autoload\n(defun display-adjusted-font-size ()\n \"Returns my preferred font size of 14 point multiplied by the screen scaling\nfactor set by the desktop environment.\"\n (* 14 (display-scaling-factor)))\n\n(provide 'display)\n","new_contents":";; -*- lexical-binding: t -*-\n\n;;;###autoload\n(defun display-assume-graphic-p ()\n \"My Emacs instances are dedicated to either the graphical environment or the\nterminal. My customizations differ slightly between the two. This functions\nreturns whether this Emacs instance is dedicated to the graphical environment.\"\n (or (display-graphic-p)\n (string-equal (daemonp) \"server-x\")))\n\n;;;###autoload\n(defun display-scaling-factor ()\n \"Reads the display scaling factor from the Cinnamon dconf database.\nThis will return 2 on Hi-DPI displays, 1 otherwise.\"\n (pcase (getenv \"DESKTOP_SESSION\")\n (\"plasma\"\n (round (string-to-number\n (shell-command-to-string\n \"xrdb -query | awk -F :\\\\\\\\t 'BEGIN { dpi = 96 } $1 == \\\"Xft.dpi\\\" { dpi = $2 } END { print dpi }'\"))\n 96))\n (\"cinnamon\"\n (string-to-number\n (shell-command-to-string\n \"dconf read \/org\/cinnamon\/active-display-scale\")))\n (\"gnome\"\n (string-to-number\n (shell-command-to-string\n \"dconf read \/org\/gnome\/desktop\/interface\/scaling-factor | awk '{ print $2 }'\")))\n (_ 1)))\n\n;;;###autoload\n(defun display-adjusted-font-size ()\n \"Returns my preferred font size of 14 point multiplied by the screen scaling\nfactor set by the desktop environment.\"\n (* 14 (display-scaling-factor)))\n\n(provide 'display)\n","subject":"Make check for the \"GUI\" daemon instance more robust","message":"Make check for the \"GUI\" daemon instance more robust\n\nThere is no need to read the environment variable (which might not be set,\nthat's the brittle part) to determine the name of the server socket. We can\nrather use (daemonp) which doesn't return a boolean, as the suffix \"p\" might\nsuggest, rather it returns the socket name.\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"c0900856729d05f34013b328ae941d7cf27e9db4","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"((nil . ((eval . (setq compile-command (format \"cd %s && make check\" (locate-dominating-file buffer-file-name \".dir-locals.el\")))))))\n","new_contents":"((nil . ((eval . (setq compile-command (format \"cd %s && make all\" (locate-dominating-file buffer-file-name \".dir-locals.el\")))))))\n","subject":"Set compile-command to \"make all\" instead of \"make check\"","message":"Set compile-command to \"make all\" instead of \"make check\"\n","lang":"Emacs Lisp","license":"agpl-3.0","repos":"glondu\/belenios,glondu\/belenios,glondu\/belenios,glondu\/belenios,glondu\/belenios"} {"commit":"146ca46d4a8914a3755f85f7939b782ddadcfb41","old_file":"emacs\/.emacs.d\/config\/my-lookfeel.el","new_file":"emacs\/.emacs.d\/config\/my-lookfeel.el","old_contents":";; linum-relative: Vim-like relative line numbers\n;; https:\/\/github.com\/coldnew\/linum-relative\n(use-package linum-relative\n :ensure linum-relative\n :init\n (linum-relative-global-mode 1))\n\n;; atom-one-dark-theme: An Emacs port of the Atom One Dark theme from Atom.io.\n;; https:\/\/github.com\/jonathanchu\/atom-one-dark-theme\n(use-package atom-one-dark-theme\n :ensure atom-one-dark-theme\n :config\n (progn\n (unless noninteractive\n (load-theme 'atom-one-dark t))))\n\n;; Disable the intro screen & message\n(setq inhibit-splash-screen t\n inhibit-startup-echo-area-message t\n inhibit-startup-message t)\n\n;; Sane line wrapping\n(visual-line-mode 1)\n\n;; Always trail newline\n(setq require-final-newline t)\n\n;; Disable the toolbar\n(tool-bar-mode -1)\n\n(provide 'my-lookfeel)\n","new_contents":";;; linum-relative: Vim-like relative line numbers\n;;; https:\/\/github.com\/coldnew\/linum-relative\n(use-package linum-relative\n :ensure linum-relative\n :init\n (linum-relative-global-mode 1))\n\n;;; atom-one-dark-theme: An Emacs port of the Atom One Dark theme from Atom.io.\n;;; https:\/\/github.com\/jonathanchu\/atom-one-dark-theme\n(use-package atom-one-dark-theme\n :ensure atom-one-dark-theme\n :config\n (progn\n (unless noninteractive\n (load-theme 'atom-one-dark t))))\n\n;; Disable the intro screen & message\n(setq inhibit-splash-screen t\n inhibit-startup-echo-area-message t\n inhibit-startup-message t)\n\n;; Sane line wrapping\n(visual-line-mode 1)\n\n;; Always trail newline\n(setq require-final-newline t)\n\n;; Disable the toolbar\n(tool-bar-mode -1)\n\n;; Set font\n(add-to-list 'default-frame-alist '(font . \"Hack-10\"))\n\n(provide 'my-lookfeel)\n","subject":"Set font to Hack-10 and updated comments","message":"Set font to Hack-10 and updated comments\n","lang":"Emacs Lisp","license":"unlicense","repos":"Llewxamris\/dotfiles"} {"commit":"bf5ddced6f99e3847a700efcbdf771f7e1fc0c5f","old_file":"init.el","new_file":"init.el","old_contents":";;; init.el --- Where all the magic begins\n;;\n;; This file loads Org-mode and then loads the rest of our Emacs initialization from Emacs lisp\n;; embedded in literate Org-mode files.\n\n(require 'cl)\n\n(defun tnoda\/find-brew-cask-prefix\n ()\n (with-current-buffer (get-buffer-create \"*brew-cask-prefix\")\n (erase-buffer)\n (if (zerop (call-process \"brew\" nil t nil \"--prefix\" \"cask\"))\n (buffer-substring (point-min) (1- (point-max))))))\n\n(defconst tnoda\/cask-el-path\n (when-let (prefix (tnoda\/find-brew-cask-prefix))\n (expand-file-name \"cask.el\" prefix)))\n\n(require 'cask tnoda\/cask-el-path)\n(cask-initialize)\n\n;; Load up Org Mode and (now included) Org Babel for elisp embedded in Org Mode files\n(defconst tnoda\/dotfiles-dir (file-name-directory (or (buffer-file-name) load-file-name)))\n\n(require 'org)\n(require 'ob-tangle)\n\n;; load up all literate org-mode files in this directory\n(mapc #'org-babel-load-file (directory-files tnoda\/dotfiles-dir t \"\\\\.org$\"))\n\n;;; init.el ends here\n\n;;; Originally retrieved from http:\/\/orgmode.org\/worg\/org-contrib\/babel\/intro.html on 2012-01-10\n","new_contents":";;; init.el --- Where all the magic begins\n;;\n;; This file loads Org-mode and then loads the rest of our Emacs initialization from Emacs lisp\n;; embedded in literate Org-mode files.\n\n(require 'cl)\n\n(defun tnoda\/find-brew-cask-prefix\n ()\n (with-current-buffer (get-buffer-create \"*brew-cask-prefix\")\n (erase-buffer)\n (if (zerop (call-process \"brew\" nil t nil \"--prefix\" \"cask\"))\n (buffer-substring (point-min) (1- (point-max))))))\n\n(defconst tnoda\/cask-el-path\n (when-let (prefix (tnoda\/find-brew-cask-prefix))\n (expand-file-name \"cask.el\" prefix)))\n\n(require 'cask tnoda\/cask-el-path)\n(cask-initialize)\n\n(add-to-list 'Info-directory-list (cask-resource-path \"org-plus-contrib\"))\n\n;; Load up Org Mode and (now included) Org Babel for elisp embedded in Org Mode files\n(defconst tnoda\/dotfiles-dir (file-name-directory (or (buffer-file-name) load-file-name)))\n\n(require 'org)\n(require 'ob-tangle)\n\n;; load up all literate org-mode files in this directory\n(mapc #'org-babel-load-file (directory-files tnoda\/dotfiles-dir t \"\\\\.org$\"))\n\n;;; init.el ends here\n\n;;; Originally retrieved from http:\/\/orgmode.org\/worg\/org-contrib\/babel\/intro.html on 2012-01-10\n","subject":"Add Org's cask directory to Info-directory-list.","message":"Add Org's cask directory to Info-directory-list.\n","lang":"Emacs Lisp","license":"mit","repos":"tnoda\/.emacs.d"} {"commit":"aafc73cd978f77d5f165c5065eb32b6b8c4e31b9","old_file":"setup-files\/setup-magit.el","new_file":"setup-files\/setup-magit.el","old_contents":";; Time-stamp: <2014-02-18 13:26:32 kmodi>\n\n;; magit\n;; Source: https:\/\/github.com\/magit\/magit\n\n(require 'magit)\n\n(setq magit-completing-read-function 'magit-ido-completing-read\n magit-repo-dirs '( \"~\/.emacs.d\"\n )\n )\n\n\n(setq setup-magit-loaded t)\n(provide 'setup-magit)\n","new_contents":";; Time-stamp: <2014-03-07 15:13:15 kmodi>\n\n;; magit\n;; Source: https:\/\/github.com\/magit\/magit\n\n(require 'magit)\n\n(setq magit-completing-read-function 'magit-ido-completing-read\n magit-auto-revert-mode nil\n magit-repo-dirs '( \"~\/.emacs.d\"\n )\n )\n\n\n(setq setup-magit-loaded t)\n(provide 'setup-magit)\n","subject":"Set the magit auto revert to false","message":"Set the magit auto revert to false\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"d5ab67fa0b550985a15d7a5150eda8b00b66319f","old_file":".emacs.d\/clipboard.el","new_file":".emacs.d\/clipboard.el","old_contents":"(when (eq system-type 'darwin)\n (progn\n (defun copy-from-osx () (shell-command-to-string \"pbpaste\"))\n (defun paste-to-osx (text &optional push)\n (let ((process-connection-type nil))\n\t(let ((proc (start-process \"pbcopy\" \"*Messages*\" \"pbcopy\")))\n\t (process-send-string proc text)\n\t (process-send-eof proc))))\n\n (setq interprogram-cut-function 'paste-to-osx)\n (setq interprogram-paste-function 'copy-from-osx)))\n","new_contents":"(when (eq system-type 'darwin)\n (progn\n (defun copy-from-osx () (let ((tramp-mode nil) (default-directory \"~\"))\n (shell-command-to-string \"pbpaste\")))\n (defun paste-to-osx (text &optional push)\n (let ((process-connection-type nil))\n (let ((proc (start-process \"pbcopy\" \"*Messages*\" \"pbcopy\")))\n (process-send-string proc text)\n (process-send-eof proc))))\n\n (setq interprogram-cut-function 'paste-to-osx)\n (setq interprogram-paste-function 'copy-from-osx)))\n","subject":"Copy and paste correctly when editing files with tramp.","message":"Copy and paste correctly when editing files with tramp.\n","lang":"Emacs Lisp","license":"mit","repos":"bamos\/dotfiles,bamos\/dotfiles,bamos\/dotfiles"} {"commit":"49c787fbded6debe87a522e8d5af78f89c0001cf","old_file":"emacs.d\/behavior.el","new_file":"emacs.d\/behavior.el","old_contents":";; ~\/.emacs.d\/behavior.el\n;; Configuration settings for how Emacs should behave\n\n(use-package better-defaults\n :ensure t)\n\n(use-package helm\n :ensure t)\n(helm-mode 1)\n\n;; Always follow symlinks, do not prompt\n(setq vc-follow-symlinks t)\n\n;; Automatically download ELPA packages if not present\n(setq use-package-always-ensure t)\n\n;; Automatically fill paragraphs instead of doing M-q a whole bunch\n(add-hook 'text-mode-hook 'turn-on-auto-fill)\n(add-hook 'org-mode-hook 'turn-on-auto-fill)\n","new_contents":";; ~\/.emacs.d\/behavior.el\n;; Configuration settings for how Emacs should behave\n\n(use-package better-defaults\n :ensure t)\n\n;; Use Helm for basic autocompletion and dialogs\n(use-package helm\n :ensure t)\n(helm-mode 1)\n(global-set-key \"\\C-x\\C-f\" 'helm-find-files)\n(global-set-key \"\\M-x\" 'helm-M-x)\n\n;; Always follow symlinks, do not prompt\n(setq vc-follow-symlinks t)\n\n;; Automatically download ELPA packages if not present\n(setq use-package-always-ensure t)\n\n;; Automatically fill paragraphs instead of doing M-q a whole bunch\n(add-hook 'text-mode-hook 'turn-on-auto-fill)\n(add-hook 'org-mode-hook 'turn-on-auto-fill)\n","subject":"Use helm for C-x C-f and M-x","message":"Use helm for C-x C-f and M-x\n","lang":"Emacs Lisp","license":"mit","repos":"ben01189998819991197253\/dotfiles"} {"commit":"d9992e9b6fc15d2442d2df818bc6818e090b7260","old_file":"Emacs\/emacs-custom.el","new_file":"Emacs\/emacs-custom.el","old_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(fido-mode t)\n '(global-display-line-numbers-mode t)\n '(ido-create-new-buffer 'always)\n '(ido-enable-flex-matching t)\n '(ido-everywhere t)\n '(ido-mode 'both nil (ido))\n '(indent-tabs-mode nil)\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(helm paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode))\n '(standard-indent 4)\n '(tab-always-indent nil)\n '(tab-width 4))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","new_contents":"(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(apropos-sort-by-scores t)\n '(backup-directory-alist `((\".*\" \\, temporary-file-directory)))\n '(fido-mode t)\n '(global-display-line-numbers-mode t)\n '(ido-create-new-buffer 'always)\n '(ido-enable-flex-matching t)\n '(ido-everywhere t)\n '(ido-mode 'both nil (ido))\n '(indent-tabs-mode nil)\n '(org-log-done 'time)\n '(org-log-into-drawer \"LOGBOOK\")\n '(package-archives\n '((\"gnu\" . \"https:\/\/elpa.gnu.org\/packages\/\")\n (\"melpa\" . \"https:\/\/melpa.org\/packages\/\")))\n '(package-selected-packages\n '(org-bullets helm paredit sml-mode ycmd solarized-theme rust-mode rainbow-delimiters markdown-mode magit company cmake-mode))\n '(standard-indent 4)\n '(tab-always-indent nil)\n '(tab-width 4))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Add org-bullets package in Emacs","message":"Add org-bullets package in Emacs\n","lang":"Emacs Lisp","license":"mit","repos":"Gosin\/Vim4Gosin"} {"commit":"3bb2b9c9533e62ceaaecd27734b24670edb6fcbe","old_file":"init-exec-path.el","new_file":"init-exec-path.el","old_contents":"(defun set-exec-path-from-shell-PATH ()\n (let ((path-from-shell (shell-command-to-string \"$SHELL -i -c 'echo $PATH'\")))\n (setenv \"PATH\" path-from-shell)\n (setq exec-path (split-string path-from-shell path-separator))))\n\n(when *is-a-mac*\n (eval-after-load \"woman\"\n '(setq woman-manpath (append (list \"\/opt\/local\/man\") woman-manpath)))\n\n ;; When started from Emacs.app or similar, ensure $PATH\n ;; is the same the user would see in Terminal.app\n (if window-system (set-exec-path-from-shell-PATH)))\n\n\n(provide 'init-exec-path)","new_contents":"(defun set-exec-path-from-shell-PATH ()\n (let ((path-from-shell (shell-command-to-string \"$SHELL -i -l -c 'echo $PATH'\")))\n (setenv \"PATH\" path-from-shell)\n (setq exec-path (split-string path-from-shell path-separator))))\n\n(when *is-a-mac*\n (eval-after-load \"woman\"\n '(setq woman-manpath (append (list \"\/opt\/local\/man\") woman-manpath)))\n\n ;; When started from Emacs.app or similar, ensure $PATH\n ;; is the same the user would see in Terminal.app\n (if window-system (set-exec-path-from-shell-PATH)))\n\n\n(provide 'init-exec-path)\n","subject":"Use -l when exec-ing $SHELL to find the user's desired path","message":"Use -l when exec-ing $SHELL to find the user's desired path\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"farzadbekran\/emacs.d,LKI\/emacs.d,ilove0518\/emacs.d,jhpx\/emacs.d,benkha\/emacs.d,alant\/emacs.d,zuoshifan\/emacs.d,blueabysm\/emacs.d,cjqw\/emacs.d,lujianmei\/emacs.d,braveoyster\/emacs.d,cyjia\/emacs.d,zuoshifan\/emacs.d,fengxl\/emacs.d,scorpionis\/emacs.d,wenpincui\/emacs.d,hkcqr\/emacs.d,atreeyang\/emacs.d,mpwang\/emacs.d,sgarciac\/emacs.d,mmqmzk\/emacs.d,Togal\/emacs.d,qinshulei\/emacs.d,zhuoyikang\/emacs.d,kongfy\/emacs.d,blueseason\/emacs.d,boblannon\/emacs.d,zenith-john\/emacs.d,exclamaforte\/emacs.d,zuoshifan\/emacs.d,caoyuanqi\/emacs.d,renatoriccio\/emacs.d,Enzo-Liu\/emacs.d,modkzs\/emcs.d,wegatron\/emacs.d,ruiyang\/emacs.d,jachinpy\/emacs.d,YangXin\/emacs.d,jkaessens\/emacs.d,roxolan\/emacs.d,lromang\/emacs.d,DarkThrone\/emacs.d,Werewolflsp\/emacs.d,krzysz00\/emacs.d,zuoshifan\/emacs.d,gsmlg\/emacs.d,pairyo\/emacs.d,whizzzkid\/emacs.d,LittleLmp\/emacs.d,qianwan\/emacs.d,dongdonghu\/.emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,bibaijin\/emacs.d,dcorking\/emacs.d,dhanunjaya\/emacs.d,Jadecity\/PurcellEmacs.d,hophacker\/emacs.d,zuoshifan\/emacs.d,arthurl\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,Guoozz\/emacs.d,me020523\/emacs.d,Shanicky\/emacs.d,ernest-dzf\/emacs.d,jthetzel\/emacs.d,YangXin\/emacs.d,farzadbekran\/emacs.d,danfengcao\/emacs.d,haodaivshen\/emacs.d,zuoshifan\/emacs.d,lust4life\/emacs.d,baohaojun\/emacs.d,purcell\/emacs.d,emuio\/emacs.d,kindoblue\/emacs.d,farzadbekran\/emacs.d,zuoshifan\/emacs.d,carlosliu\/emacs.d,ruiyang\/emacs.d,shafayetkhan\/emacs.d,46do14\/emacs.d,svenyurgensson\/emacs.d,jachinpy\/emacs.d,zhaotai\/.emacs.d"} {"commit":"d679645befcb48fa39e4be3f4865d0b9de3a7d89","old_file":".emacs.d\/config\/packages\/helm-ag.el","new_file":".emacs.d\/config\/packages\/helm-ag.el","old_contents":";;; helm-ag.el --- Configuration for helm-ag\n\n\n\n;;; Commentary:\n;; Set up helm-ag searching\n;; - Use pt (The Platinum Searcher) rather than ag.\n;; - Set a keybinding\n\n\n\n;;; Code:\n(use-package helm-ag\n :ensure t\n :init\n (setq helm-ag-fuzzy-match t)\n (setq helm-ag-base-command \"pt -e nocolor --nogroup\")\n :bind\n (\"C-c p s h\" . helm-ag))\n\n\n\n;;; helm-ag.el ends here\n","new_contents":";;; helm-ag.el --- Configuration for helm-ag\n\n\n\n;;; Commentary:\n;; Set up helm-ag searching\n;; - Use pt (The Platinum Searcher) rather than ag.\n;; - Set a keybinding\n\n\n\n;;; Code:\n(use-package helm-ag\n :ensure t\n :init\n (setq helm-ag-fuzzy-match t)\n :bind\n (\"C-c p s h\" . helm-ag))\n\n\n\n;;; helm-ag.el ends here\n","subject":"Revert to ag rather than pt searches","message":"Revert to ag rather than pt searches\n","lang":"Emacs Lisp","license":"mit","repos":"madintist\/emacs-config"} {"commit":"0c2666e27c5748f9b2203718fba5a3773d9b6650","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n ivy\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk)\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n (write ; emacs as a word processor (latex + org + markdown)\n +wordnut ; wordnet (wn) search\n +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n ivy\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n\n :lang\n agda\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk)\n\n :term\n vterm\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n (write ; emacs as a word processor (latex + org + markdown)\n +wordnut ; wordnet (wn) search\n +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","subject":"Enable doom emacs agda plugin","message":"Enable doom emacs agda plugin\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"bd78bbd0b5db3bfae2789eec4b5abe7e8be57abd","old_file":".emacs.d\/init-haskell.el","new_file":".emacs.d\/init-haskell.el","old_contents":"(require 'use-package)\n\n(use-package ghc\n :config (progn\n\t (add-hook 'haskell-mode-hook 'ghc-init))\n :ensure t)\n\n(use-package haskell-mode\n :ensure t\n :config (progn\n\t (add-hook 'haskell-mode-hook 'interactive-haskell-mode)\n\t (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)\n\t (setq haskell-process-type 'cabal-repl))\n\t (setq haskell-notify-p t)\n\t (setq haskell-tags-on-save t)\n\t (setq haskell-stylish-on-save t)\n\t (setq haskell-indentation-mode))\n\n","new_contents":"(require 'use-package)\n\n(use-package ghc\n :config (progn\n\t (add-hook 'haskell-mode-hook 'ghc-init))\n :ensure t)\n\n(use-package haskell-mode\n :ensure t\n :config (progn\n\t (add-hook 'haskell-mode-hook 'interactive-haskell-mode)\n\t (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)\n\t (setq haskell-indentation-show-indentations nil)\n\t (setq haskell-process-type 'cabal-repl))\n\t (setq haskell-notify-p t)\n\t (setq haskell-tags-on-save t)\n\t (setq haskell-stylish-on-save t))\n\n","subject":"Use haskell indentation and don't show them","message":"Use haskell indentation and don't show them\n","lang":"Emacs Lisp","license":"mit","repos":"reuben364\/dotfiles"} {"commit":"7caaeb1c1d38e8076e5d86d66818ab637f3863ba","old_file":"contrib\/osx\/packages.el","new_file":"contrib\/osx\/packages.el","old_contents":"(defvar osx-packages\n '(\n pbcopy\n )\n \"List of all packages to install and\/or initialize. Built-in packages\nwhich require an initialization must be listed explicitly in the list.\")\n\n(defun osx\/init-pbcopy ()\n (use-package pbcopy\n :init\n (unless (display-graphic-p)\n (turn-on-pbcopy))))\n","new_contents":"(defvar osx-packages\n '(\n pbcopy\n )\n \"List of all packages to install and\/or initialize. Built-in packages\nwhich require an initialization must be listed explicitly in the list.\")\n\n(defun osx\/init-pbcopy ()\n (use-package pbcopy\n :if (not (display-graphic-p))\n :init (turn-on-pbcopy)))\n","subject":"Use :if keyword for pbcopy init","message":"Use :if keyword for pbcopy init\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"a29b4fd3ec22a19cac2a76f471099e1e9ca28d65","old_file":"generate.el","new_file":"generate.el","old_contents":";; requires s.el to be available and loaded\n(require 's)\n(require 'cl-lib)\n\n(defun get-string-from-file (filePath)\n (with-temp-buffer\n (insert-file-contents filePath)\n (buffer-string)))\n\n(defun sorted-helm-themes ()\n (cl-sort (mapcar 'symbol-name (helm-themes--candidates)) 'string-lessp :key 'downcase))\n\n(defun generate-theme-files ()\n (mapc\n (lambda (theme)\n (helm-themes--load-theme theme)\n (htmlize-file \".\/sample.exs\" (concat \".\/html\/\" theme \".html\")))\n (sorted-helm-themes)))\n\n(defun generate-index-html (tpl iframes-html)\n (s-format tpl 'elt (list spacemacs-version iframes-html)))\n\n(defun generate-iframes-html (tpl themes)\n (s-join \"\"\n (mapcar\n (lambda (theme)\n (s-format tpl 'elt (list theme)))\n themes)))\n\n(defun generate-site-files ()\n (delete-directory \".\/html\")\n (generate-theme-files)\n (append-to-file\n (generate-index-html (get-string-from-file \".\/templates\/layout.html\")\n (generate-iframes-html(get-string-from-file \".\/templates\/iframe.html\") (sorted-helm-themes)))\n nil \".\/html\/index.html\"))\n\n(generate-site-files)\n","new_contents":";; requires s.el to be available and loaded\n;; Just evaluate the buffer the files will be generated in .\/html\n(require 's)\n(require 'cl-lib)\n\n(defun get-string-from-file (filePath)\n (with-temp-buffer\n (insert-file-contents filePath)\n (buffer-string)))\n\n(defun sorted-helm-themes ()\n (cl-sort (mapcar 'symbol-name (helm-themes--candidates)) 'string-lessp :key 'downcase))\n\n(defun generate-theme-files ()\n (mapc\n (lambda (theme)\n ;; (helm-themes--load-theme theme)\n (htmlize-file \".\/sample.exs\" (concat \".\/html\/\" theme \".html\")))\n (sorted-helm-themes)))\n\n(defun generate-index-html (tpl iframes-html)\n (s-format tpl 'elt (list spacemacs-version iframes-html)))\n\n(defun generate-iframes-html (tpl themes)\n (s-join \"\"\n (mapcar\n (lambda (theme)\n (s-format tpl 'elt (list theme)))\n themes)))\n\n(defun generate-site-files ()\n (if (file-exists-p \".\/html\")\n (delete-directory \".\/html\" t))\n (mkdir \".\/html\")\n (generate-theme-files)\n (append-to-file\n (generate-index-html (get-string-from-file \".\/templates\/layout.html\")\n (generate-iframes-html(get-string-from-file \".\/templates\/iframe.html\") (sorted-helm-themes)))\n nil \".\/html\/index.html\"))\n\n(generate-site-files)\n","subject":"Remove and recreate the html directory on every run","message":"Remove and recreate the html directory on every run\n","lang":"Emacs Lisp","license":"mit","repos":"robmerrell\/spacemacs_theme_gallery,robmerrell\/spacemacs_theme_gallery"} {"commit":"c3db907204d3633793d4243c0066cdb6cb0749dd","old_file":"modules\/tools\/wakatime\/autoload.el","new_file":"modules\/tools\/wakatime\/autoload.el","old_contents":";;; tools\/wakatime\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(add-hook 'doom-after-switch-buffer-hook #'+wakatime-init)\n\n;;;###autoload\n(defun +wakatime-init ()\n \"Initialize wakatime (if `wakatime-api-key' is set, otherwise no-op with a\nwarning).\"\n (if wakatime-api-key\n (global-wakatime-mode +1)\n (message \"No `wakatime-api-key' set! wakaktime-mode will stay disabled.\"))\n (remove-hook 'doom-after-switch-buffer-hook #'+wakatime-init))\n","new_contents":";;; tools\/wakatime\/autoload.el -*- lexical-binding: t; -*-\n\n;;;###autoload\n(add-hook 'doom-after-switch-buffer-hook #'+wakatime-init)\n\n;;;###autoload\n(defvar wakatime-api-key nil)\n\n;;;###autoload\n(defun +wakatime-init ()\n \"Initialize wakatime (if `wakatime-api-key' is set, otherwise no-op with a\nwarning).\"\n (if wakatime-api-key\n (global-wakatime-mode +1)\n (message \"No `wakatime-api-key' set! wakaktime-mode will stay disabled.\"))\n (remove-hook 'doom-after-switch-buffer-hook #'+wakatime-init))\n","subject":"Fix wakatime breaking emacs if no api-key set","message":"Fix wakatime breaking emacs if no api-key set\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom"} {"commit":"e9d9cc5f8dd2abedff6a1b2d8e2adb4702e1da73","old_file":"emacs\/ar\/ar-helm-projectile.el","new_file":"emacs\/ar\/ar-helm-projectile.el","old_contents":";;; ar-helm-projectile.el --- Helm projectile support.\n\n;;; Commentary:\n;; Helm projectile helpers.\n\n;;; Code:\n\n(require 'ar-shell)\n(require 'cl)\n(require 'helm-projectile)\n(require 'esh-mode)\n\n(defun ar\/helm-projectile-shell-cd ()\n \"Change shell current working directory using helm projectile.\"\n (interactive)\n (assert (or (string-equal mode-name \"EShell\")\n (string-equal mode-name \"Shell\")) nil \"Not in (E)Shell mode\")\n (let ((helm-dir-source (copy-tree helm-source-projectile-directories-list)))\n (add-to-list 'helm-dir-source (cons 'action (if (string-equal mode-name \"EShell\")\n (lambda (path)\n (insert (format \"cd %s\" path))\n (eshell-send-input))\n 'ar\/shell-cd)))\n (add-to-list 'helm-dir-source '(keymap . nil))\n (add-to-list 'helm-dir-source '(header-line . \"cd to directory...\"))\n (helm :sources helm-dir-source\n :buffer \"*helm-dirs*\"\n :candidate-number-limit 10000)))\n\n(provide 'ar-helm-projectile)\n\n;;; ar-helm-projectile.el ends here\n","new_contents":";;; ar-helm-projectile.el --- Helm projectile support.\n\n;;; Commentary:\n;; Helm projectile helpers.\n\n;;; Code:\n\n(require 'ar-shell)\n(require 'cl)\n(require 'helm-projectile)\n(require 'esh-mode)\n\n(defun ar\/helm-projectile-shell-cd ()\n \"Change shell current working directory using helm projectile.\"\n (interactive)\n (assert (or (equal major-mode 'eshell-mode)\n (equal major-mode 'shell-mode)) nil \"Not in (E)Shell mode\")\n (let ((helm-dir-source (copy-tree helm-source-projectile-directories-list)))\n (add-to-list 'helm-dir-source (cons 'action (if (string-equal mode-name \"EShell\")\n (lambda (path)\n (insert (format \"cd %s\" path))\n (eshell-send-input))\n 'ar\/shell-cd)))\n (add-to-list 'helm-dir-source '(keymap . nil))\n (add-to-list 'helm-dir-source '(header-line . \"cd to directory...\"))\n (helm :sources helm-dir-source\n :buffer \"*helm-dirs*\"\n :candidate-number-limit 10000)))\n\n(provide 'ar-helm-projectile)\n\n;;; ar-helm-projectile.el ends here\n","subject":"Use major-mode when checking for shell (instead of mode-name)","message":"Use major-mode when checking for shell (instead of mode-name)\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"xenodium\/dotsies,xenodium\/dotsies,xenodium\/dotsies"} {"commit":"e0cc0eba241492570b37106dfa63cd389ee957d9","old_file":"modules\/ui\/minimap\/packages.el","new_file":"modules\/ui\/minimap\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; ui\/minimap\/packages.el\n\n(package! minimap :pin \"5765245dee97a3c8818fd5cd3db1eca7247fcbbc\")\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; ui\/minimap\/packages.el\n\n(package! minimap :pin \"d8850be6fb7b3dbff0cd9b5a04d10a6dcc527326\")\n","subject":"Fix 'bad object 5765245...' error on minimap module","message":"Fix 'bad object 5765245...' error on minimap module\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"aa4f3c036f18e7e2fed2dd16521af8dc4e0cc158","old_file":"contrib\/syl20bnr\/packages.el","new_file":"contrib\/syl20bnr\/packages.el","old_contents":"(defvar syl20bnr-packages\n '(\n rainbow-identifiers\n )\n \"List of all packages to install and\/or initialized. Built-in packages\nwhich require an initialization must be listed explicitly in the list.\")\n\n(defun syl20bnr\/init-rainbow-identifiers ()\n (use-package rainbow-identifiers\n :commands rainbow-identifiers-mode\n :init\n (progn \n (setq rainbow-identifiers-choose-face-function 'rainbow-identifiers-cie-l*a*b*-choose-face\n rainbow-identifiers-cie-l*a*b*-saturation 100\n rainbow-identifiers-cie-l*a*b*-lightness 40\n ;; override theme faces\n rainbow-identifiers-faces-to-override '(highlight-quoted-symbol\n font-lock-variable-name-face))\n (add-to-hooks 'rainbow-identifiers-mode '(prog-mode-hook\n erlang-mode-hook)))\n :config\n (syl20bnr\/tweak-theme-colors '\u001bsolarized\u001b-light)))\n","new_contents":"(defvar syl20bnr-packages\n '(\n rainbow-identifiers\n )\n \"List of all packages to install and\/or initialized. Built-in packages\nwhich require an initialization must be listed explicitly in the list.\")\n\n(defun syl20bnr\/init-rainbow-identifiers ()\n (use-package rainbow-identifiers\n :commands rainbow-identifiers-mode\n :init\n (progn \n (setq rainbow-identifiers-choose-face-function 'rainbow-identifiers-cie-l*a*b*-choose-face\n rainbow-identifiers-cie-l*a*b*-saturation 100\n rainbow-identifiers-cie-l*a*b*-lightness 40\n ;; override theme faces\n rainbow-identifiers-faces-to-override '(highlight-quoted-symbol\n font-lock-variable-name-face))\n (add-to-hooks 'rainbow-identifiers-mode '(prog-mode-hook\n erlang-mode-hook)))\n :config\n (syl20bnr\/tweak-theme-colors 'solarized-light)))\n","subject":"Fix syntax error in syl20bnr configuration layer","message":"Fix syntax error in syl20bnr configuration layer\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"736ec334644d6d746d66652572068bd54ae31185","old_file":"user-lisp\/company-jit.el","new_file":"user-lisp\/company-jit.el","old_contents":"(require 'company)\n(require 'dash)\n\n(defvar company-jit-prefixes\n `(\n (python-mode\n (,(rx symbol-start \"import \") ,(rx symbol-start \"from \"))\n company-anaconda)\n (rust-mode\n (,(rx \"::\") ,(rx \".\"))\n racer-company-complete)\n (css-mode\n (,(rx \": \"))\n company-css))\n \"Prefix strings that trigger company completion.\")\n\n(defun company-jit-match-p (prefix)\n \"Does the text before point match PREFIX?\"\n (looking-back prefix))\n\n(defun company-jit-should-complete-p ()\n \"Return nil if point is in a comment or string.\"\n (-let [(_ _ _ in-string in-comment &rest _) (syntax-ppss)]\n (and (not in-string) (not in-comment))))\n\n(defun company-jit-post-self-insert ()\n \"Open company in situations where the user probably wants completions.\"\n (catch 'break\n (--each company-jit-prefixes\n (-let [(mode prefixes backend) it]\n ;; If we're in the mode listed in `company-jit-prefixes'\n (when (and (eq mode major-mode)\n ;; and we're not in a string or comment\n (company-jit-should-complete-p)\n ;; and we're looking at one of the prefixes mentioned\n (--any-p (company-jit-match-p it) prefixes))\n (company-begin-backend backend)\n (throw 'break nil))))))\n\n(add-hook 'post-self-insert-hook #'company-jit-post-self-insert)\n\n(provide 'company-jit)\n","new_contents":"(require 'company)\n(require 'dash)\n\n(defvar company-jit-prefixes\n `(\n (python-mode\n (,(rx symbol-start \"import \") ,(rx symbol-start \"from \"))\n company-anaconda)\n (rust-mode\n (,(rx \"::\") ,(rx \".\"))\n racer-company-complete)\n (css-mode\n (,(rx \": \"))\n company-css))\n \"Prefix strings that trigger company completion.\")\n\n(defun company-jit-match-p (prefix)\n \"Does the text before point match PREFIX?\"\n (looking-back prefix))\n\n(defun company-jit-post-self-insert ()\n \"Open company in situations where the user probably wants completions.\"\n (catch 'break\n (--each company-jit-prefixes\n (-let [(mode prefixes backend) it]\n ;; If we're in the mode listed in `company-jit-prefixes'\n (when (and (eq mode major-mode)\n ;; and we're in code\n (not (company-in-string-or-comment))\n ;; and we're looking at one of the prefixes mentioned\n (--any-p (company-jit-match-p it) prefixes))\n (company-begin-backend backend)\n (throw 'break nil))))))\n\n(add-hook 'post-self-insert-hook #'company-jit-post-self-insert)\n\n(provide 'company-jit)\n","subject":"Use company functions instead of rolling our own.","message":"Use company functions instead of rolling our own.\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"83be8b19bac106fbae71db258abbbc30f0e993e5","old_file":"setup-files\/setup-sx.el","new_file":"setup-files\/setup-sx.el","old_contents":";; Time-stamp: <2015-01-23 09:43:08 kmodi>\n\n;; StackExchange Mode\n;; http:\/\/www.emacswiki.org\/emacs\/sx.el\n\n(req-package sx)\n\n\n(provide 'setup-sx)\n","new_contents":";; Time-stamp: <2015-01-28 11:30:43 kmodi>\n\n;; StackExchange Mode\n;; https:\/\/github.com\/vermiculus\/sx.el\n\n(req-package sx)\n\n\n(provide 'setup-sx)\n","subject":"Fix the package source hyperlink","message":"Fix the package source hyperlink\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"0191d1bba88c98eb6e4627301e02c3750af2ed42","old_file":"init-extension\/init-evil-plugins.el","new_file":"init-extension\/init-evil-plugins.el","old_contents":"(use-package evil-little-word)\n\n(use-package evil-operator-moccur\n :init\n (global-evil-operator-moccur-mode 1))\n\n(use-package evil-operator-comment\n :init\n (global-evil-operator-comment-mode 1))\n","new_contents":"(use-package evil-little-word)\n\n(use-package evil-operator-comment\n :init\n (global-evil-operator-comment-mode 1))\n","subject":"Remove unused evil plugin for mocur","message":"Remove unused evil plugin for mocur\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"fadf9aaffbcf6f2ebb3f24050cdb0f53100e5f08","old_file":"lisp\/init-local.el","new_file":"lisp\/init-local.el","old_contents":"(provide 'init-local)\n\n;; rails reloaded plugin\n(push \"~\/.emacs.d\/site-lisp\/rails-reloaded\" load-path)\n(require 'rails-autoload)\n","new_contents":";; rails reloaded plugin\n(push \"~\/.emacs.d\/site-lisp\/rails-reloaded\" load-path)\n(require 'rails-autoload)\n\n;; Standard ML https:\/\/class.coursera.org\/proglang-003\/wiki\/view?page=smlEmacsInstall\n(setenv \"PATH\" (concat \"\/home\/david1\/workspace\/sml\/bin:\" (getenv \"PATH\")))\n(setq exec-path (cons \"\/home\/david1\/workspace\/sml\/bin\" exec-path))\n\n(require-package 'sml-mode)\n(require 'sml-mode)\n\n(provide 'init-local)\n","subject":"Add support for Standard ML","message":"Add support for Standard ML\n\nincluding path to a local binary\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"dcorking\/emacs.d"} {"commit":"9c0739723e7f08516049e213a20540b2d20631d9","old_file":"init-local.el","new_file":"init-local.el","old_contents":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; START: Ruby \/ Rails setup\n \n;; Interactively Do Things (highly recommended, but not strictly required)\n \n(ido-mode t)\n \n;; Rinari\n(push \"~\/.emacs.d\/site-lisp\/rinari\" load-path)\n(require 'rinari)\n \n;; rails reloaded plugin\n(push \"~\/.emacs.d\/site-lisp\/rails-reloaded\" load-path)\n(require 'rails-autoload)\n\n;; END: Ruby \/ Rails setup\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n(require 'package)\n(setq package-archives '(\n (\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\")\n (\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\")))\n\n(when (< emacs-major-version 24)\n (add-to-list 'package-archives '(\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\")))\n\n(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(safe-local-variable-values (quote ((eval checkdoc-minor-mode 1))))\n '(version-control t))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(default ((t (:inherit nil :stipple nil :background \"white\" :foreground \"black\" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 100 :width normal :foundry \"unknown\" :family \"DejaVu Sans Mono\")))))\n","new_contents":"(provide 'init-local)\n\n;; rails reloaded plugin\n(push \"~\/.emacs.d\/site-lisp\/rails-reloaded\" load-path)\n(require 'rails-autoload)\n\n(custom-set-variables\n ;; custom-set-variables was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(safe-local-variable-values (quote ((eval checkdoc-minor-mode 1))))\n '(version-control t))\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n '(default ((t (:inherit nil :stipple nil :background \"white\" :foreground \"black\" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 100 :width normal :foundry \"unknown\" :family \"DejaVu Sans Mono\")))))\n","subject":"Fix and remove duplications from local","message":" Fix and remove duplications from local\n\n customizations init-local.el\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"dcorking\/emacs.d"} {"commit":"c8ff1b825cf41a1dc9afe57d2b1ad0a3145d55ff","old_file":"init-osx-keys.el","new_file":"init-osx-keys.el","old_contents":"(when *is-a-mac*\n (setq mac-command-modifier 'meta)\n (setq mac-option-modifier 'none)\n (setq default-input-method \"MacOSX\")\n ;; Make mouse wheel \/ trackpad scrolling less jerky\n (setq mouse-wheel-scroll-amount '(0.001))\n (when *is-cocoa-emacs*\n ;; Woohoo!!\n (global-set-key (kbd \"M-`\") 'ns-next-frame)\n (global-set-key (kbd \"M-h\") 'ns-do-hide-emacs)\n (eval-after-load 'nxml-mode\n '(define-key nxml-mode-map (kbd \"M-h\") nil))\n (global-set-key (kbd \"M-ˍ\") 'ns-do-hide-others) ;; what describe-key reports\n (global-set-key (kbd \"M-c\") 'ns-copy-including-secondary)\n (global-set-key (kbd \"M-v\") 'ns-paste-secondary)))\n\n\n(provide 'init-osx-keys)\n","new_contents":"(when *is-a-mac*\n (setq mac-command-modifier 'meta)\n (setq mac-option-modifier 'none)\n (setq default-input-method \"MacOSX\")\n ;; Make mouse wheel \/ trackpad scrolling less jerky\n (setq mouse-wheel-scroll-amount '(0.001))\n (when *is-cocoa-emacs*\n ;; Woohoo!!\n (global-set-key (kbd \"M-`\") 'ns-next-frame)\n (global-set-key (kbd \"M-h\") 'ns-do-hide-emacs)\n (eval-after-load 'nxml-mode\n '(define-key nxml-mode-map (kbd \"M-h\") nil))\n (global-set-key (kbd \"M-ˍ\") 'ns-do-hide-others) ;; what describe-key reports for cmd-option-h\n (global-set-key (kbd \"M-c\") 'ns-copy-including-secondary)\n (global-set-key (kbd \"M-v\") 'ns-paste-secondary)))\n\n\n(provide 'init-osx-keys)\n","subject":"Clarify meaning of obscure key binding","message":"Clarify meaning of obscure key binding\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"blueseason\/emacs.d"} {"commit":"3dcb984e4ed65cda4041e78da18c7d561a533ac8","old_file":"emacs\/elisp\/im.el","new_file":"emacs\/elisp\/im.el","old_contents":";;; im -- Integration for instant messaging\n;;;\n;;; Commentary:\n;;; Uses jabber mode.\n;;; Customisations:\n;;; - Adapts python-mode to work with differnet project styles,\n;;; notably the Pylons project.\n;;\n;;; Code:\n\n(require 'jabber)\n\n(defun notify-jabber-notify (from buf text proposed-alert)\n \"Notify via notify.el about new messages using FROM BUF TEXT PROPOSED-ALERT.\"\n (when (or jabber-message-alert-same-buffer\n\t (not (memq (selected-window) (get-buffer-window-list buf))))\n (if (jabber-muc-sender-p from)\n\t(notify (format \"(PM) %s\"\n\t\t\t(jabber-jid-displayname (jabber-jid-user from)))\n\t\t(format \"%s: %s\" (jabber-jid-resource from) text)))\n (notify (format \"%s\" (jabber-jid-displayname from))\n\t text)))\n\n(add-hook #'jabber-alert-message-hooks #'notify-jabber-notify)\n\n(provide 'im)\n;;; im.el ends here\n","new_contents":";;; im -- Integration for instant messaging\n;;;\n;;; Commentary:\n;;; Uses jabber mode.\n;;; Customisations:\n;;; - Adapts python-mode to work with differnet project styles,\n;;; notably the Pylons project.\n;;\n;;; Code:\n\n(require 'jabber)\n(require 'notify)\n\n(defun notify-jabber-notify (from buf text proposed-alert)\n \"Notify via notify.el about new messages using FROM BUF TEXT PROPOSED-ALERT.\"\n (when (or jabber-message-alert-same-buffer\n\t (not (memq (selected-window) (get-buffer-window-list buf))))\n (if (jabber-muc-sender-p from)\n\t(notify (format \"(PM) %s\"\n\t\t\t(jabber-jid-displayname (jabber-jid-user from)))\n\t\t(format \"%s: %s\" (jabber-jid-resource from) text)))\n (notify (format \"%s\" (jabber-jid-displayname from))\n\t text)))\n\n(add-hook 'jabber-alert-message-hooks #'notify-jabber-notify)\n\n(provide 'im)\n;;; im.el ends here\n","subject":"Clean up lisp syntax errors.","message":"Clean up lisp syntax errors.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"mgrbyte\/dot-files,mgrbyte\/dot-files,mgrbyte\/dot-files"} {"commit":"b6bea69b692c9ebaf7cc3af3779bf9e9dc97a453","old_file":".emacs.d\/lisp\/packages\/winner-use.el","new_file":".emacs.d\/lisp\/packages\/winner-use.el","old_contents":";;; winner-use.el --- Revert to previous window states (bundled with Emacs)\n\n(use-package winner\n :config\n (winner-mode 1))\n\n(provide 'winner-use)\n\n;;; winner-use.el ends here\n","new_contents":";;; winner-use.el --- Revert to previous window states (bundled with Emacs)\n\n(use-package winner\n :bind\n (:map winner-mode-map\n (\"C-w C-h\" . winner-undo)\n (\"C-w C-l\" . winner-redo))\n\n :config\n (winner-mode 1)\n\n :demand)\n\n(provide 'winner-use)\n\n;;; winner-use.el ends here\n","subject":"Add some keybindings for winner-mode","message":"Add some keybindings for winner-mode\n","lang":"Emacs Lisp","license":"mit","repos":"strburst\/dotfiles"} {"commit":"342baea11838ba7f22ccee43e8b267048b8e6962","old_file":"lisp\/init-html.el","new_file":"lisp\/init-html.el","old_contents":"(require-package 'tidy)\n(add-hook 'html-mode-hook (lambda () (tidy-build-menu html-mode-map)))\n\n(require-package 'tagedit)\n(after-load 'sgml-mode\n (tagedit-add-paredit-like-keybindings)\n (add-hook 'sgml-mode-hook (lambda () (tagedit-mode 1))))\n\n(add-auto-mode 'html-mode \"\\\\.\\\\(jsp\\\\|tmpl\\\\)\\\\'\")\n\n;; Note: ERB is configured in init-ruby\n\n(provide 'init-html)\n","new_contents":"(require-package 'tagedit)\n(after-load 'sgml-mode\n (tagedit-add-paredit-like-keybindings)\n (add-hook 'sgml-mode-hook (lambda () (tagedit-mode 1))))\n\n(add-auto-mode 'html-mode \"\\\\.\\\\(jsp\\\\|tmpl\\\\)\\\\'\")\n\n;; Note: ERB is configured in init-ruby\n\n(provide 'init-html)\n","subject":"Remove another use of the tidy package","message":"Remove another use of the tidy package\n\nSee #540\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"svenyurgensson\/emacs.d,krzysz00\/emacs.d,blueseason\/emacs.d,emuio\/emacs.d,me020523\/emacs.d,baohaojun\/emacs.d,lust4life\/emacs.d,cjqw\/emacs.d,arthurl\/emacs.d,kindoblue\/emacs.d,benkha\/emacs.d,braveoyster\/emacs.d,roxolan\/emacs.d,wegatron\/emacs.d,kongfy\/emacs.d,mmqmzk\/emacs.d,sgarciac\/emacs.d,qianwan\/emacs.d,purcell\/emacs.d,gsmlg\/emacs.d,dcorking\/emacs.d,blueabysm\/emacs.d"} {"commit":"1757c2ce2549955c69018e4eb053bed3ef31b39d","old_file":".emacs.d\/lisp\/code\/languages\/ruby.el","new_file":".emacs.d\/lisp\/code\/languages\/ruby.el","old_contents":"(setq-default ruby-indent-line global-tab-width)\n\n(smart-tabs-advice ruby-indent-line ruby-indent-level)\n(smart-tabs-insinuate 'ruby)\n\n(setf ruby-indent-tabs-mode t)\n(setf ruby-use-smie nil)\n\n(add-to-list 'auto-mode-alist '(\"\\\\.god\\\\'\" . ruby-mode))\n\n(provide 'ruby)\n","new_contents":";; Set ruby-indent-line to global-tab-width\n(setq-default ruby-indent-line global-tab-width)\n\n;; Provide advice to Smart Tabs about how to handle Ruby's special\n;; indentation variables.\n(smart-tabs-advice ruby-indent-line ruby-indent-level)\n\n;; Apply Ruby language support to Smart Tabs.\n(smart-tabs-insinuate 'ruby)\n\n;; Use tabs mode in Ruby by default.\n(setf ruby-indent-tabs-mode t)\n\n;; Don't use SMIE because SMIE sucks.\n(setf ruby-use-smie nil)\n\n;; God configurations are in Ruby.\n;; TODO Add more Ruby-esque extensions.\n(add-to-list 'auto-mode-alist '(\"\\\\.god\\\\'\" . ruby-mode))\n\n(provide 'ruby)\n","subject":"Add documentation to Ruby support","message":"Add documentation to Ruby support\n","lang":"Emacs Lisp","license":"mit","repos":"kotct\/dot,kotct\/dot"} {"commit":"9dfdfffc5dcf96b2148b5bdaef19231920e31d20","old_file":"setup-package.el","new_file":"setup-package.el","old_contents":"(require 'package)\n\n(defvar marmalade '(\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\"))\n(defvar gnu '(\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\"))\n(defvar melpa '(\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n\n;; Add marmalade to package repos\n(add-to-list 'package-archives marmalade)\n(add-to-list 'package-archives melpa t)\n\n(package-initialize)\n\n(unless (file-exists-p \"~\/.emacs.d\/elpa\/archives\")\n (package-refresh-contents))\n\n(defun packages-install (&rest packages)\n (mapc (lambda (package)\n (let ((name (car package))\n (repo (cdr package)))\n (when (not (package-installed-p name))\n (let ((package-archives (list repo)))\n (package-initialize)\n (package-install name)))))\n packages)\n (package-initialize)\n (delete-other-windows))\n\n(provide 'setup-package)\n","new_contents":"(require 'package)\n\n(defvar marmalade '(\"marmalade\" . \"http:\/\/marmalade-repo.org\/packages\/\"))\n(defvar gnu '(\"gnu\" . \"http:\/\/elpa.gnu.org\/packages\/\"))\n(defvar melpa '(\"melpa\" . \"http:\/\/melpa.milkbox.net\/packages\/\"))\n\n;; Add marmalade to package repos\n(add-to-list 'package-archives marmalade)\n(add-to-list 'package-archives melpa t)\n\n(package-initialize)\n\n(unless (and (file-exists-p \"~\/.emacs.d\/elpa\/archives\/marmalade\")\n (file-exists-p \"~\/.emacs.d\/elpa\/archives\/gnu\")\n (file-exists-p \"~\/.emacs.d\/elpa\/archives\/melpa\"))\n (package-refresh-contents))\n\n(defun packages-install (&rest packages)\n (mapc (lambda (package)\n (let ((name (car package))\n (repo (cdr package)))\n (when (not (package-installed-p name))\n (let ((package-archives (list repo)))\n (package-initialize)\n (package-install name)))))\n packages)\n (package-initialize)\n (delete-other-windows))\n\n(provide 'setup-package)\n","subject":"Make sure melpa, marmalade and gnu is all present in archives.","message":"Make sure melpa, marmalade and gnu is all present in archives.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"fb584118b63fd8ab769c7594ce2f0848f0a7bbb2","old_file":"lisp\/init-darcs.el","new_file":"lisp\/init-darcs.el","old_contents":"(require-package 'darcsum)\n(require-package 'vc-darcs)\n\n\n;; TODO: include this in the vc-darcs ELPA package\n(add-to-list 'vc-handled-backends 'DARCS)\n(autoload 'vc-darcs-find-file-hook \"vc-darcs\")\n(add-hook 'find-file-hooks 'vc-darcs-find-file-hook)\n\n(after-load 'vc-darcs\n ;; This variable was removed in an Emacs 25.x snapshot, but vc-darcs\n ;; hasn't been fixed accordingly\n (unless (boundp 'vc-disable-async-diff)\n (setq vc-disable-async-diff nil)))\n\n(setq darcsum-whatsnew-switches \"-l\")\n\n(provide 'init-darcs)\n","new_contents":"(require-package 'darcsum)\n(require-package 'vc-darcs)\n\n\n;; TODO: include this in the vc-darcs ELPA package\n(add-to-list 'vc-handled-backends 'DARCS)\n(autoload 'vc-darcs-find-file-hook \"vc-darcs\")\n(add-hook 'find-file-hooks 'vc-darcs-find-file-hook)\n\n(setq darcsum-whatsnew-switches \"-l\")\n\n(provide 'init-darcs)\n","subject":"Remove defunct config for vc-darcs","message":"Remove defunct config for vc-darcs\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"kindoblue\/emacs.d,wegatron\/emacs.d,krzysz00\/emacs.d,me020523\/emacs.d,braveoyster\/emacs.d,gsmlg\/emacs.d,purcell\/emacs.d,cjqw\/emacs.d,dcorking\/emacs.d,roxolan\/emacs.d,arthurl\/emacs.d,sgarciac\/emacs.d,blueabysm\/emacs.d,blueseason\/emacs.d,mmqmzk\/emacs.d,kongfy\/emacs.d,svenyurgensson\/emacs.d,emuio\/emacs.d,qianwan\/emacs.d,baohaojun\/emacs.d,lust4life\/emacs.d,benkha\/emacs.d"} {"commit":"530b4328dfa8ddfa3c0bb06bf912bdd903fa4de7","old_file":"lisp\/init-local.el","new_file":"lisp\/init-local.el","old_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n(add-to-list 'load-path (expand-file-name \"site-lisp\" user-emacs-directory))\n\n(require-package 'slime)\n(setq slime-lisp-implementations\n '((ccl (\"\/usr\/local\/bin\/ccl64\"))\n (cmucl (\"\/usr\/local\/Cellar\/cmucl\/20e\/bin\/lisp\"))))\n(after-load 'slime\n (slime-setup '(slime-repl slime-fancy)))\n\n(require-package 'exec-path-from-shell)\n(after-load 'exec-path-from-shell\n (dolist (var '(\"JAVA_HOME\"))\n (add-to-list 'exec-path-from-shell-variables var)))\n\n(require-package 'pretty-lambdada)\n(pretty-lambda-for-modes)\n\n(require 'cltl2)\n\n(provide 'init-local)\n;;; init-local.el ends here\n","new_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n(add-to-list 'load-path (expand-file-name \"site-lisp\" user-emacs-directory))\n\n(require-package 'slime)\n(setq slime-lisp-implementations\n '((ccl (\"\/usr\/local\/bin\/ccl64\"))\n (cmucl (\"\/usr\/local\/Cellar\/cmucl\/20e\/bin\/lisp\"))))\n(after-load 'slime\n (slime-setup '(slime-repl slime-fancy)))\n\n(require-package 'exec-path-from-shell)\n(after-load 'exec-path-from-shell\n (dolist (var '(\"JAVA_HOME\"))\n (add-to-list 'exec-path-from-shell-variables var)))\n\n(require-package 'pretty-lambdada)\n(pretty-lambda-for-modes)\n\n(require 'cltl2)\n\n;;; maxima\n(add-to-list 'load-path \"\/usr\/local\/Cellar\/maxima\/5.33.0\/share\/maxima\/5.33.0\/emacs\/\")\n(autoload 'maxima-mode \"maxima\" \"Maxima mode\" t)\n(autoload 'imaxima \"imaxima\" \"Frontend for maxima with Image support\" t)\n(autoload 'maxima \"maxima\" \"Maxima interaction\" t)\n(autoload 'imath-mode \"imath\" \"Imath mode for math formula input\" t)\n(setq imaxima-use-maxima-mode-flag t)\n(add-to-list 'auto-mode-alist '(\"\\\\.ma[cx]\" . maxima-mode))\n\n;;; shortcut\n(global-set-key (kbd \"\") 'ibuffer)\n\n(provide 'init-local)\n;;; init-local.el ends here\n","subject":"Add maxima mode and ibuffer shortcut","message":"Add maxima mode and ibuffer shortcut\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"qianwan\/emacs.d"} {"commit":"b185b9685f49e65b06cbee12e3fc078e34477359","old_file":"lisp\/init-themes.el","new_file":"lisp\/init-themes.el","old_contents":"(require-package 'color-theme-sanityinc-solarized)\n(require-package 'color-theme-sanityinc-tomorrow)\n\n;; If you don't customize it, this is the theme you get.\n(setq-default custom-enabled-themes '(sanityinc-tomorrow-bright))\n\n;; Ensure that themes will be applied even if they have not been customized\n(defun reapply-themes ()\n \"Forcibly load the themes listed in `custom-enabled-themes'.\"\n (dolist (theme custom-enabled-themes)\n (unless (custom-theme-p theme)\n (load-theme theme)))\n (custom-set-variables `(custom-enabled-themes (quote ,custom-enabled-themes))))\n\n(add-hook 'after-init-hook 'reapply-themes)\n\n\n;;------------------------------------------------------------------------------\n;; Toggle between light and dark\n;;------------------------------------------------------------------------------\n(defun light ()\n \"Activate a light color theme.\"\n (interactive)\n (setq custom-enabled-themes '(sanityinc-tomorrow-day))\n (reapply-themes))\n\n(defun dark ()\n \"Activate a dark color theme.\"\n (interactive)\n (setq custom-enabled-themes '(sanityinc-tomorrow-bright))\n (reapply-themes))\n\n\n(provide 'init-themes)\n","new_contents":"(require-package 'color-theme-sanityinc-solarized)\n(require-package 'color-theme-sanityinc-tomorrow)\n\n;; If you don't customize it, this is the theme you get.\n(setq-default custom-enabled-themes '(sanityinc-solarized-light))\n\n;; Ensure that themes will be applied even if they have not been customized\n(defun reapply-themes ()\n \"Forcibly load the themes listed in `custom-enabled-themes'.\"\n (dolist (theme custom-enabled-themes)\n (unless (custom-theme-p theme)\n (load-theme theme)))\n (custom-set-variables `(custom-enabled-themes (quote ,custom-enabled-themes))))\n\n(add-hook 'after-init-hook 'reapply-themes)\n\n\n;;------------------------------------------------------------------------------\n;; Toggle between light and dark\n;;------------------------------------------------------------------------------\n(defun light ()\n \"Activate a light color theme.\"\n (interactive)\n (color-theme-sanityinc-solarized-light))\n\n(defun dark ()\n \"Activate a dark color theme.\"\n (interactive)\n (color-theme-sanityinc-solarized-dark))\n\n\n(provide 'init-themes)\n","subject":"Revert \"Change default theme to my preferred dark theme\"","message":"Revert \"Change default theme to my preferred dark theme\"\n\nThis reverts commit 7940db01b08862b34888ebe05aabedfac21784d9.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"emuio\/emacs.d"} {"commit":"8142f9ca364f1d65a084ad10f802222947c0f816","old_file":"emacs.d\/personal\/init\/packages.el","new_file":"emacs.d\/personal\/init\/packages.el","old_contents":"(prelude-require-packages '(\n ag\n aggressive-indent\n bats-mode\n chruby\n color-theme-sanityinc-tomorrow\n evil-args\n evil-jumper\n evil-matchit\n evil-nerd-commenter\n fill-column-indicator\n flycheck-rust\n frame-cmds\n gruvbox-theme\n helm-ag\n js2-refactor\n monokai-theme\n multiple-cursors\n nginx-mode\n nlinum\n nyan-mode\n paredit\n php-mode\n projectile-rails\n rhtml-mode\n ruby-compilation\n rust-mode\n smartrep\n solarized-theme\n toggle-quotes\n window-jump\n window-number\n yagist\n yasnippet\n ))\n\n;; vendored packages\n(personal\/load-init-file \"personal\/vendor\/rcodetools\")\n(personal\/load-init-file \"personal\/vendor\/scad-mode\")\n","new_contents":"(prelude-require-packages '(\n ag\n aggressive-indent\n bats-mode\n chruby\n color-theme-sanityinc-tomorrow\n evil-args\n evil-jumper\n evil-matchit\n evil-nerd-commenter\n evil-surround\n fill-column-indicator\n flycheck-rust\n frame-cmds\n gruvbox-theme\n helm-ag\n js2-refactor\n monokai-theme\n multiple-cursors\n nginx-mode\n nlinum\n nyan-mode\n paredit\n php-mode\n projectile-rails\n rhtml-mode\n ruby-compilation\n rust-mode\n solarized-theme\n toggle-quotes\n window-jump\n window-number\n yagist\n yasnippet\n ))\n\n;; vendored packages\n(personal\/load-init-file \"personal\/vendor\/rcodetools\")\n(personal\/load-init-file \"personal\/vendor\/scad-mode\")\n","subject":"Remove smartrep from our own package list add evil-surround","message":"Remove smartrep from our own package list add evil-surround\n","lang":"Emacs Lisp","license":"mit","repos":"caleb\/dotfiles,caleb\/dotfiles,caleb\/dotfiles"} {"commit":"d3d3b2387888b993dbe072075b8746c1c17c3295","old_file":"init-package\/init-git-gutter-fringe.el","new_file":"init-package\/init-git-gutter-fringe.el","old_contents":"(require 'git-gutter-fringe)\n\n(global-git-gutter-mode t)\n(setq git-gutter:hide-gutter t)\n\n;; Don't need log\/message.\n(setq git-gutter:verbosity 0)\n\n(setq git-gutter-fr:side 'right-fringe)\n(setq git-gutter:update-hooks '(after-save-hook after-revert-hook))\n\n;; custom graphics that works nice with half-width fringes\n(fringe-helper-define 'git-gutter-fr:added nil\n \"..X....\"\n \"..X....\"\n \"XXXXX..\"\n \"..X....\"\n \"..X....\"\n)\n(fringe-helper-define 'git-gutter-fr:deleted nil\n \".......\"\n \".......\"\n \"XXXXX..\"\n \".......\"\n \".......\"\n)\n(fringe-helper-define 'git-gutter-fr:modified nil\n \"..X....\"\n \".XXX...\"\n \"XXXXX..\"\n \".XXX...\"\n \"..X....\"\n)\n","new_contents":"(require 'git-gutter-fringe)\n\n(global-git-gutter-mode t)\n(setq git-gutter:hide-gutter t)\n\n;; Don't need log\/message.\n(setq git-gutter:verbosity 0)\n\n(setq git-gutter-fr:side 'right-fringe)\n;; (setq git-gutter:update-hooks '(after-save-hook after-revert-hook))\n\n;; custom graphics that works nice with half-width fringes\n(fringe-helper-define 'git-gutter-fr:added nil\n \"..X....\"\n \"..X....\"\n \"XXXXX..\"\n \"..X....\"\n \"..X....\"\n)\n(fringe-helper-define 'git-gutter-fr:deleted nil\n \".......\"\n \".......\"\n \"XXXXX..\"\n \".......\"\n \".......\"\n)\n(fringe-helper-define 'git-gutter-fr:modified nil\n \"..X....\"\n \".XXX...\"\n \"XXXXX..\"\n \".XXX...\"\n \"..X....\"\n)\n","subject":"Remove explicit hooks from git-gutter-fringe configuration.","message":"Remove explicit hooks from git-gutter-fringe configuration.\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"e066f3d0fdcd3e44a6fabc97749d8b4c1e10aae3","old_file":"layers\/my-atomic-chrome\/packages.el","new_file":"layers\/my-atomic-chrome\/packages.el","old_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-atomic-chrome-packages '(atomic-chrome))\n\n(defun my-atomic-chrome\/init-atomic-chrome ()\n (use-package atomic-chrome\n :defer t\n :init\n (when (and (daemonp) (display-assume-graphic-p))\n (add-hook 'spacemacs-post-user-config-hook #'atomic-chrome-start-server))\n :config\n (progn\n (setq atomic-chrome-buffer-open-style 'frame\n atomic-chrome-extension-type-list '(atomic-chrome))\n\n (when (configuration-layer\/package-used-p 'markdown-mode)\n (add-to-list 'atomic-chrome-url-major-mode-alist '(\"github\" . gfm-mode)))\n\n (when (configuration-layer\/package-used-p 'dokuwiki-mode)\n (add-to-list 'atomic-chrome-url-major-mode-alist '(\"wiki\" . dokuwiki-mode))))))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defconst my-atomic-chrome-packages '(atomic-chrome))\n\n(defun my-atomic-chrome\/init-atomic-chrome ()\n (use-package atomic-chrome\n :defer t\n :init\n (when (and (daemonp) (display-assume-graphic-p))\n (add-hook 'spacemacs-post-user-config-hook #'atomic-chrome-start-server))\n :config\n (progn\n (setq atomic-chrome-buffer-open-style 'frame)\n\n (when (configuration-layer\/package-used-p 'markdown-mode)\n (add-to-list 'atomic-chrome-url-major-mode-alist '(\"github\" . gfm-mode)))\n\n (when (configuration-layer\/package-used-p 'dokuwiki-mode)\n (add-to-list 'atomic-chrome-url-major-mode-alist '(\"wiki\" . dokuwiki-mode))))))\n","subject":"Enable support for GhostText extension, to support Firefox as well","message":"Enable support for GhostText extension, to support Firefox as well\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"4fa12ba0e08aad72bf52dcbe31181c7a8283a536","old_file":"features\/support\/hooks.el","new_file":"features\/support\/hooks.el","old_contents":"(require 'ecukes)\n\n(defun kill-js-buffers ()\n (mapc (lambda (buffer)\n (when (string-match \"\\.js\" (buffer-name buffer))\n (kill-buffer (buffer-name buffer))))\n (buffer-list))) \n\n(After ;; Kill all test buffers\n (when (get-buffer \"*mocha tests*\")\n (kill-buffer \"*mocha tests*\"))\n (kill-js-buffers))\n","new_contents":"(require 'ecukes)\n(require 'f)\n\n(defun kill-js-buffers ()\n (mapc (lambda (buffer)\n (when (f-ext? (or (buffer-file-name buffer) \"\") \"js\")\n (kill-buffer (buffer-name buffer))))\n (buffer-list))) \n\n(After ;; Kill all test buffers\n (when (get-buffer \"*mocha tests*\")\n (kill-buffer \"*mocha tests*\"))\n (kill-js-buffers))\n","subject":"Use `f-ext?` to detect file extensions.","message":"Use `f-ext?` to detect file extensions.\n","lang":"Emacs Lisp","license":"mit","repos":"scottaj\/mocha.el"} {"commit":"69361f26cba274f76a80b4a8a238d9e2cb39a617","old_file":"setup-files\/setup-yafolding.el","new_file":"setup-files\/setup-yafolding.el","old_contents":";; Time-stamp: <2014-07-03 11:46:12 kmodi>\n\n;; Yet Another Folding, Folding code blocks based on indentation.\n;; Source: https:\/\/github.com\/zenozeng\/yafolding.el\n\n(require 'yafolding)\n\n(add-hook 'prog-mode-hook\n (lambda () (yafolding-mode)))\n\n(setq yafolding-ellipsis-content \">>>>>\")\n\n\n(setq setup-yafolding-loaded t)\n(provide 'setup-yafolding)\n\n;; C-Enter <- Fold the current block; cursor has to be on the top-most line of the block\n;; C-S-Enter <- Toggle folding all blocks\n","new_contents":";; Time-stamp: <2014-07-24 22:04:27 kmodi>\n\n;; Yet Another Folding, Folding code blocks based on indentation.\n;; Source: https:\/\/github.com\/zenozeng\/yafolding.el\n\n(require 'yafolding)\n\n(add-hook 'prog-mode-hook\n (lambda () (yafolding-mode)))\n\n(setq yafolding-ellipsis-content \">>>folded\")\n\n\n(setq setup-yafolding-loaded t)\n(provide 'setup-yafolding)\n\n;; C-Enter <- Fold the current block; cursor has to be on the top-most line of the block\n;; C-S-Enter <- Toggle folding all blocks\n","subject":"Change string to indicate code folding has happened","message":"Change string to indicate code folding has happened\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"00eb8541a38496d8eaed3aaeac202a4d5fac2bce","old_file":"lisp\/init-rust.el","new_file":"lisp\/init-rust.el","old_contents":"(when (maybe-require-package 'rust-mode)\n (when (maybe-require-package 'racer)\n (add-hook 'rust-mode-hook #'racer-mode)\n (add-hook 'racer-mode-hook #'eldoc-mode)))\n\n(when (maybe-require-package 'flycheck-rust)\n (add-hook 'flycheck-mode-hook #'flycheck-rust-setup))\n\n(provide 'init-rust)\n","new_contents":"(when (maybe-require-package 'rust-mode)\n (when (maybe-require-package 'racer)\n (add-hook 'rust-mode-hook #'racer-mode)\n (add-hook 'racer-mode-hook #'eldoc-mode))\n (when (maybe-require-package 'company)\n (add-hook 'racer-mode-hook #'company-mode)))\n\n(when (maybe-require-package 'flycheck-rust)\n (add-hook 'flycheck-mode-hook #'flycheck-rust-setup))\n\n(provide 'init-rust)\n","subject":"Add rust racer autocompletion with company","message":"Add rust racer autocompletion with company\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"dcorking\/emacs.d"} {"commit":"a1d1cce6fb1112ed5784a38e6bde6bd1ab090be7","old_file":"lisp\/init-haskell.el","new_file":"lisp\/init-haskell.el","old_contents":"(require-package 'haskell-mode)\n\n\f\n;; Use intero for completion and flycheck\n\n(when (maybe-require-package 'intero)\n (after-load 'haskell-mode\n (intero-global-mode)\n (add-hook 'haskell-mode-hook 'eldoc-mode))\n (after-load 'intero\n ;; Don't clobber sanityinc\/counsel-search-project binding\n (define-key intero-mode-map (kbd \"M-?\") nil)\n (after-load 'flycheck\n (flycheck-add-next-checker 'intero\n '(warning . haskell-hlint)))))\n\n\n(add-auto-mode 'haskell-mode \"\\\\.ghci\\\\'\")\n\n\f\n;; Indentation\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)\n\n\n\f\n;; Source code helpers\n\n(add-hook 'haskell-mode-hook 'haskell-auto-insert-module-template)\n\n(when (maybe-require-package 'hindent)\n (add-hook 'haskell-mode-hook 'hindent-mode))\n\n(after-load 'haskell-mode\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (define-key haskell-mode-map (kbd \"C-o\") 'open-line))\n\n\n(after-load 'page-break-lines\n (push 'haskell-mode page-break-lines-modes))\n\n\n\n(provide 'init-haskell)\n","new_contents":"(require-package 'haskell-mode)\n\n\f\n;; Use intero for completion and flycheck\n\n(when (maybe-require-package 'intero)\n (after-load 'haskell-mode\n (intero-global-mode)\n (add-hook 'haskell-mode-hook 'eldoc-mode))\n (after-load 'haskell-cabal\n (define-key haskell-cabal-mode-map (kbd \"C-c C-l\") 'intero-restart))\n (after-load 'intero\n ;; Don't clobber sanityinc\/counsel-search-project binding\n (define-key intero-mode-map (kbd \"M-?\") nil)\n (after-load 'flycheck\n (flycheck-add-next-checker 'intero\n '(warning . haskell-hlint)))))\n\n\n(add-auto-mode 'haskell-mode \"\\\\.ghci\\\\'\")\n\n\f\n;; Indentation\n(add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)\n\n\n\f\n;; Source code helpers\n\n(add-hook 'haskell-mode-hook 'haskell-auto-insert-module-template)\n\n(when (maybe-require-package 'hindent)\n (add-hook 'haskell-mode-hook 'hindent-mode))\n\n(after-load 'haskell-mode\n (define-key haskell-mode-map (kbd \"C-c h\") 'hoogle)\n (define-key haskell-mode-map (kbd \"C-o\") 'open-line))\n\n\n(after-load 'page-break-lines\n (push 'haskell-mode page-break-lines-modes))\n\n\n\n(provide 'init-haskell)\n","subject":"Add a binding for `intero-restart' in cabal mode","message":"Add a binding for `intero-restart' in cabal mode\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"wegatron\/emacs.d,dcorking\/emacs.d,kongfy\/emacs.d,roxolan\/emacs.d,benkha\/emacs.d,qianwan\/emacs.d,arthurl\/emacs.d,blueseason\/emacs.d,lust4life\/emacs.d,svenyurgensson\/emacs.d,emuio\/emacs.d,krzysz00\/emacs.d,gsmlg\/emacs.d,braveoyster\/emacs.d,baohaojun\/emacs.d,me020523\/emacs.d,mmqmzk\/emacs.d,kindoblue\/emacs.d,cjqw\/emacs.d,purcell\/emacs.d,sgarciac\/emacs.d,blueabysm\/emacs.d"} {"commit":"f8c6eff8a5d9866d0a2bc7421df05e0a2332da02","old_file":"modules\/my-python.el","new_file":"modules\/my-python.el","old_contents":";;; my-python.el --- Python settings & customisations -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(defun my-python-mode-hook ()\n (add-to-list 'company-backends 'company-jedi))\n\n(use-package company-jedi\n :defer t\n :init\n (eval-after-load \"company\"\n '(add-hook 'python-mode-hook 'my-python-mode-hook)))\n\n(use-package anaconda-mode\n :defer t\n :config\n (add-hook 'python-mode-hook 'anaconda-mode)\n (add-hook 'python-mode-hook 'anaconda-eldoc-mode))\n\n(use-package company-anaconda\n :defer t\n :config\n (eval-after-load \"company\"\n '(add-to-list 'company-backends 'company-anaconda)))\n\n(use-package pyvenv)\n\n(provide 'my-python)\n\n;;; my-python.el ends here\n\n","new_contents":";;; my-python.el --- Python settings & customisations -*- lexical-binding: t -*-\n\n;; Copyright (C) 2016 Sergey Timanin\n\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n\n;; http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;;; Code:\n\n(use-package anaconda-mode\n :defer t\n :config\n (add-hook 'python-mode-hook 'anaconda-mode)\n (add-hook 'python-mode-hook 'anaconda-eldoc-mode))\n\n(use-package company-anaconda\n :defer t\n :after company\n :config\n (push 'company-anaconda company-backends))\n\n(use-package pyvenv\n :defer t)\n\n(provide 'my-python)\n\n;;; my-python.el ends here\n\n","subject":"Make anaconda-mode enable automatically, fix autocomplete","message":"Make anaconda-mode enable automatically, fix autocomplete\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"timanin\/emacs.d"} {"commit":"15df04bd91a7dfc5137036536983a6dba99559c9","old_file":"emacs\/ar\/ar-helm-projectile.el","new_file":"emacs\/ar\/ar-helm-projectile.el","old_contents":";;; ar-helm-projectile.el --- Helm projectile support.\n\n;;; Commentary:\n;; Helm projectile helpers.\n\n;;; Code:\n\n(require 'ar-shell)\n(require 'helm-projectile)\n\n(defun ar\/helm-projectile-shell-cd ()\n \"Change shell current working directory using helm projectile.\"\n (interactive)\n (unless (string-equal mode-name \"Shell\")\n (error \"Not in Shell mode\"))\n (let ((helm-dir-source (copy-tree helm-source-projectile-directories-list)))\n (add-to-list 'helm-dir-source '(action . ar\/shell-cd))\n (add-to-list 'helm-dir-source '(keymap . nil))\n (add-to-list 'helm-dir-source '(header-line . \"cd to directory...\"))\n (helm :sources helm-dir-source\n :buffer \"*helm-dirs*\"\n :candidate-number-limit 10000)))\n\n(provide 'ar-helm-projectile)\n\n;;; ar-helm-projectile.el ends here\n","new_contents":";;; ar-helm-projectile.el --- Helm projectile support.\n\n;;; Commentary:\n;; Helm projectile helpers.\n\n;;; Code:\n\n(require 'ar-shell)\n(require 'cl)\n(require 'helm-projectile)\n\n(defun ar\/helm-projectile-shell-cd ()\n \"Change shell current working directory using helm projectile.\"\n (interactive)\n (assert (string-equal mode-name \"Shell\") nil \"Not in Shell mode\")\n (let ((helm-dir-source (copy-tree helm-source-projectile-directories-list)))\n (add-to-list 'helm-dir-source '(action . ar\/shell-cd))\n (add-to-list 'helm-dir-source '(keymap . nil))\n (add-to-list 'helm-dir-source '(header-line . \"cd to directory...\"))\n (helm :sources helm-dir-source\n :buffer \"*helm-dirs*\"\n :candidate-number-limit 10000)))\n\n(provide 'ar-helm-projectile)\n\n;;; ar-helm-projectile.el ends here\n","subject":"Use assert instead of unless and error.","message":"Use assert instead of unless and error.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"xenodium\/dotfiles,xenodium\/dotfiles"} {"commit":"801aed5cb1bdd1ddcf87ba8368cff364520b871a","old_file":"snails-backend-rg.el","new_file":"snails-backend-rg.el","old_contents":"(require 'snails-core)\n(require 'exec-path-from-shell)\n\n(exec-path-from-shell-initialize)\n\n(snails-create-async-backend\n :name\n \"RG\"\n\n :build-command\n (lambda (input)\n (when (and (executable-find \"rg\")\n (> (length input) 5))\n (let ((project (project-current)))\n (when project\n (list \"rg\" \"--no-heading\" \"--column\" \"--color\" \"never\" input (expand-file-name (cdr project)))\n ))))\n\n :candidate-filter\n (lambda (candidate-list)\n (let (candidates)\n (dolist (candidate candidate-list)\n (let ((file-info (split-string candidate \":\"))\n (project-dir (expand-file-name (cdr (project-current)))))\n (add-to-list 'candidates\n (list\n (snails-wrap-file-icon-with-candidate\n (nth 0 file-info)\n (format \"PDIR\/%s\" (nth 1 (split-string candidate project-dir))))\n candidate)\n t)))\n candidates))\n\n :candiate-do\n (lambda (candidate)\n (let ((file-info (split-string candidate \":\")))\n (when (> (length file-info) 3)\n (find-file (nth 0 file-info))\n (goto-line (string-to-number (nth 1 file-info)))\n (goto-column (max (- (string-to-number (nth 2 file-info)) 1) 0))\n ))))\n\n(provide 'snails-backend-rg)\n","new_contents":"(require 'snails-core)\n(require 'exec-path-from-shell)\n\n(exec-path-from-shell-initialize)\n\n(snails-create-async-backend\n :name\n \"RG\"\n\n :build-command\n (lambda (input)\n (when (and (executable-find \"rg\")\n (> (length input) 5))\n (let ((project (project-current)))\n (when project\n (list \"rg\" \"--no-heading\" \"--column\" \"--color\" \"never\" \"--max-columns\" \"300\" input (expand-file-name (cdr project)))\n ))))\n\n :candidate-filter\n (lambda (candidate-list)\n (let (candidates)\n (dolist (candidate candidate-list)\n (let ((file-info (split-string candidate \":\"))\n (project-dir (expand-file-name (cdr (project-current)))))\n (add-to-list 'candidates\n (list\n (snails-wrap-file-icon-with-candidate\n (nth 0 file-info)\n (format \"PDIR\/%s\" (nth 1 (split-string candidate project-dir))))\n candidate)\n t)))\n candidates))\n\n :candiate-do\n (lambda (candidate)\n (let ((file-info (split-string candidate \":\")))\n (when (> (length file-info) 3)\n (find-file (nth 0 file-info))\n (goto-line (string-to-number (nth 1 file-info)))\n (goto-column (max (- (string-to-number (nth 2 file-info)) 1) 0))\n ))))\n\n(provide 'snails-backend-rg)\n","subject":"Add max-column option for rg backend.","message":"Add max-column option for rg backend.\n","lang":"Emacs Lisp","license":"mit","repos":"leonhe\/.emacs.d,leonhe\/.emacs.d,leonhe\/.emacs.d"} {"commit":"8b1f274e71770e791011f5fd8ce532ff2230fcdb","old_file":"setup-wrap-region.el","new_file":"setup-wrap-region.el","old_contents":"(require 'wrap-region)\n\n;; Active in all modes\n(wrap-region-global-mode t)\n\n;; Only wrap region if trigger key is given a negative prefix argument\n(setq wrap-region-only-with-negative-prefix t)\n\n;; Don't screw up key bindings in magit-mode\n(add-to-list 'wrap-region-except-modes 'magit-mode)\n\n;; Custom wrappers\n\n(wrap-region-add-wrapper \"{ value: \" \" }\" \"v\" 'js2-mode)\n(wrap-region-add-wrapper \"$(\" \")\" \"$\" 'js2-mode)\n\n(wrap-region-add-wrapper \"\" \"o\" 'html-mode)\n(wrap-region-add-wrapper \"

    \" \"<\/p>\" \"p\" 'html-mode)\n(wrap-region-add-wrapper \"

  • \" \"<\/li>\" \"l\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/strong>\" \"s\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/a>\" \"a\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/span>\" \"r\" 'html-mode)\n(wrap-region-add-wrapper \"

    \" \"<\/h1>\" \"h\" 'html-mode)\n(wrap-region-add-wrapper \"${\" \"}\" \"$\" 'html-mode)\n\n(provide 'setup-wrap-region)\n","new_contents":"(require 'wrap-region)\n\n;; Active in all modes\n(wrap-region-global-mode t)\n\n;; Only wrap region if trigger key is given a negative prefix argument\n(setq wrap-region-only-with-negative-prefix t)\n\n;; Don't screw up key bindings in magit-mode\n(add-to-list 'wrap-region-except-modes 'magit-mode)\n\n;; Custom wrappers\n\n(wrap-region-add-wrapper \"{ value: \" \" }\" \"v\" 'js2-mode)\n(wrap-region-add-wrapper \"$(\" \")\" \"$\" 'js2-mode)\n\n(wrap-region-add-wrapper \"\" \"o\" 'html-mode)\n(wrap-region-add-wrapper \"

    \" \"<\/p>\" \"p\" 'html-mode)\n(wrap-region-add-wrapper \"

    \" \"<\/div>\" \"d\" 'html-mode)\n(wrap-region-add-wrapper \"
  • \" \"<\/li>\" \"l\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/strong>\" \"s\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/a>\" \"a\" 'html-mode)\n(wrap-region-add-wrapper \"\" \"<\/span>\" \"r\" 'html-mode)\n(wrap-region-add-wrapper \"

    \" \"<\/h1>\" \"h\" 'html-mode)\n(wrap-region-add-wrapper \"${\" \"}\" \"$\" 'html-mode)\n\n(wrap-region-add-wrapper \"*\" \"*\" \"*\" 'markdown-mode)\n\n(provide 'setup-wrap-region)\n","subject":"Add more nice wrappers to wrap-region.","message":"Add more nice wrappers to wrap-region.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"3d084f910f3d386efad0a1eae6d060767fc4d0fc","old_file":"layers\/mfa-markdown\/packages.el","new_file":"layers\/mfa-markdown\/packages.el","old_contents":"(defconst mfa-markdown-packages '(flycheck))\n\n(defun mfa-markdown\/post-init-flycheck ()\n (spacemacs\/enable-flycheck 'markdown-mode)\n (with-eval-after-load 'flycheck\n (flycheck-add-next-checker 'markdown-markdownlint-cli 'proselint)))\n","new_contents":";; -*- lexical-binding: t -*-\n\n(defconst mfa-markdown-packages '(flycheck\n markdown-mode))\n\n(defun mfa-markdown\/post-init-flycheck ()\n (spacemacs\/enable-flycheck 'markdown-mode)\n (with-eval-after-load 'flycheck\n (flycheck-add-next-checker 'markdown-markdownlint-cli 'proselint)))\n\n(defun mfa-markdown\/post-init-markdown-mode ()\n (add-hook 'markdown-mode-hook #'auto-fill-mode))\n","subject":"Enable auto-fill mode in markdown buffers","message":"Enable auto-fill mode in markdown buffers\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"37675dfcd674c337f09b93ce6b5372c198b50681","old_file":"setup-files\/setup-symon.el","new_file":"setup-files\/setup-symon.el","old_contents":";; Time-stamp: <2015-04-24 16:45:38 kmodi>\n\n;; Mode-line system monitor\n;; https:\/\/github.com\/zk-phi\/symon\n\n(use-package symon\n :config\n (progn\n (setq symon-refresh-rate 4)\n (setq symon-delay 5)\n (setq symon-sparkline-type 'symon-sparkline-type-plain)\n\n (define-symon-monitor symon-current-date-time-monitor\n :interval 60\n :display (propertize\n (format-time-string \"%l:%M %b %d %a \")\n 'face 'font-lock-type-face))\n\n (setq symon-monitors\n (cond ((memq system-type '(gnu\/linux cygwin))\n '(symon-current-date-time-monitor\n symon-linux-memory-monitor\n symon-linux-cpu-monitor\n symon-linux-network-rx-monitor\n symon-linux-network-tx-monitor))\n ((memq system-type '(windows-nt))\n '(symon-current-date-time-monitor\n symon-windows-memory-monitor\n symon-windows-cpu-monitor\n symon-windows-network-rx-monitor\n symon-windows-network-tx-monitor))))\n\n (symon-mode)))\n\n\n(provide 'setup-symon)\n","new_contents":";; Time-stamp: <2015-04-25 01:25:58 kmodi>\n\n;; Mode-line system monitor\n;; https:\/\/github.com\/zk-phi\/symon\n\n(use-package symon\n :config\n (progn\n (setq symon-sparkline-type 'symon-sparkline-type-plain)\n\n (define-symon-monitor symon-current-date-time-monitor\n :interval 60\n :display (propertize\n (format-time-string \"%l:%M %b %d %a \")\n 'face 'font-lock-type-face))\n\n (setq symon-monitors\n (cond ((memq system-type '(gnu\/linux cygwin))\n '(symon-current-date-time-monitor\n symon-linux-memory-monitor\n symon-linux-cpu-monitor\n symon-linux-network-rx-monitor\n symon-linux-network-tx-monitor))\n ((memq system-type '(windows-nt))\n '(symon-current-date-time-monitor\n symon-windows-memory-monitor\n symon-windows-cpu-monitor\n symon-windows-network-rx-monitor\n symon-windows-network-tx-monitor))))\n\n (symon-mode)))\n\n\n(provide 'setup-symon)\n","subject":"Remove symon refresh and delay overrides","message":"Minor: Remove symon refresh and delay overrides\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"fa99d82223ea3da809aaa36c94076450d939fda4","old_file":"init-osx-keys.el","new_file":"init-osx-keys.el","old_contents":"(when *is-a-mac*\n (setq mac-command-modifier 'meta)\n (setq mac-option-modifier 'none)\n (setq default-input-method \"MacOSX\")\n ;; Make mouse wheel \/ trackpad scrolling less jerky\n (setq mouse-wheel-scroll-amount '(0.001))\n (when *is-cocoa-emacs*\n ;; Woohoo!!\n (global-set-key (kbd \"M-`\") 'ns-next-frame)\n (global-set-key (kbd \"M-h\") 'ns-do-hide-emacs)\n (eval-after-load 'nxml-mode\n '(define-key nxml-mode-map (kbd \"M-h\") nil))\n (global-set-key (kbd \"M-ˍ\") 'ns-do-hide-others) ;; what describe-key reports for cmd-option-h\n (global-set-key (kbd \"M-c\") 'ns-copy-including-secondary)\n (global-set-key (kbd \"M-v\") 'ns-paste-secondary)))\n\n\n(provide 'init-osx-keys)\n","new_contents":"(when *is-a-mac*\n (setq mac-command-modifier 'meta)\n (setq mac-option-modifier 'none)\n (setq default-input-method \"MacOSX\")\n ;; Make mouse wheel \/ trackpad scrolling less jerky\n (setq mouse-wheel-scroll-amount '(0.001))\n (when *is-cocoa-emacs*\n ;; Woohoo!!\n (global-set-key (kbd \"M-`\") 'ns-next-frame)\n (global-set-key (kbd \"M-h\") 'ns-do-hide-emacs)\n (eval-after-load 'nxml-mode\n '(define-key nxml-mode-map (kbd \"M-h\") nil))\n (global-set-key (kbd \"M-ˍ\") 'ns-do-hide-others) ;; what describe-key reports for cmd-option-h\n ))\n\n\n(provide 'init-osx-keys)\n","subject":"Remove M-c and M-v bindings under OS X.","message":"Remove M-c and M-v bindings under OS X.\n\nM-v clashes with the default key for scrolling up.\n\nIt's arguably better to use the standard yank\/kill bindings consistently\nwithin Emacs.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"dcorking\/emacs.d,pairyo\/emacs.d,jkaessens\/emacs.d,blueseason\/emacs.d,dhanunjaya\/emacs.d,alant\/emacs.d,Enzo-Liu\/emacs.d,jhpx\/emacs.d,shafayetkhan\/emacs.d,mpwang\/emacs.d,ruiyang\/emacs.d,farzadbekran\/emacs.d,haodaivshen\/emacs.d,caoyuanqi\/emacs.d,jachinpy\/emacs.d,atreeyang\/emacs.d,braveoyster\/emacs.d,zhuoyikang\/emacs.d,me020523\/emacs.d,carlosliu\/emacs.d,cjqw\/emacs.d,zhaotai\/.emacs.d,LittleLmp\/emacs.d,boblannon\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,benkha\/emacs.d,scorpionis\/emacs.d,46do14\/emacs.d,whizzzkid\/emacs.d,lujianmei\/emacs.d,renatoriccio\/emacs.d,zenith-john\/emacs.d,dongdonghu\/.emacs.d,lust4life\/emacs.d,lromang\/emacs.d,kindoblue\/emacs.d,ernest-dzf\/emacs.d,wegatron\/emacs.d,blueabysm\/emacs.d,emuio\/emacs.d,cyjia\/emacs.d,Werewolflsp\/emacs.d,roxolan\/emacs.d,Togal\/emacs.d,jthetzel\/emacs.d,modkzs\/emcs.d,baohaojun\/emacs.d,danfengcao\/emacs.d,ilove0518\/emacs.d,ruiyang\/emacs.d,Guoozz\/emacs.d,hophacker\/emacs.d,sgarciac\/emacs.d,jachinpy\/emacs.d,purcell\/emacs.d,Shanicky\/emacs.d,krzysz00\/emacs.d,bibaijin\/emacs.d,mmqmzk\/emacs.d,fengxl\/emacs.d,exclamaforte\/emacs.d,LKI\/emacs.d,qianwan\/emacs.d,kongfy\/emacs.d,wenpincui\/emacs.d,arthurl\/emacs.d,farzadbekran\/emacs.d,gsmlg\/emacs.d,qinshulei\/emacs.d,farzadbekran\/emacs.d,hkcqr\/emacs.d,svenyurgensson\/emacs.d,DarkThrone\/emacs.d,Jadecity\/PurcellEmacs.d"} {"commit":"88c157e5ee6045576d61a5acfa4798931fd2d823","old_file":"site-lisp\/clgc-magit.el","new_file":"site-lisp\/clgc-magit.el","old_contents":"(require 'magit)\n\n(setq magit-auto-revert-immediately t\n magit-auto-revert-mode t\n magit-completing-read-function (quote magit-ido-completing-read)\n magit-push-always-verify nil\n magit-push-arguments (quote (\"--set-upstream\"))\n magit-save-repository-buffers (quote dontask))\n\n(provide 'clgc-magit)\n","new_contents":"(require 'magit)\n\n(setq magit-auto-revert-immediately t\n magit-auto-revert-mode t\n magit-completing-read-function (quote magit-ido-completing-read)\n magit-push-always-verify nil\n magit-push-arguments (quote (\"--set-upstream\"))\n magit-save-repository-buffers (quote dontask))\n\n;; disable magit-insert-tags as it's a performance hog for magit-refs\n(setq magit-refs-sections-hook\n '(magit-insert-error-header\n magit-insert-branch-description\n magit-insert-local-branches\n magit-insert-remote-branches\n ;; magit-insert-tags\n ))\n\n(provide 'clgc-magit)\n","subject":"Disable magit-insert-tags due to performance problems","message":"Disable magit-insert-tags due to performance problems\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"dgtized\/dotfiles,dgtized\/dotfiles,dgtized\/dotfiles"} {"commit":"04cf436ccd7da5d8980fa5089b2be3053401afdb","old_file":"setup-files\/setup-ivy.el","new_file":"setup-files\/setup-ivy.el","old_contents":";; Time-stamp: <2015-06-09 16:59:52 kmodi>\n\n;; Ivy (comes packaged with the `swiper' package)\n\n(use-package ivy\n :if (not (bound-and-true-p disable-pkg-ivy))\n :config\n (progn\n ;; Disable ido\n (when (boundp 'ido)\n (ido-mode -1))\n ;; Enable ivy\n (ivy-mode 1)\n (setq ivy-use-virtual-buffers t)\n (use-package counsel\n :config\n (progn\n (setq counsel-find-file-at-point t)\n (setq counsel-find-file-ignore-regexp\n (concat\n ;; file names beginning with # or .\n \"\\\\(?:\\\\`[#.]\\\\)\"\n ;; file names ending with # or ~\n ;; but still allow backup files named like abc.el~timestamp~\n \"\\\\|\\\\(?:\\\\`[^~]+?[#~]\\\\'\\\\)\"))\n (bind-key \"C-x C-f\" #'counsel-find-file modi-mode-map)))\n ;; overriding the `C-x C-o` binding with `delete-blank-lines'\n (bind-key \"C-x C-o\" #'ivy-recentf modi-mode-map)\n ;; Revert the default bindings to C-j and C-m\n (bind-keys\n :map ivy-minibuffer-map\n (\"C-m\" . ivy-alt-done) ; RET\n (\"C-j\" . ivy-done))))\n\n\n(provide 'setup-ivy)\n\n;; Counsel\n;; Peek at files with \"C-M-n\" and \"C-M-p\". Input a leading dot to see all files.\n","new_contents":";; Time-stamp: <2015-06-10 13:19:00 kmodi>\n\n;; Ivy (comes packaged with the `swiper' package)\n\n(use-package ivy\n :if (not (bound-and-true-p disable-pkg-ivy))\n :config\n (progn\n ;; Disable ido\n (when (boundp 'ido)\n (ido-mode -1))\n ;; Enable ivy\n (ivy-mode 1)\n\n (setq ivy-use-virtual-buffers t)\n\n ;; (setq ivy-re-builders-alist '((t . ivy--regex-plus))) ; default\n (setq ivy-re-builders-alist '((t . ivy--regex-fuzzy)))\n\n ;; overriding the `C-x C-o` binding with `delete-blank-lines'\n (bind-key \"C-x C-o\" #'ivy-recentf modi-mode-map)\n ;; Revert the default bindings to C-j and C-m\n (bind-keys\n :map ivy-minibuffer-map\n (\"C-m\" . ivy-alt-done) ; RET\n (\"C-j\" . ivy-done))))\n\n\n(provide 'setup-ivy)\n","subject":"Enable fuzzy search using ivy","message":"Enable fuzzy search using ivy\n\n- Move counsel setup to a separate file\n","lang":"Emacs Lisp","license":"mit","repos":"kaushalmodi\/.emacs.d,kaushalmodi\/.emacs.d"} {"commit":"68cad0a42660f243976db7171ecbf9540ecf80c6","old_file":"init-rails.el","new_file":"init-rails.el","old_contents":"(dolist (hook '(nxml-mode-hook haml-mode-hook sass-mode-hook magit-mode-hook))\n (add-hook hook (lambda () (rinari-launch))))\n(defun update-rails-ctags ()\n (interactive)\n (let ((default-directory (or (rinari-root) default-directory)))\n (shell-command (concat \"ctags -a -e -f \" rinari-tags-file-name \" --tag-relative -R app lib vendor test\"))))\n(require 'rinari)\n\n(add-hook 'rails-minor-mode-hook (lambda () (local-set-key [f6] 'recompile)))\n\n\n\n(provide 'init-rails)\n","new_contents":"(require 'rinari)\n(dolist (hook '(nxml-mode-hook haml-mode-hook sass-mode-hook magit-mode-hook))\n (add-hook hook (lambda () (rinari-launch))))\n\n(defun update-rails-ctags ()\n (interactive)\n (let ((default-directory (or (rinari-root) default-directory)))\n (shell-command (concat \"ctags -a -e -f \" rinari-tags-file-name \" --tag-relative -R app lib vendor test\"))))\n\n\n(add-hook 'rails-minor-mode-hook (lambda () (local-set-key [f6] 'recompile)))\n\n\n(provide 'init-rails)\n","subject":"Tidy up rails init file","message":"Tidy up rails init file\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"zuoshifan\/emacs.d,lust4life\/emacs.d,ilove0518\/emacs.d,baohaojun\/emacs.d,pairyo\/emacs.d,jachinpy\/emacs.d,boblannon\/emacs.d,me020523\/emacs.d,Togal\/emacs.d,zuoshifan\/emacs.d,purcell\/emacs.d,zenith-john\/emacs.d,modkzs\/emcs.d,hophacker\/emacs.d,zuoshifan\/emacs.d,hkcqr\/emacs.d,jhpx\/emacs.d,YangXin\/emacs.d,zhuoyikang\/emacs.d,farzadbekran\/emacs.d,farzadbekran\/emacs.d,qinshulei\/emacs.d,roxolan\/emacs.d,danfengcao\/emacs.d,jachinpy\/emacs.d,gsmlg\/emacs.d,farzadbekran\/emacs.d,wenpincui\/emacs.d,YangXin\/emacs.d,blueseason\/emacs.d,dcorking\/emacs.d,ernest-dzf\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,mpwang\/emacs.d,zuoshifan\/emacs.d,cjqw\/emacs.d,dongdonghu\/.emacs.d,atreeyang\/emacs.d,scorpionis\/emacs.d,blueabysm\/emacs.d,kindoblue\/emacs.d,cyjia\/emacs.d,Werewolflsp\/emacs.d,bibaijin\/emacs.d,svenyurgensson\/emacs.d,wegatron\/emacs.d,alant\/emacs.d,shafayetkhan\/emacs.d,zhaotai\/.emacs.d,Guoozz\/emacs.d,46do14\/emacs.d,fengxl\/emacs.d,caoyuanqi\/emacs.d,zuoshifan\/emacs.d,jthetzel\/emacs.d,Shanicky\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,haodaivshen\/emacs.d,ruiyang\/emacs.d,braveoyster\/emacs.d,ruiyang\/emacs.d,zuoshifan\/emacs.d,LittleLmp\/emacs.d,krzysz00\/emacs.d,Jadecity\/PurcellEmacs.d,Enzo-Liu\/emacs.d,lujianmei\/emacs.d,mmqmzk\/emacs.d,whizzzkid\/emacs.d,arthurl\/emacs.d,carlosliu\/emacs.d,renatoriccio\/emacs.d,qianwan\/emacs.d,sgarciac\/emacs.d,dhanunjaya\/emacs.d,jkaessens\/emacs.d,zuoshifan\/emacs.d,emuio\/emacs.d,LKI\/emacs.d,lromang\/emacs.d,DarkThrone\/emacs.d,benkha\/emacs.d,kongfy\/emacs.d,exclamaforte\/emacs.d"} {"commit":"f29ef99c56c86ddf968162056884b79946d94726","old_file":"load\/osx.el","new_file":"load\/osx.el","old_contents":";; mouse integration\n(require 'mwheel)\n\n(if (equal (getenv \"TERM_PROGRAM\") \"iTerm.app\")\n (require 'mouse) ;; needed for iterm2 compatibility\n \n (progn\n (xterm-mouse-mode)\n (defvar mouse-wheel-progressive-speed)\n (setq mouse-wheel-progressive-speed nil)\n (defvar mouse-wheel-scroll-amount)\n (setq mouse-wheel-scroll-amount '(1))\n\n (mouse-wheel-mode 1)\n \n (declare-function cua-copy-region (arg) \"cua-base.el\")\n (defun smart-copy-region ()\n (interactive)\n (cua-copy-region nil)\n (shell-command-on-region\n (region-beginning)\n (region-end)\n \"pbcopy\")\n (message \"\"))\n (global-set-key (kbd \"M-w\") 'smart-copy-region)))\n","new_contents":";; mouse integration\n(require 'mwheel)\n\n(if (equal (getenv \"TERM_PROGRAM\") \"iTerm.app\")\n (progn\n (require 'mouse) ;; needed for iterm2 compatibility\n (message\n \"********************************************************************************\")\n (message \"HERE\")\n (message\n \"********************************************************************************\")\n (xterm-mouse-mode)\n (defvar mouse-wheel-progressive-speed)\n (setq mouse-wheel-progressive-speed nil)\n (defvar mouse-wheel-scroll-amount)\n (setq mouse-wheel-scroll-amount '(1))\n\n (mouse-wheel-mode 1)\n\n (declare-function cua-copy-region (arg) \"cua-base.el\")\n (defun smart-copy-region ()\n (interactive)\n (cua-copy-region nil)\n (shell-command-on-region\n (region-beginning)\n (region-end)\n \"pbcopy\")\n (message \"\"))\n (global-set-key (kbd \"M-w\") 'smart-copy-region)))\n","subject":"Fix mouse support load bug","message":"Fix mouse support load bug\n","lang":"Emacs Lisp","license":"mit","repos":"kaidadragonfly\/.emacs"} {"commit":"421b49c7e590ca9233474995e3fd5534b2eb8e11","old_file":"layers\/+lang\/octave\/packages.el","new_file":"layers\/+lang\/octave\/packages.el","old_contents":";;; packages.el --- Octave Layer packages File for Spacemacs\n;;\n;; Copyright (c) 2012-2014 Sylvain Benner\n;; Copyright (c) 2014-2015 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(setq octave-packages\n '(\n octave\n ))\n\n(defun octave\/init-octave ()\n (use-package octave\n :mode (\"\\\\.m\\\\'\" . octave-mode)\n :commands (run-octave)\n :config (evil-leader\/set-key-for-mode 'octave-mode\n ;; helpers\n \"mhh\" 'octave-help\n \"mhi\" 'octave-lookfor\n ;; REPL\n \"msb\" 'octave-send-buffer\n \"msf\" 'octave-send-defun\n \"msi\" 'run-octave\n \"msl\" 'octave-send-line\n \"msr\" 'octave-send-region)))\n","new_contents":";;; packages.el --- Octave Layer packages File for Spacemacs\n;;\n;; Copyright (c) 2012-2014 Sylvain Benner\n;; Copyright (c) 2014-2015 Sylvain Benner & Contributors\n;;\n;; Author: Sylvain Benner \n;; URL: https:\/\/github.com\/syl20bnr\/spacemacs\n;;\n;; This file is not part of GNU Emacs.\n;;\n;;; License: GPLv3\n\n(setq octave-packages\n '(\n octave\n ))\n\n(defun octave\/init-octave ()\n (use-package octave\n :mode (\"\\\\.m\\\\'\" . octave-mode)\n :commands (run-octave)\n :config (spacemacs\/set-leader-keys-for-major-mode 'octave-mode\n ;; helpers\n \"hh\" 'octave-help\n \"hi\" 'octave-lookfor\n ;; REPL\n \"sb\" 'octave-send-buffer\n \"sf\" 'octave-send-defun\n \"si\" 'run-octave\n \"sl\" 'octave-send-line\n \"sr\" 'octave-send-region)))\n","subject":"Change octave-mode keys to mirror other modes.","message":"Change octave-mode keys to mirror other modes.\n\nThe keybindings in octave-mode don't follow the same standards as the\nothers. Also use the function `spacemacs\/set-leader-keys-for-major-mode`\nfor setting mode specific keys.\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"6055ea9ec719129c51e6e7ba4db85f78ae0de931","old_file":"layers\/restclient\/packages.el","new_file":"layers\/restclient\/packages.el","old_contents":"(setq restclient-packages\n '(\n restclient\n )\n )\n\n(defun restclient\/init-restclient ()\n (use-package restclient\n :mode (\"\\\\.http\\\\'\" . restclient-mode)\n :defer t\n :init\n (progn\n\n (defun restclient-http-send-current-raw-stay-in-window ()\n (interactive)\n (restclient-http-send-current t t))\n\n (spacemacs\/set-leader-keys-for-major-mode 'restclient-mode\n \"s\" 'restclient-http-send-current-stay-in-window\n \"S\" 'restclient-http-send-current\n \"r\" 'restclient-http-send-current-raw-stay-in-window\n \"R\" 'restclient-http-send-current-raw\n \"y\" 'restclient-copy-curl-command \n ))\n )\n )\n","new_contents":"(setq restclient-packages\n '(\n restclient\n )\n )\n\n(defun restclient\/init-restclient ()\n (use-package restclient\n :mode (\"\\\\.http\\\\'\" . restclient-mode)\n :defer t\n :init\n (progn\n\n (defun restclient-http-send-current-raw-stay-in-window ()\n (interactive)\n (restclient-http-send-current t t))\n\n (spacemacs\/set-leader-keys-for-major-mode 'restclient-mode\n \"s\" 'restclient-http-send-current-stay-in-window\n \"S\" 'restclient-http-send-current\n \"r\" 'restclient-http-send-current-raw-stay-in-window\n \"R\" 'restclient-http-send-current-raw\n \"y\" 'restclient-copy-curl-command\n ))\n )\n )\n","subject":"Fix trailing whitespaces in last commit","message":"Fix trailing whitespaces in last commit\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"4c387b5e3426f5bbddbbf3054961a2b45a3a27bc","old_file":"lisp\/init-flycheck.el","new_file":"lisp\/init-flycheck.el","old_contents":"(when (eval-when-compile (>= emacs-major-version 24))\n (require-package 'flycheck)\n (add-hook 'after-init-hook 'global-flycheck-mode))\n\n;; Override default flycheck triggers\n(setq flycheck-check-syntax-automatically '(save idle-change mode-enabled)\n flycheck-idle-change-delay 0.8)\n(provide 'init-flycheck)\n","new_contents":"(when (eval-when-compile (>= emacs-major-version 24))\n (require-package 'flycheck)\n (add-hook 'after-init-hook 'global-flycheck-mode))\n\n;; Override default flycheck triggers\n(setq flycheck-check-syntax-automatically '(save idle-change mode-enabled)\n flycheck-idle-change-delay 0.8)\n\n\n(after-load 'flycheck\n (flycheck-define-checker ruby\n \"A Ruby syntax checker using the standard (MRI) Ruby interpreter.\n\n See URL `http:\/\/www.ruby-lang.org\/'.\"\n :command (\"ruby\" \"-w\" \"-c\" source)\n :error-patterns\n ;; These patterns support output from JRuby, too, to deal with RVM or Rbenv\n ((error line-start\n \"SyntaxError in \" (file-name) \":\" line \": \" (message)\n line-end)\n (warning line-start\n (file-name) \":\" line \":\" (optional column \":\")\n \" warning: \" (message) line-end)\n (error line-start (file-name) \":\" line \": \" (message) line-end))\n :modes (enh-ruby-mode ruby-mode))\n (add-to-list 'flycheck-checkers 'ruby t))\n\n\n(provide 'init-flycheck)\n","subject":"Add ruby flycheck checker locally until it is restored upstream","message":"Add ruby flycheck checker locally until it is restored upstream\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"ruiyang\/emacs.d,jhpx\/emacs.d,Jadecity\/PurcellEmacs.d,zhuoyikang\/emacs.d,farzadbekran\/emacs.d,emuio\/emacs.d,whizzzkid\/emacs.d,bibaijin\/emacs.d,blueabysm\/emacs.d,renatoriccio\/emacs.d,jkaessens\/emacs.d,46do14\/emacs.d,arthurl\/emacs.d,jachinpy\/emacs.d,purcell\/emacs.d,danfengcao\/emacs.d,dcorking\/emacs.d,pairyo\/emacs.d,fengxl\/emacs.d,blueseason\/emacs.d,hkcqr\/emacs.d,boblannon\/emacs.d,svenyurgensson\/emacs.d,gsmlg\/emacs.d,farzadbekran\/emacs.d,kindoblue\/emacs.d,benkha\/emacs.d,qianwan\/emacs.d,scorpionis\/emacs.d,farzadbekran\/emacs.d,jthetzel\/emacs.d,LKI\/emacs.d,shafayetkhan\/emacs.d,lromang\/emacs.d,caoyuanqi\/emacs.d,Enzo-Liu\/emacs.d,hophacker\/emacs.d,farzadbekran\/emacs.d,exclamaforte\/emacs.d,zhaotai\/.emacs.d,ernest-dzf\/emacs.d,carlosliu\/emacs.d,Guoozz\/emacs.d,Shanicky\/emacs.d,cyjia\/emacs.d,sgarciac\/emacs.d,mmqmzk\/emacs.d,modkzs\/emcs.d,atreeyang\/emacs.d,lust4life\/emacs.d,ruiyang\/emacs.d,mpwang\/emacs.d,dongdonghu\/.emacs.d,krzysz00\/emacs.d,farzadbekran\/emacs.d,wenpincui\/emacs.d,cjqw\/emacs.d,qinshulei\/emacs.d,lujianmei\/emacs.d,baohaojun\/emacs.d,Werewolflsp\/emacs.d,dhanunjaya\/emacs.d,roxolan\/emacs.d,me020523\/emacs.d,kongfy\/emacs.d,jachinpy\/emacs.d,braveoyster\/emacs.d,Togal\/emacs.d,wegatron\/emacs.d,ilove0518\/emacs.d,haodaivshen\/emacs.d,LittleLmp\/emacs.d,zenith-john\/emacs.d,alant\/emacs.d,DarkThrone\/emacs.d"} {"commit":"1825fe319b35e672bfadcb284fb7aa587766868e","old_file":"site-lisp\/clgc-prodigy.el","new_file":"site-lisp\/clgc-prodigy.el","old_contents":"(require 'prodigy)\n\n(prodigy-define-tag :name 'rails\n :ready-message \"Listening on 0\\\\.0\\\\.0\\\\.0:[0-9]+, CTRL\\\\+C to stop\")\n\n(prodigy-define-tag\n :name 'zeus\n :on-output\n (prodigy-callback (service)\n (let ((poll-zeus \"ps aux | grep -c 'zeus slave:'\"))\n (when (>= (string-to-number (shell-command-to-string poll-zeus)) 6)\n (prodigy-set-status service 'ready)))))\n\n(prodigy-define-tag :name 'resque-pool\n :ready-message \"Starting worker\")\n\n(global-set-key (kbd \"C-x P\") 'prodigy)\n\n(provide 'clgc-prodigy)\n","new_contents":"(require 'prodigy)\n\n(prodigy-define-tag :name 'rails\n :ready-message \"Listening on 0\\\\.0\\\\.0\\\\.0:[0-9]+, CTRL\\\\+C to stop\")\n\n(prodigy-define-tag\n :name 'zeus\n :on-output\n (prodigy-callback (service)\n (let ((poll-zeus \"ps aux | grep -c 'zeus slave:'\"))\n (when (>= (string-to-number (shell-command-to-string poll-zeus)) 6)\n (prodigy-set-status service 'ready)))))\n\n(prodigy-define-tag :name 'resque-pool\n :ready-message \"Starting worker\")\n\n;; ansi-color-apply and filter were causing out-of-range errors for zeus\n(setq prodigy-output-filters (remove 'ansi-color-apply prodigy-output-filters))\n\n(global-set-key (kbd \"C-x P\") 'prodigy)\n\n(provide 'clgc-prodigy)\n","subject":"Stop ansi-color-apply from exploding over *messages* buffer","message":"Stop ansi-color-apply from exploding over *messages* buffer\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"dgtized\/dotfiles,dgtized\/dotfiles,dgtized\/dotfiles"} {"commit":"d9901b6abf37e8c4cefc9ee0bf6dc61c37fe387a","old_file":"elisp\/web-programming.el","new_file":"elisp\/web-programming.el","old_contents":";;; web-programming.el --- Web programming configuration.\n;;; Commentary:\n;;; Code:\n\n(use-package web-mode\n :ensure t\n :commands (web-mode)\n :mode\n ((\"\\\\.phtml\\\\'\" . web-mode)\n (\"\\\\.tpl\\\\.php\\\\'\" . web-mode)\n (\"\\\\.[agj]sp\\\\'\" . web-mode)\n (\"\\\\.as[cp]x\\\\'\" . web-mode)\n (\"\\\\.erb\\\\'\" . web-mode)\n (\"\\\\.mustache\\\\'\" . web-mode)\n (\"\\\\.djhtml\\\\'\" . web-mode)\n (\"\\\\.html?\\\\'\" . web-mode))\n :config\n (progn\n (setq web-mode-css-indent-offset 2)\n (setq web-mode-code-indent-offset 4)\n (setq web-mode-comment-style 2)\n (setq web-mode-script-padding 0)\n (setq web-mode-enable-current-element-highlight t)\n (setq web-mode-engines-alist\n '((\"django\" . \"\\\\.html\\\\'\"))\n )))\n\n;; inhibit { pairing in web mode\n(sp-pair \"{\" nil :actions :rem)\n\n;; Emmet!!!\n(use-package emmet-mode\n :ensure t\n :config\n (progn\n (add-hook 'web-mode-hook 'emmet-mode)))\n\n(provide 'web-programming)\n;;; web-programming.el ends here\n","new_contents":";;; web-programming.el --- Web programming configuration.\n;;; Commentary:\n;;; Code:\n\n(use-package web-mode\n :ensure t\n :commands (web-mode)\n :mode\n ((\"\\\\.phtml\\\\'\" . web-mode)\n (\"\\\\.tpl\\\\.php\\\\'\" . web-mode)\n (\"\\\\.[agj]sp\\\\'\" . web-mode)\n (\"\\\\.as[cp]x\\\\'\" . web-mode)\n (\"\\\\.erb\\\\'\" . web-mode)\n (\"\\\\.mustache\\\\'\" . web-mode)\n (\"\\\\.djhtml\\\\'\" . web-mode)\n (\"\\\\.html?\\\\'\" . web-mode))\n :config\n (progn\n (setq web-mode-css-indent-offset 2)\n (setq web-mode-code-indent-offset 4)\n (setq web-mode-comment-style 2)\n (setq web-mode-script-padding 0)\n (setq web-mode-enable-current-element-highlight t)\n (setq web-mode-engines-alist\n '((\"django\" . \"\\\\.html\\\\'\"))\n )))\n\n(defun my\/web-mode-before-function-p (id action context)\n \"Check if the char 2 positions before point is a closing paren.\"\n (and (eq action 'insert)\n (equal (progn (save-excursion\n (backward-char)\n (string (preceding-char))))\n \")\")))\n\n(sp-local-pair 'web-mode \"{\" \"}\" :when '(my\/web-mode-before-function-p))\n\n;; Emmet!!!\n(use-package emmet-mode\n :ensure t\n :config\n (progn\n (add-hook 'web-mode-hook 'emmet-mode)))\n\n(provide 'web-programming)\n;;; web-programming.el ends here\n","subject":"Add paren matching for curly braces for js in web mode","message":"Add paren matching for curly braces for js in web mode\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"bd20afdb190199c6876db49c62386d0617d6e312","old_file":"emacs\/tomku-aesthetic.el","new_file":"emacs\/tomku-aesthetic.el","old_contents":"(tool-bar-mode -1) ; Hide toolbar\n(set-scroll-bar-mode 'right) ; Scrollbar on right\n\n(setq inhibit-startup-screen t) ; Hide startup screen\n\n;; Solarized looks great in GUI, but terrible in the console.\n(when window-system\n (load-theme 'solarized-dark t))\n\n;; Change the default frame size so that it fits on my laptop's\n;; screen. This is not exactly optimal since it'll be small on other\n;; PCs, but I'm too lazy to find a better way.\n(add-to-list 'default-frame-alist '(height . 36))\n(add-to-list 'default-frame-alist '(top . 0))\n(add-to-list 'default-frame-alist '(width . 120))\n\n;; Show 'emacs : $filename' as the frame title, stolen from EmacsWiki\n(setq frame-title-format \n '(:eval \n (concat \"emacs : \" (if buffer-file-name\n (replace-regexp-in-string\n \"\\\\\\\\\" \"\/\"\n (replace-regexp-in-string \n (regexp-quote (getenv \"HOME\")) \"~\"\n (convert-standard-filename buffer-file-name)))\n (buffer-name)))))\n\n\n(provide 'tomku-aesthetic)\n","new_contents":"(tool-bar-mode -1) ; Hide toolbar\n(set-scroll-bar-mode 'right) ; Scrollbar on right\n\n(setq inhibit-startup-screen t) ; Hide startup screen\n\n;; Solarized looks great in GUI, but terrible in the console.\n(setq solarized-use-variable-pitch nil\n solarized-scale-org-headlines nil)\n(when window-system\n (load-theme 'solarized-dark t))\n\n;; Change the default frame size so that it fits on my laptop's\n;; screen. This is not exactly optimal since it'll be small on other\n;; PCs, but I'm too lazy to find a better way.\n(add-to-list 'default-frame-alist '(height . 36))\n(add-to-list 'default-frame-alist '(top . 0))\n(add-to-list 'default-frame-alist '(width . 120))\n\n;; Show 'emacs : $filename' as the frame title, stolen from EmacsWiki\n(setq frame-title-format \n '(:eval \n (concat \"emacs : \" (if buffer-file-name\n (replace-regexp-in-string\n \"\\\\\\\\\" \"\/\"\n (replace-regexp-in-string \n (regexp-quote (getenv \"HOME\")) \"~\"\n (convert-standard-filename buffer-file-name)))\n (buffer-name)))))\n\n\n(provide 'tomku-aesthetic)\n","subject":"Make org-mode in Emacs less ugly with Solarized.","message":"Make org-mode in Emacs less ugly with Solarized.\n","lang":"Emacs Lisp","license":"mit","repos":"tomku\/dotfiles,tomku\/dotfiles,tomku\/dotfiles"} {"commit":"a253f5ebf051f4e76401ccf3951322be18a0d0bb","old_file":"emacs\/emacs.d\/my-region-bindings-mode.el","new_file":"emacs\/emacs.d\/my-region-bindings-mode.el","old_contents":"(require 'region-bindings-mode)\n\n(region-bindings-mode-enable)\n","new_contents":"(require 'region-bindings-mode)\n\n(region-bindings-mode-enable)\n\n(add-to-list 'region-bindings-mode-disable-predicates\n 'minibufferp)\n","subject":"Disable region bindings in minibuffer","message":"Disable region bindings in minibuffer\n","lang":"Emacs Lisp","license":"mit","repos":"sri\/dotfiles,sri\/dotfiles,sri\/dotfiles"} {"commit":"ca6879676ba5588e7659589ecd187e25d877ea2d","old_file":"lisp\/init-ivy.el","new_file":"lisp\/init-ivy.el","old_contents":"(when (maybe-require-package 'ivy)\n (after-load 'ivy\n (setq-default ivy-use-virtual-buffers t\n ivy-count-format \"\"\n projectile-completion-system 'ivy)\n ;; IDO-style directory navigation\n (define-key ivy-minibuffer-map (kbd \"C-j\") #'ivy-immediate-done)\n (define-key ivy-minibuffer-map (kbd \"RET\") #'ivy-alt-done)\n (when (maybe-require-package 'diminish)\n (diminish 'ivy-mode)))\n\n (add-hook 'after-init-hook\n (lambda ()\n (when (bound-and-true-p ido-ubiquitous-mode)\n (ido-ubiquitous-mode -1)\n (ido-mode -1))\n (ivy-mode 1))))\n\n\n(when (maybe-require-package 'counsel)\n (setq-default counsel-mode-override-describe-bindings t)\n (when (maybe-require-package 'diminish)\n (after-load 'counsel\n (diminish 'counsel-mode)))\n (add-hook 'after-init-hook 'counsel-mode))\n\n\n;;(when (maybe-require-package 'swiper)\n;; (after-load 'ivy\n;; (define-key ivy-mode-map (kbd \"C-s\") 'swiper)))\n\n\n\n(provide 'init-ivy)\n","new_contents":"(when (maybe-require-package 'ivy)\n (after-load 'ivy\n (setq-default ivy-use-virtual-buffers t\n ivy-count-format \"\"\n projectile-completion-system 'ivy\n ivy-initial-inputs-alist\n '((man . \"^\")\n (woman . \"^\")))\n ;; IDO-style directory navigation\n (define-key ivy-minibuffer-map (kbd \"C-j\") #'ivy-immediate-done)\n (define-key ivy-minibuffer-map (kbd \"RET\") #'ivy-alt-done)\n (when (maybe-require-package 'diminish)\n (diminish 'ivy-mode)))\n\n (add-hook 'after-init-hook\n (lambda ()\n (when (bound-and-true-p ido-ubiquitous-mode)\n (ido-ubiquitous-mode -1)\n (ido-mode -1))\n (ivy-mode 1))))\n\n\n(when (maybe-require-package 'counsel)\n (setq-default counsel-mode-override-describe-bindings t)\n (when (maybe-require-package 'diminish)\n (after-load 'counsel\n (diminish 'counsel-mode)))\n (add-hook 'after-init-hook 'counsel-mode))\n\n\n;;(when (maybe-require-package 'swiper)\n;; (after-load 'ivy\n;; (define-key ivy-mode-map (kbd \"C-s\") 'swiper)))\n\n\n\n(provide 'init-ivy)\n","subject":"Remove initial \"^\" input from most ivy prompts","message":"Remove initial \"^\" input from most ivy prompts\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"roxolan\/emacs.d,dcorking\/emacs.d,cjqw\/emacs.d,sgarciac\/emacs.d,arthurl\/emacs.d,cyjia\/emacs.d,me020523\/emacs.d,benkha\/emacs.d,kongfy\/emacs.d,lust4life\/emacs.d,emuio\/emacs.d,braveoyster\/emacs.d,gsmlg\/emacs.d,mmqmzk\/emacs.d,purcell\/emacs.d,blueabysm\/emacs.d,blueseason\/emacs.d,kindoblue\/emacs.d,qianwan\/emacs.d,svenyurgensson\/emacs.d,krzysz00\/emacs.d,baohaojun\/emacs.d,fengxl\/emacs.d,wegatron\/emacs.d"} {"commit":"dc88e83fb6842fd6cc8a0d3c4ed87c4758de5c51","old_file":"lisp\/init-php.el","new_file":"lisp\/init-php.el","old_contents":"(when (maybe-require-package 'php-mode)\n (maybe-require-package 'smarty-mode))\n\n(provide 'init-php)\n","new_contents":"(when (maybe-require-package 'php-mode)\n (maybe-require-package 'smarty-mode)\n\n (when (maybe-require-package 'company-php)\n (after-load 'company\n (add-hook 'php-mode-hook\n (lambda () (sanityinc\/local-push-company-backend 'company-ac-php-backend))))))\n\n(provide 'init-php)\n","subject":"Add company-php for PHP auto-complete","message":"Add company-php for PHP auto-complete\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"sgarciac\/emacs.d,kongfy\/emacs.d,arthurl\/emacs.d,krzysz00\/emacs.d,wegatron\/emacs.d,emuio\/emacs.d,lust4life\/emacs.d,purcell\/emacs.d,cjqw\/emacs.d,gsmlg\/emacs.d,blueseason\/emacs.d,benkha\/emacs.d,kindoblue\/emacs.d,braveoyster\/emacs.d,me020523\/emacs.d,dcorking\/emacs.d,baohaojun\/emacs.d,mmqmzk\/emacs.d,svenyurgensson\/emacs.d,blueabysm\/emacs.d,qianwan\/emacs.d"} {"commit":"a0ffc38117f0106bb9a6e278a4d93618b09e83f4","old_file":"modules\/emacs\/eshell\/autoload\/settings.el","new_file":"modules\/emacs\/eshell\/autoload\/settings.el","old_contents":";;; emacs\/eshell\/autoload\/settings.el -*- lexical-binding: t; -*-\n\n;;;###autodef\n(defun set-eshell-alias! (&rest aliases)\n \"Define aliases for eshell.\"\n (or (cl-evenp (length aliases))\n (signal 'wrong-number-of-arguments (list 'even (length aliases))))\n (after! eshell\n (while aliases\n (setf (alist-get (pop aliases) +eshell-aliases nil nil #'equal)\n (pop aliases)))\n (when (boundp 'eshell-command-aliases-list)\n (if +eshell--default-aliases\n (setq eshell-command-aliases-list\n (append +eshell--default-aliases\n +eshell-aliases))\n (setq eshell-command-aliases-list +eshell-aliases)))))\n","new_contents":";;; emacs\/eshell\/autoload\/settings.el -*- lexical-binding: t; -*-\n\n;;;###autodef\n(defun set-eshell-alias! (&rest aliases)\n \"Define aliases for eshell.\"\n (or (cl-evenp (length aliases))\n (signal 'wrong-number-of-arguments (list 'even (length aliases))))\n (after! eshell\n (while aliases\n (setf (alist-get (pop aliases) +eshell-aliases nil nil #'equal)\n (list (pop aliases))))\n (when (boundp 'eshell-command-aliases-list)\n (if +eshell--default-aliases\n (setq eshell-command-aliases-list\n (append +eshell--default-aliases\n +eshell-aliases))\n (setq eshell-command-aliases-list +eshell-aliases)))))\n","subject":"Fix listp errors in eshell when using aliases","message":"Fix listp errors in eshell when using aliases\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs"} {"commit":"8799b617bbe110f9885e98a9d51c7f8c80ed586d","old_file":"doom_emacs\/init.el","new_file":"doom_emacs\/init.el","old_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n ivy\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n\n :term\n term\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n (write ; emacs as a word processor (latex + org + markdown)\n +wordnut ; wordnet (wn) search\n +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","new_contents":";;; init.el -*- lexical-binding: t; -*-\n\n(doom!\n :completion\n ivy\n (company +auto)\n\n :ui\n doom\n modeline\n ophints\n hl-todo\n nav-flash\n neotree\n (popup +all +defaults)\n (pretty-code +fira)\n vc-gutter\n vi-tilde-fringe\n window-select\n\n :editor\n (evil +everywhere +commands)\n snippets\n file-templates\n multiple-cursors\n rotate-text\n fold\n\n :emacs\n (dired +icons)\n electric\n vc\n\n :tools\n (lookup +docsets)\n eval\n make\n magit\n lsp\n editorconfig\n flyspell\n flycheck\n\n :lang\n (sh +fish)\n emacs-lisp\n markdown\n (csharp +unity)\n (haskell +lsp)\n (org\n +attach\n +babel\n +export\n +present)\n (cc +lsp)\n ocaml\n idris\n (web +html +css)\n (latex +latexmk)\n\n :term\n term\n eshell\n\n :app\n ;;(email +gmail) ; emacs as an email client\n ;;(rss +org) ; emacs as an RSS reader\n (write ; emacs as a word processor (latex + org + markdown)\n +wordnut ; wordnet (wn) search\n +langtool) ; a proofreader (grammar\/style check) for Emacs\n\n :collab\n ;;floobits ; peer programming for a price\n ;;impatient-mode ; show off code over HTTP\n\n :config\n (default)\n ;;literate\n )\n","subject":"Enable latex plugin in emacs-doom","message":"Enable latex plugin in emacs-doom\n","lang":"Emacs Lisp","license":"mit","repos":"mpardalos\/dotfiles,mpardalos\/dotfiles"} {"commit":"e2e1fe515e53644eae53e5b5956a30bcf5b1f141","old_file":"layers\/+tools\/wakatime\/packages.el","new_file":"layers\/+tools\/wakatime\/packages.el","old_contents":"(setq wakatime-packages '(wakatime-mode))\n\n(defun wakatime\/init-wakatime-mode ()\n (use-package wakatime-mode\n :defer t\n :init (add-hook 'prog-mode-hook 'wakatime-mode)))\n","new_contents":"(setq wakatime-packages '(wakatime-mode))\n\n(defun wakatime\/init-wakatime-mode ()\n (use-package wakatime-mode\n :defer t\n :init\n (add-hook 'prog-mode-hook 'wakatime-mode)\n :config\n (defun spacemacs\/wakatime-dashboard ()\n (interactive)\n (browse-url \"wakatime.com\/dashboard\"))\n (evil-leader\/set-key\n \"aW\" 'spacemacs\/wakatime-dashboard)))\n","subject":"Add config phase to Wakatime","message":"Add config phase to Wakatime\n\nThis Adds the `spacemacs\/wakatime-dashboard` function which opens the\ndashboard in the browser.\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"32ce1c6f9ed136e86a27d6893625b58faeeb8927","old_file":"emacs\/elisp\/elisp-practice.el","new_file":"emacs\/elisp\/elisp-practice.el","old_contents":"This buffer is for notes you don't want to save, and for Lisp evaluation.\nIf you want to create a file, visit that file with C-x C-f,\nthen enter the text in that file's own buffer.\n\n","new_contents":"This buffer is for notes you don't want to save, and for Lisp evaluation.\nIf you want to create a file, visit that file with C-x C-f,\nthen enter the text in that file's own buffer.\n","subject":"Clean out elisp practise file.","message":"Clean out elisp practise file.\n","lang":"Emacs Lisp","license":"mit","repos":"shaunashby\/Desktop-Env,shaunashby\/Desktop-Env,shaunashby\/Desktop-Env,shaunashby\/Desktop-Env"} {"commit":"afe0422471cb25078cede64bf699d4a25acf4775","old_file":"doom-emacs\/.doom.d\/packages.el","new_file":"doom-emacs\/.doom.d\/packages.el","old_contents":";; -*- no-byte-compile: t; -*-\n;;; ~\/.doom.d\/packages.el\n\n;;; Examples:\n;; (package! some-package)\n;; (package! another-package :recipe (:fetcher github :repo \"username\/repo\"))\n;; (package! builtin-package :disable t)\n(package! cider\n :recipe (:fetcher github\n :repo \"clojure-emacs\/cider\"\n :commit \"200c88adb1314b5811ba749af42ffb6817c1ca1b\"\n :files (\"*.el\" (:exclude \".dir-locals.el\"))\n :old-names (nrepl)))\n(package! clj-refactor\n :recipe (:fetcher github\n :repo \"clojure-emacs\/clj-refactor.el\"\n :commit \"3d5d1fbf28bfcc00f917cd96d6784968dcbbc962\"))\n(package! flymd)\n(package! lispyville)\n(package! sort-words)\n(package! uuidgen)\n(package! xterm-color)\n","new_contents":";; -*- no-byte-compile: t; -*-\n;;; ~\/.doom.d\/packages.el\n\n;;; Examples:\n;; (package! some-package)\n;; (package! another-package :recipe (:fetcher github :repo \"username\/repo\"))\n;; (package! builtin-package :disable t)\n(package! flymd)\n(package! lispyville)\n(package! sort-words)\n(package! uuidgen)\n(package! xterm-color)\n","subject":"Remove cider and clj-refactor pins","message":"doom-emacs: Remove cider and clj-refactor pins\n","lang":"Emacs Lisp","license":"mit","repos":"m45t3r\/dotfiles,m45t3r\/dotfiles,m45t3r\/dotfiles"} {"commit":"d57588771fd3263846f0e91ce72c79e64316c65d","old_file":"modules\/tools\/deft\/config.el","new_file":"modules\/tools\/deft\/config.el","old_contents":";;; tools\/deft\/config.el -*- lexical-binding: t; -*-\n\n(def-package! deft\n :commands deft\n :init\n (setq deft-extensions '(\"org\" \"md\" \"tex\" \"txt\")\n deft-default-extension \"org\"\n ;; de-couples filename and note title:\n deft-use-filename-as-title nil\n deft-use-filter-string-for-filename t\n deft-org-mode-title-prefix t\n ;; converts the filter string into a readable file-name using kebab-case:\n deft-file-naming-rules\n '((noslash . \"-\")\n (nospace . \"-\")\n (case-fn . downcase)))\n :config\n ;; start filtering immediately\n (add-hook! 'deft-mode-hook '((evil-insert-state nil)))\n (map! :map deft-mode-map\n :localleader\n :n \"RET\" #'deft-new-file-named\n :n \"a\" #'deft-archive-file\n :n \"c\" #'deft-filter-clear\n :n \"d\" #'deft-delete-file\n :n \"f\" #'deft-find-file\n :n \"g\" #'deft-refresh\n :n \"l\" #'deft-filter\n :n \"n\" #'deft-new-file\n :n \"r\" #'deft-rename-file\n :n \"s\" #'deft-toggle-sort-method\n :n \"t\" #'deft-toggle-incremental-search))\n","new_contents":";;; tools\/deft\/config.el -*- lexical-binding: t; -*-\n\n(def-package! deft\n :commands deft\n :init\n (setq deft-extensions '(\"org\" \"md\" \"tex\" \"txt\")\n deft-default-extension \"org\"\n ;; de-couples filename and note title:\n deft-use-filename-as-title nil\n deft-use-filter-string-for-filename t\n deft-org-mode-title-prefix t\n ;; converts the filter string into a readable file-name using kebab-case:\n deft-file-naming-rules\n '((noslash . \"-\")\n (nospace . \"-\")\n (case-fn . downcase)))\n :config\n ;; start filtering immediately\n (set-evil-initial-state! 'deft-mode 'insert)\n (map! :map deft-mode-map\n :localleader\n :n \"RET\" #'deft-new-file-named\n :n \"a\" #'deft-archive-file\n :n \"c\" #'deft-filter-clear\n :n \"d\" #'deft-delete-file\n :n \"f\" #'deft-find-file\n :n \"g\" #'deft-refresh\n :n \"l\" #'deft-filter\n :n \"n\" #'deft-new-file\n :n \"r\" #'deft-rename-file\n :n \"s\" #'deft-toggle-sort-method\n :n \"t\" #'deft-toggle-incremental-search))\n","subject":"Use set-evil-initial-state! instead of a hook","message":"Use set-evil-initial-state! instead of a hook","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom"} {"commit":"a57e5316541940368ac2135ca54bde9f8772c964","old_file":"emacs.d\/personal\/settings\/multiple-cursors.el","new_file":"emacs.d\/personal\/settings\/multiple-cursors.el","old_contents":"(require 'multiple-cursors)\n\n(smartrep-define-key global-map \"C-l v\" '((\"n\" . 'mc\/mark-next-lines)\n (\"p\" . 'mc\/mark-previous-lines)\n (\">\" . 'mc\/mark-next-like-this)\n (\"<\" . 'mc\/mark-previous-like-this)))\n\n(smartrep-define-key global-map \"C-l C-v\" '((\"C-n\" . 'mc\/mark-next-lines)\n (\"C-p\" . 'mc\/mark-previous-lines)\n (\"C->\" . 'mc\/mark-next-like-this)\n (\"C-<\" . 'mc\/mark-previous-like-this)))\n\n(mapc (lambda (cmd)\n (add-to-list 'mc\/cmds-to-run-for-all cmd))\n '(\n sp--self-insert-command\n ))\n\n(mapc (lambda (cmd)\n (add-to-list 'mc\/cmds-to-run-once cmd))\n '(\n god-mode\n god-mode-all\n god-local-mode\n helm-confirm-and-exit-minibuffer\n split-window-horizontally\n split-window-vertically\n mc\/mark-next-lines\n mc\/mark-next-like-this\n undo-tree-visualizer-quit\n keyboard-escape-quit\n ))\n","new_contents":"(require 'multiple-cursors)\n\n(smartrep-define-key global-map \"C-l v\" '((\"n\" . 'mc\/mark-next-lines)\n (\"p\" . 'mc\/mark-previous-lines)\n (\">\" . 'mc\/mark-next-like-this)\n (\"<\" . 'mc\/mark-previous-like-this)))\n\n(smartrep-define-key global-map \"C-l C-v\" '((\"C-n\" . 'mc\/mark-next-lines)\n (\"C-p\" . 'mc\/mark-previous-lines)\n (\"C->\" . 'mc\/mark-next-like-this)\n (\"C-<\" . 'mc\/mark-previous-like-this)))\n\n(mapc (lambda (cmd)\n (add-to-list 'mc\/cmds-to-run-for-all cmd))\n '(\n sp--self-insert-command\n god-mode-self-insert\n ))\n\n(mapc (lambda (cmd)\n (add-to-list 'mc\/cmds-to-run-once cmd))\n '(\n god-mode\n god-mode-all\n god-local-mode\n helm-confirm-and-exit-minibuffer\n split-window-horizontally\n split-window-vertically\n mc\/mark-next-lines\n mc\/mark-next-like-this\n undo-tree-visualizer-quit\n undo-tree-visualize\n keyboard-escape-quit\n ))\n","subject":"Add some functions to the multiple cursors lists","message":"Add some functions to the multiple cursors lists\n","lang":"Emacs Lisp","license":"mit","repos":"caleb\/dotfiles,caleb\/dotfiles,caleb\/dotfiles"} {"commit":"e6192e9e662ba161fd95a32e8fda8a2bc87863f8","old_file":"elisp\/setup-help.el","new_file":"elisp\/setup-help.el","old_contents":";;; setup-help.el --- Help enhancements.\n;;; Commentary:\n;;; Code:\n\n;; I use `describe-face' quite often, I'd really like a key for it\n(define-key help-map (kbd \"C-f\") nil)\n(define-key help-map (kbd \"C-f\") #'counsel-describe-face)\n\n;; Command-log is useful sometimes, but let's not autoinstall as it\n;; will only slow first run time.\n(use-package command-log-mode\n :defer t)\n\n;; which-key seems like a really nice help\n(use-package which-key\n :ensure t\n :config\n (which-key-mode)\n :demand\n :diminish which-key-mode)\n\n(provide 'setup-help)\n;;; setup-help.el ends here\n","new_contents":";;; setup-help.el --- Help enhancements.\n;;; Commentary:\n;;; Code:\n\n;; I use `describe-face' quite often, I'd really like a key for it\n(define-key help-map (kbd \"C-f\") nil)\n(define-key help-map (kbd \"C-f\") #'counsel-describe-face)\n\n;; Move help to leader rather than C-h\n(evil-leader\/set-key \"h\"\n help-map)\n\n;; Command-log is useful sometimes, but let's not autoinstall as it\n;; will only slow first run time.\n(use-package command-log-mode\n :defer t)\n\n;; which-key seems like a really nice help\n(use-package which-key\n :ensure t\n :config\n (which-key-mode)\n :demand\n :diminish which-key-mode)\n\n(provide 'setup-help)\n;;; setup-help.el ends here\n","subject":"Move help-map to SPC h instead of C-h","message":"Move help-map to SPC h instead of C-h\n","lang":"Emacs Lisp","license":"mit","repos":"anachronic\/emacs.d,anachronic\/emacs.d"} {"commit":"bef0554d3a06a4d51eac7d90c1f0bafe2bf1aa89","old_file":"init.el","new_file":"init.el","old_contents":";; Set some variables based on environment\n;; Are we on a mac?\n(setq is-mac (equal system-type 'darwin))\n\n;; Turn off mouse interface early in startup to avoid momentary display\n;;;; Do show menu bar (running as cocoa app)\n;;;; TODO turn of menu bar when running emacs from terminal\n;;(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))\n(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))\n(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))\n\n;; No splash screen\n(setq inhibit-startup-message t)\n\n;; Set up load path\n(add-to-list 'load-path (expand-file-name \"conf\" user-emacs-directory))\n\n(require '_packages)\n(require '_global)\n(require '_appearance)\n(require '_key_bindings)\n\n(require 'theme-park-mode)\n\n;; Functions (load all files in defuns-dir)\n(setq defuns-dir (expand-file-name \"defuns\" user-emacs-directory))\n(dolist (file (directory-files defuns-dir t \"\\\\w+\"))\n (when (file-regular-p file)\n (load file)))\n\n(when is-mac (require '_mac))\n","new_contents":";; Set some variables based on environment\n;; Are we on a mac?\n(setq is-mac (equal system-type 'darwin))\n\n;; Turn off mouse interface early in startup to avoid momentary display\n;;;; Do show menu bar (running as cocoa app)\n;;;; TODO turn of menu bar when running emacs from terminal\n;;(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))\n(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))\n(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))\n\n;; No splash screen\n(setq inhibit-startup-message t)\n\n;; Set up load path\n(setq loadpath-mine (expand-file-name \"conf\" user-emacs-directory))\n(add-to-list 'load-path loadpath-mine)\n\n(require '_packages)\n(require '_global)\n(require '_appearance)\n(require '_key_bindings)\n\n(require 'theme-park-mode)\n\n;; Functions (load all files in defuns-dir)\n(setq defuns-dir (expand-file-name \"defuns\" user-emacs-directory))\n(dolist (file (directory-files defuns-dir t \"\\\\w+\"))\n (when (file-regular-p file)\n (load file)))\n\n(when is-mac (require '_mac))\n","subject":"Use var for load path","message":"Use var for load path\n","lang":"Emacs Lisp","license":"unlicense","repos":"jeroentbt\/.emacs.d"} {"commit":"4a6b10ac53ba76994a3139b07f1a905fe6f561e0","old_file":"layers\/mfa-dired\/packages.el","new_file":"layers\/mfa-dired\/packages.el","old_contents":"(defconst mfa-dired-packages '(dired-narrow))\n\n(defun mfa-dired\/init-dired-narrow ()\n (use-package dired-narrow\n :defer t\n :init\n (spacemacs\/set-leader-keys-for-major-mode 'dired-mode \"\/\" #'dired-narrow)))\n","new_contents":"(defconst mfa-dired-packages '(dired-narrow dired))\n\n(defun mfa-dired\/init-dired-narrow ()\n (use-package dired-narrow\n :defer t\n :init\n (spacemacs\/set-leader-keys-for-major-mode 'dired-mode \"\/\" #'dired-narrow)))\n\n(defun mfa-dired\/post-init-dired ()\n (spacemacs|use-package-add-hook dired\n :post-config\n (evil-define-key 'evilified dired-mode-map\n \"-\" #'dired-up-directory)))\n","subject":"Remove vinegar key binding for directory up to avoid dired buffer being killed","message":"Remove vinegar key binding for directory up to avoid dired buffer being killed\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"ce8c0833c72d4e9d8f69a444826961393cfba5ea","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"((nil . ((projectile-project-compilation-cmd \"npm --no-color --no-progress --no-spin install\")\n (projectile-project-test-cmd \"node bin\/jasmine --no-color\")\n (projectile-project-run-cmd \"node bin\/server.js\"))))\n","new_contents":"((nil . ((pjones-project-compile-cmd \"npm --no-color --no-progress --no-spin install\")\n (pjones-project-test-cmd \"node bin\/jasmine --no-color\")\n (pjones-project-run-cmd \"node bin\/server.js\"))))\n","subject":"Change how Emacs runs various commands for this repo","message":"Change how Emacs runs various commands for this repo\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"rm-training\/advanced-js,rm-training\/advanced-js"} {"commit":"aa49a0f64626969afb56a0722b9d37c5f384debc","old_file":"sample\/prelude-modules.el","new_file":"sample\/prelude-modules.el","old_contents":";;; Uncomment the modules you'd like to use and restart Prelude afterwards\n\n(require 'prelude-ido) ;; Super charges Emacs completion for C-x C-f and more\n;; (require 'prelude-helm) ;; Interface for narrowing and search\n(require 'prelude-company)\n\n(require 'prelude-c)\n;; (require 'prelude-clojure)\n;; (require 'prelude-coffee)\n;; (require 'prelude-common-lisp)\n;; (require 'prelude-css)\n(require 'prelude-emacs-lisp)\n(require 'prelude-erc) ;; Emacs IRC client\n;; (require 'prelude-erlang)\n;; (require 'prelude-haskell)\n(require 'prelude-js)\n;; (require 'prelude-key-chord) ;; Binds useful features to key combinations\n;; (require 'prelude-latex)\n(require 'prelude-lisp)\n;; (require 'prelude-mediawiki)\n(require 'prelude-org) ;; Org-mode helps you keep TODO lists, notes and more\n(require 'prelude-perl)\n;; (require 'prelude-python)\n;; (require 'prelude-ruby)\n;; (require 'prelude-scala)\n(require 'prelude-scheme)\n(require 'prelude-shell)\n;; (require 'prelude-evil)\n;; (require 'prelude-scss)\n;; (require 'prelude-web) ;; Emacs mode for web templates\n(require 'prelude-xml)\n","new_contents":";;; Uncomment the modules you'd like to use and restart Prelude afterwards\n\n;; Emacs IRC client\n(require 'prelude-erc)\n(require 'prelude-ido) ;; Super charges Emacs completion for C-x C-f and more\n;; (require 'prelude-helm) ;; Interface for narrowing and search\n(require 'prelude-company)\n;; (require 'prelude-key-chord) ;; Binds useful features to key combinations\n;; (require 'prelude-mediawiki)\n;; (require 'prelude-evil)\n\n;;; Programming languages support\n(require 'prelude-c)\n;; (require 'prelude-clojure)\n;; (require 'prelude-coffee)\n;; (require 'prelude-common-lisp)\n;; (require 'prelude-css)\n(require 'prelude-emacs-lisp)\n;; (require 'prelude-erlang)\n;; (require 'prelude-haskell)\n(require 'prelude-js)\n;; (require 'prelude-latex)\n(require 'prelude-lisp)\n(require 'prelude-org) ;; Org-mode helps you keep TODO lists, notes and more\n(require 'prelude-perl)\n;; (require 'prelude-python)\n;; (require 'prelude-ruby)\n;; (require 'prelude-scala)\n(require 'prelude-scheme)\n(require 'prelude-shell)\n;; (require 'prelude-scss)\n;; (require 'prelude-web) ;; Emacs mode for web templates\n(require 'prelude-xml)\n","subject":"Reorder a bit default module config","message":"Reorder a bit default module config\n","lang":"Emacs Lisp","license":"mit","repos":"pramukta\/emacs.d,pramukta\/emacs.d,gihankarunarathne\/Nunoboko,blowery\/dot-emacs,oldfartdeveloper\/emacsd,pramukta\/emacs.d"} {"commit":"14e79324ad07183f39bdc2d55f364f010baf6b75","old_file":"emacs\/emacs.d\/my-terminal.el","new_file":"emacs\/emacs.d\/my-terminal.el","old_contents":"(load-theme 'spacemacs-dark)\n(face-spec-set 'hl-line '((t (:background \"color-236\" :inherit nil))))\n\n;; (xterm-mouse-mode)\n","new_contents":"(load-theme 'spacemacs-dark)\n(set-face-background 'lazy-highlight \"#29422d\")\n(face-spec-set 'hl-line '((t (:background \"color-236\" :inherit nil))))\n\n;; (xterm-mouse-mode)\n","subject":"Fix for spacemacs dark theme on terminals","message":"Fix for spacemacs dark theme on terminals\n","lang":"Emacs Lisp","license":"mit","repos":"sri\/dotfiles,sri\/dotfiles,sri\/dotfiles"} {"commit":"486bab7deccc576ffcc937859bc87974c112c78e","old_file":"init-org.el","new_file":"init-org.el","old_contents":"","new_contents":";;; init-org.el --- inits Emacs for Org-mode and writing\n;;\n;; This orgfile is sourced instead of init.el for instances of Emacs dedicated for\n;; writing fiction, papers, or simply org-mode. I prefer to keep this functionality\n;; separate from stock Emacs.\n;;\n;;;\n\n(defconst EMACS-WRITE t)\n\n(defconst narf-theme 'narf-light-theme)\n(defconst narf-default-font (font-spec :family \"Hack\" :size 14))\n(defconst narf-writing-font (font-spec :family \"Deja Sans\" :size 14))\n(set-frame-font narf-default-font)\n\n(let (file-name-handler-alist\n (gc-cons-threshold 169715200))\n (tool-bar-mode -1) ; no toolbar\n\n (load (concat user-emacs-directory \"init-load-path.el\"))\n (load-theme narf-theme t)\n\n (mapc 'require\n `(core ; core\/core.el\n\n core-popup ; taming stray windows\n core-ui ; draw me like one of your French editors\n core-evil ; come to the dark side, we have cookies\n core-editor ; filling the editor-shaped hole in the emacs OS\n core-company ; for the lazy typist\n core-yasnippet ; for the lazier typist\n core-auto-insert ; for the laziest typist\n core-flycheck ; remember that semicolon you forgot?\n core-project ; whose project am I in?\n core-vcs ; version control is a programmer's best friend\n core-helm ; a search engine for life and love\n core-eval ; run code, run.\n core-workgroups ; cure Emacs alzheimers\n\n ;;; Environments\n module-markdown\n module-org\n module-plantuml\n\n ;;; Specific custom functionality\n ;; lib-demo\n ;; lib-writing\n ;; lib-tmux\n ;; lib-crm\n ;; lib-sonicpi\n\n ;;; Key bindings & ex commands\n my-bindings\n my-commands\n ))\n (narf-init))\n\n(setq wg-session-file (expand-file-name \"wg-org-default\" narf-temp-dir))\n\n","subject":"Add basic alternative init file","message":"Add basic alternative init file\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,aminb\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,keoko\/.emacs.d,aminb\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,keoko\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,aminb\/.emacs.d,aminb\/.emacs.d,keoko\/.emacs.d,aminb\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,aminb\/.emacs.d,keoko\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,aminb\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,keoko\/.emacs.d,UndeadKernel\/emacs_doom,keoko\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,aminb\/.emacs.d,keoko\/.emacs.d,keoko\/.emacs.d"} {"commit":"f7625a375bce96f995d27460cbcca14f521263ea","old_file":"topfunky-js.el","new_file":"topfunky-js.el","old_contents":";; DESCRIPTION:\n;; Useful patterns for using the ido menu with Javascript files.\n;;\n;; AUTHOR:\n;; Geoffrey Grosenbach http:\/\/peepcode.com\n;;\n;; Matches things like:\n;;\n;; function bacon() {} \/\/ Standard function\n;; getJSON: function () {} \/\/ Function as a key in a hash\n;; this.post = function () {} \/\/ Instance method in a function\n;;\n;; USAGE:\n;; (require 'topfunky-js)\n\n(setq topfunky-js-imenu-generic-expression\n '((\"Named Function\" \"function\\\\s-+\\\\(\\\\w+\\\\)\\\\s-*(\" 1)\n (\"Hash Method\" \"^\\\\s-*\\\\(\\\\w+\\\\): function (\" 1)\n (\"Instance Method\" \"this\\.\\\\(\\\\w+\\\\) = function (\" 1)\n ))\n\n(add-hook 'javascript-mode-hook\n (lambda ()\n (setq imenu-generic-expression topfunky-js-imenu-generic-expression)))\n\n(provide 'topfunky-js)\n","new_contents":";; DESCRIPTION:\n;; Useful patterns for using the ido menu with Javascript files.\n;;\n;; AUTHOR:\n;; Geoffrey Grosenbach http:\/\/peepcode.com\n;;\n;; Matches things like:\n;;\n;; function bacon() {} \/\/ Standard function\n;; getJSON: function () {} \/\/ Function as a key in a hash\n;; this.post = function () {} \/\/ Instance method in a function\n;;\n;; USAGE:\n;; (require 'topfunky-js)\n\n(setq topfunky-js-imenu-generic-expression\n '((\"Named Function\" \"function\\\\s-+\\\\(\\\\w+\\\\)\\\\s-*(\" 1)\n (\"Hash Method\" \"^\\\\s-*\\\\(\\\\w+\\\\):\\\\s-*function\\\\s-*(\" 1)\n (\"Instance Method\" \"this\\.\\\\(\\\\w+\\\\)\\\\s-*=\\\\s-*function\\\\s-*(\" 1)\n ))\n\n(add-hook 'javascript-mode-hook\n (lambda ()\n (setq imenu-generic-expression topfunky-js-imenu-generic-expression)))\n\n(provide 'topfunky-js)\n","subject":"Make JS function pattern more lenient instead of expecting Crockford style.","message":"Make JS function pattern more lenient instead of expecting Crockford style.\n","lang":"Emacs Lisp","license":"mit","repos":"lstoll\/dotfiles,lstoll\/dotfiles,lstoll\/dotfiles,lstoll\/repo,lstoll\/repo,lstoll\/repo"} {"commit":"f2adc6579fabdd81f02c13be18f2fd57b2416b74","old_file":"dotfiles\/emacs\/.doom.d\/modules\/editor\/open-containing-dir\/config.el","new_file":"dotfiles\/emacs\/.doom.d\/modules\/editor\/open-containing-dir\/config.el","old_contents":"","new_contents":";;; editor\/open-containing-dir\/config.el -*- lexical-binding: t; -*-\n\n(defvar external-file-manager \"xdg-open\"\n \"Process that should be called to open an external file manager.\")\n\n(defun open-containing-dir ()\n \"Open the containing directory of the current buffer in a file manager.\n\nUses the executable `external-file-manager' to call an external file manager.\nIf the current mode is dired, opens the current directory and not its parent.\"\n (interactive)\n (let ((dir (cond\n ((not (buffer-file-name)) nil)\n ((eq major-mode 'dired-mode) (buffer-file-name))\n (t (file-name-directory (buffer-file-name))))))\n (when dir\n (start-process \"external-file-manager\"\n \"*external-file-manager*\"\n external-file-manager dir))))\n\n(map! :leader \"f d\" #'open-containing-dir)\n","subject":"Allow opening external file manager","message":"[emacs] Allow opening external file manager\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"ggazzi\/linux-configs"} {"commit":"c2e1dca062d46bace59e19906123b571b0919c11","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((emacs-lisp-mode\n (bug-reference-url-format . \"https:\/\/github.com\/clojure-emacs\/sayid\/issues\/%s\")\n (bug-reference-bug-regexp . \"#\\\\(?2:[[:digit:]]+\\\\)\")\n (indent-tabs-mode . nil)\n (fill-column . 80)\n (sentence-end-double-space . t)\n (emacs-lisp-docstring-fill-column . 75)\n (checkdoc-symbol-words . (\"top-level\" \"major-mode\" \"macroexpand-all\" \"print-level\" \"print-length\"))\n (checkdoc-package-keywords-flag)\n (checkdoc-arguments-in-order-flag)\n (checkdoc-verb-check-experimental-flag)\n (elisp-lint-indent-specs . ((if-let* . 2)\n (when-let* . 1)\n (let* . defun)\n (nrepl-dbind-response . 2)\n (cider-save-marker . 1)\n (cider-propertize-region . 1)\n (cider-map-repls . 1)\n (cider--jack-in . 1)\n (cider--make-result-overlay . 1)\n ;; need better solution for indenting cl-flet bindings\n (multiline-comment-handler . defun) ;; cl-flet\n (insert-label . defun) ;; cl-flet\n (insert-align-label . defun) ;; cl-flet\n (insert-rect . defun) ;; cl-flet\n (cl-defun . 2)\n (with-parsed-tramp-file-name . 2)\n (thread-first . 1)\n (thread-last . 1))))\n (clojure-mode\n (clojure-indent-style . :always-align)\n (indent-tabs-mode . nil)\n (fill-column . 80)))\n\n;; To use the bug-reference stuff, do:\n;; (add-hook 'text-mode-hook #'bug-reference-mode)\n;; (add-hook 'prog-mode-hook #'bug-reference-prog-mode)\n","subject":"Set some common defaults for emacs-lisp-mode and clojure-mode","message":"Set some common defaults for emacs-lisp-mode and clojure-mode\n\nThis should ensure the code style stays consistent (at least when the\ncontributors are using Emacs).\n","lang":"Emacs Lisp","license":"unknown","repos":"bpiel\/sayid,bpiel\/mem-tracer"} {"commit":"35e2f1788e795531a5be24f4fe9ff61511066557","old_file":"elisp\/tests\/hare-tests.el","new_file":"elisp\/tests\/hare-tests.el","old_contents":"","new_contents":";;; hare-tests.el ---\n\n;; Copyright (c) 2015 Gracjan Polak. All rights reserved.\n\n;; This file is free software; you can redistribute it and\/or modify\n;; it under the terms of the GNU General Public License as published by\n;; the Free Software Foundation; either version 3, or (at your option)\n;; any later version.\n\n;; This file is distributed in the hope that it will be useful,\n;; but WITHOUT ANY WARRANTY; without even the implied warranty of\n;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n;; GNU General Public License for more details.\n\n;; You should have received a copy of the GNU General Public License\n;; along with this program. If not, see .\n\n;;; Code:\n\n(require 'ert)\n(require 'hare)\n\n(ert-deftest loading-test ())\n\n(provide 'hare-tests)\n","subject":"Add first (empty) test case for elisp code","message":"Add first (empty) test case for elisp code\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"SAdams601\/HaRe,RefactoringTools\/HaRe,kmate\/HaRe,RefactoringTools\/HaRe,RefactoringTools\/HaRe,SAdams601\/HaRe,kmate\/HaRe,SAdams601\/HaRe,kmate\/HaRe"} {"commit":"0090dd9494cf00bf4764c003c77c2d6ba4d78bc1","old_file":"modules\/femacs-osx.el","new_file":"modules\/femacs-osx.el","old_contents":"","new_contents":";;; femacs-osx.el --- OS X Specific configuration\n;;\n;; Copyright © 2016 Anurag Mishra\n;;\n;; Author: Anurag Mishra\n;; URL: https:\/\/github.com\/anuragm\/emacs-fast\n;; Version: 1.0.0\n;; Keywords: convenience\n\n;; This file is not part of GNU Emacs.\n\n;;; Commentary:\n\n;; Configures OS X.\n\n;;; License:\n\n;; Copyright (c) 2016 Anurag Mishra\n\n;; Permission is hereby granted, free of charge, to any person obtaining a copy\n;; of this software and associated documentation files (the \"Software\"), to deal\n;; in the Software without restriction, including without limitation the rights\n;; to use, copy, modify, merge, publish, distribute, sublicense, and\/or sell\n;; copies of the Software, and to permit persons to whom the Software is\n;; furnished to do so, subject to the following conditions:\n;;\n;; The above copyright notice and this permission notice shall be included in all\n;; copies or substantial portions of the Software.\n;;\n;; THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n;; SOFTWARE.\n\n;;; Code:\n\n;; Don't delete directly, use Trash\n(setq delete-by-moving-to-trash t)\n\n;; Use system browser\n(setq browse-url-browser-function 'browse-url-default-macosx-browser)\n\n;; Some helper functions.\n(use-package dired-x\n :ensure nil)\n\n(defun finder-here ()\n \"Opens current buffer's directory in Finder.\"\n (interactive)\n (dired-smart-shell-command \"open \\\"$PWD\\\"\" nil nil))\n\n(defun iterm-here ()\n \"Opens current buffer's directory in iTerm.\"\n (interactive)\n (dired-smart-shell-command \"open -a iTerm2 \\\"$PWD\\\"\" nil nil))\n\n;; Use gls for dired mode if installed.\n(when (executable-find \"gls\")\n (setq insert-directory-program (executable-find \"gls\")))\n\n(provide 'femacs-osx)\n;;; femacs-osx.el ends here\n","subject":"Add OS X specific changes","message":"Add OS X specific changes\n","lang":"Emacs Lisp","license":"mit","repos":"anuragm\/emacs-fast"} {"commit":"98faf54947f4d7044b1c0f1467720b13ccdb8b1f","old_file":"custom\/100-exwm.el","new_file":"custom\/100-exwm.el","old_contents":"","new_contents":";; Add paths (not required if EXWM is installed from GNU ELPA)\n(add-to-list 'load-path \"~\/.emacs.d\/elpa\/xelb-0.6\/\")\n(add-to-list 'load-path \"~\/.emacs.d\/elpa\/exwm-0.4\/\")\n(add-to-list 'load-path \"~\/.emacs.d\/elpa\/cl-generic-0.2\/\")\n\n;; Load EXWM\n(require 'exwm)\n(require 'exwm-config)\n(exwm-config-default)\n","subject":"Add a new file for exwm customisations","message":"Add a new file for exwm customisations\n\nEmacs X Windows Manager\n","lang":"Emacs Lisp","license":"mit","repos":"map7\/emacs-config,map7\/emacs-config,map7\/emacs-config"} {"commit":"24901912cd8c23d32e8263467fbdf03f771b6f9c","old_file":"emacs\/lisp\/30-paredit.el","new_file":"emacs\/lisp\/30-paredit.el","old_contents":"","new_contents":"(use-package paredit\n :init\n (progn\n (add-hook 'emacs-lisp-mode-hook 'paredit-mode)\n (add-hook 'eval-expression-minibuffer-setup-hook 'paredit-mode)\n (add-hook 'ielm-mode-hook 'paredit-mode)\n (add-hook 'lisp-mode-hook 'paredit-mode)\n (add-hook 'lisp-interaction-mode-hook 'paredit-mode)\n (add-hook 'scheme-mode-hook 'paredit-mode)))\n","subject":"Enable paredit-mode for lisp-like modes.","message":"Enable paredit-mode for lisp-like modes.\n","lang":"Emacs Lisp","license":"mit","repos":"skk\/dotfiles,skk\/dotfiles"} {"commit":"e41a57f4bb22a4161baf4ec11d9158e0cd7b6d97","old_file":".emacs.d\/.mc-lists.el","new_file":".emacs.d\/.mc-lists.el","old_contents":"","new_contents":";; This file is automatically generated by the multiple-cursors extension.\n;; It keeps track of your preferences for running commands with multiple cursors.\n\n(setq mc\/cmds-to-run-for-all\n '(\n ng\/C-k\n ng\/C-w\n ng\/end\n ng\/home\n ))\n\n(setq mc\/cmds-to-run-once\n '(\n ))\n","subject":"Add multiple cursor run-once run-all file","message":"Add multiple cursor run-once run-all file\n","lang":"Emacs Lisp","license":"mit","repos":"nguerrera\/.dot"} {"commit":"75afc03146f25e50cbb75809625a992bfd842a06","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"","new_contents":";;; Directory Local Variables\n;;; See Info node `(emacs) Directory Variables' for more information.\n\n((nil\n (tab-width . 2)\n (c-file-style . \"swift\")\n (eval .\n (unless (featurep 'swift-mode)\n (load-library\n (concat\n (let ((dlff (dir-locals-find-file default-directory)))\n (if (listp dlff) (car dlff) (file-name-directory dlff)))\n \"utils\/swift-mode\")))))\n (c++mode\n (whitespace-style face lines indentation:space)\n (eval whitespace-mode))\n (swift-mode\n (tab-always-indent t)))\n\n;; Local Variables:\n;; eval: (whitespace-mode -1)\n;; End:\n","subject":"Add project directory local variables for Emacs users","message":"Add project directory local variables for Emacs users\n\nI've been carrying this file around in my working copy for months now;\nit makes sure you have swift-mode loaded for .swift files and sets up\ncc-mode for editing Swift's ObjC++ files in our project's style.\n\nSwift SVN r10641\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"tardieu\/swift,aschwaighofer\/swift,stephentyrone\/swift,karwa\/swift,JaSpa\/swift,frootloops\/swift,manavgabhawala\/swift,therealbnut\/swift,russbishop\/swift,frootloops\/swift,amraboelela\/swift,jopamer\/swift,hooman\/swift,gregomni\/swift,zisko\/swift,modocache\/swift,harlanhaskins\/swift,danielmartin\/swift,deyton\/swift,kstaring\/swift,dduan\/swift,felix91gr\/swift,atrick\/swift,therealbnut\/swift,felix91gr\/swift,khizkhiz\/swift,slavapestov\/swift,cbrentharris\/swift,shajrawi\/swift,khizkhiz\/swift,jtbandes\/swift,jmgc\/swift,sschiau\/swift,johnno1962d\/swift,manavgabhawala\/swift,swiftix\/swift.old,tkremenek\/swift,OscarSwanros\/swift,slavapestov\/swift,parkera\/swift,adrfer\/swift,gribozavr\/swift,djwbrown\/swift,airspeedswift\/swift,KrishMunot\/swift,karwa\/swift,sdulal\/swift,huonw\/swift,nathawes\/swift,tinysun212\/swift-windows,swiftix\/swift.old,emilstahl\/swift,gmilos\/swift,cbrentharris\/swift,gmilos\/swift,xedin\/swift,kentya6\/swift,devincoughlin\/swift,tjw\/swift,karwa\/swift,hooman\/swift,parkera\/swift,nathawes\/swift,arvedviehweger\/swift,dreamsxin\/swift,practicalswift\/swift,gottesmm\/swift,gribozavr\/swift,parkera\/swift,jckarter\/swift,natecook1000\/swift,deyton\/swift,codestergit\/swift,calebd\/swift,ahoppen\/swift,austinzheng\/swift,hooman\/swift,Jnosh\/swift,LeoShimonaka\/swift,jckarter\/swift,gmilos\/swift,emilstahl\/swift,danielmartin\/swift,sdulal\/swift,codestergit\/swift,ken0nek\/swift,devincoughlin\/swift,gribozavr\/swift,tkremenek\/swift,shahmishal\/swift,lorentey\/swift,hughbe\/swift,djwbrown\/swift,OscarSwanros\/swift,CodaFi\/swift,milseman\/swift,brentdax\/swift,khizkhiz\/swift,dduan\/swift,ben-ng\/swift,frootloops\/swift,xwu\/swift,uasys\/swift,tardieu\/swift,allevato\/swift,zisko\/swift,ken0nek\/swift,tinysun212\/swift-windows,adrfer\/swift,gottesmm\/swift,jopamer\/swift,parkera\/swift,tkremenek\/swift,ahoppen\/swift,jckarter\/swift,apple\/swift,MukeshKumarS\/Swift,sschiau\/swift,natecook1000\/swift,rudkx\/swift,dduan\/swift,Ivacker\/swift,danielmartin\/swift,Ivacker\/swift,huonw\/swift,calebd\/swift,CodaFi\/swift,xedin\/swift,mightydeveloper\/swift,jckarter\/swift,practicalswift\/swift,lorentey\/swift,johnno1962d\/swift,stephentyrone\/swift,manavgabhawala\/swift,xwu\/swift,alblue\/swift,xwu\/swift,kusl\/swift,zisko\/swift,huonw\/swift,OscarSwanros\/swift,devincoughlin\/swift,manavgabhawala\/swift,danielmartin\/swift,glessard\/swift,lorentey\/swift,MukeshKumarS\/Swift,nathawes\/swift,OscarSwanros\/swift,arvedviehweger\/swift,IngmarStein\/swift,russbishop\/swift,ben-ng\/swift,ahoppen\/swift,shajrawi\/swift,uasys\/swift,tjw\/swift,roambotics\/swift,felix91gr\/swift,tinysun212\/swift-windows,tardieu\/swift,cbrentharris\/swift,tjw\/swift,djwbrown\/swift,danielmartin\/swift,shajrawi\/swift,swiftix\/swift,devincoughlin\/swift,return\/swift,jmgc\/swift,tjw\/swift,russbishop\/swift,gregomni\/swift,CodaFi\/swift,CodaFi\/swift,jopamer\/swift,swiftix\/swift,LeoShimonaka\/swift,xedin\/swift,xwu\/swift,amraboelela\/swift,jmgc\/swift,johnno1962d\/swift,SwiftAndroid\/swift,KrishMunot\/swift,airspeedswift\/swift,devincoughlin\/swift,felix91gr\/swift,practicalswift\/swift,frootloops\/swift,bitjammer\/swift,devincoughlin\/swift,stephentyrone\/swift,shajrawi\/swift,bitjammer\/swift,kperryua\/swift,Ivacker\/swift,modocache\/swift,amraboelela\/swift,kstaring\/swift,dduan\/swift,natecook1000\/swift,amraboelela\/swift,ken0nek\/swift,mightydeveloper\/swift,parkera\/swift,zisko\/swift,bitjammer\/swift,ben-ng\/swift,brentdax\/swift,calebd\/swift,therealbnut\/swift,emilstahl\/swift,Ivacker\/swift,uasys\/swift,tinysun212\/swift-windows,gregomni\/swift,dduan\/swift,alblue\/swift,kusl\/swift,sdulal\/swift,codestergit\/swift,hughbe\/swift,jckarter\/swift,ken0nek\/swift,airspeedswift\/swift,jtbandes\/swift,milseman\/swift,glessard\/swift,harlanhaskins\/swift,LeoShimonaka\/swift,kusl\/swift,CodaFi\/swift,kentya6\/swift,jtbandes\/swift,benlangmuir\/swift,nathawes\/swift,kperryua\/swift,brentdax\/swift,zisko\/swift,hughbe\/swift,djwbrown\/swift,return\/swift,practicalswift\/swift,swiftix\/swift,harlanhaskins\/swift,atrick\/swift,shajrawi\/swift,SwiftAndroid\/swift,austinzheng\/swift,gottesmm\/swift,kentya6\/swift,Jnosh\/swift,kentya6\/swift,bitjammer\/swift,SwiftAndroid\/swift,adrfer\/swift,apple\/swift,allevato\/swift,lorentey\/swift,MukeshKumarS\/Swift,djwbrown\/swift,roambotics\/swift,slavapestov\/swift,lorentey\/swift,sschiau\/swift,JaSpa\/swift,gribozavr\/swift,KrishMunot\/swift,Jnosh\/swift,adrfer\/swift,cbrentharris\/swift,emilstahl\/swift,ahoppen\/swift,swiftix\/swift,karwa\/swift,CodaFi\/swift,shahmishal\/swift,alblue\/swift,JGiola\/swift,modocache\/swift,tkremenek\/swift,gribozavr\/swift,parkera\/swift,amraboelela\/swift,shajrawi\/swift,jckarter\/swift,MukeshKumarS\/Swift,sdulal\/swift,alblue\/swift,mightydeveloper\/swift,gregomni\/swift,tjw\/swift,aschwaighofer\/swift,stephentyrone\/swift,kusl\/swift,frootloops\/swift,JGiola\/swift,milseman\/swift,stephentyrone\/swift,felix91gr\/swift,deyton\/swift,mightydeveloper\/swift,return\/swift,huonw\/swift,xwu\/swift,codestergit\/swift,return\/swift,kentya6\/swift,jtbandes\/swift,johnno1962d\/swift,kperryua\/swift,slavapestov\/swift,KrishMunot\/swift,LeoShimonaka\/swift,ben-ng\/swift,roambotics\/swift,sdulal\/swift,arvedviehweger\/swift,zisko\/swift,bitjammer\/swift,bitjammer\/swift,cbrentharris\/swift,natecook1000\/swift,glessard\/swift,kentya6\/swift,shahmishal\/swift,jmgc\/swift,alblue\/swift,IngmarStein\/swift,zisko\/swift,LeoShimonaka\/swift,kstaring\/swift,allevato\/swift,tkremenek\/swift,alblue\/swift,kusl\/swift,gmilos\/swift,cbrentharris\/swift,austinzheng\/swift,milseman\/swift,gregomni\/swift,sschiau\/swift,return\/swift,tjw\/swift,practicalswift\/swift,modocache\/swift,hooman\/swift,apple\/swift,jopamer\/swift,karwa\/swift,modocache\/swift,xedin\/swift,therealbnut\/swift,dreamsxin\/swift,milseman\/swift,hughbe\/swift,kperryua\/swift,calebd\/swift,deyton\/swift,LeoShimonaka\/swift,SwiftAndroid\/swift,KrishMunot\/swift,uasys\/swift,hughbe\/swift,kentya6\/swift,allevato\/swift,johnno1962d\/swift,harlanhaskins\/swift,glessard\/swift,bitjammer\/swift,arvedviehweger\/swift,austinzheng\/swift,uasys\/swift,emilstahl\/swift,kstaring\/swift,allevato\/swift,hooman\/swift,ken0nek\/swift,MukeshKumarS\/Swift,airspeedswift\/swift,austinzheng\/swift,MukeshKumarS\/Swift,xedin\/swift,danielmartin\/swift,djwbrown\/swift,atrick\/swift,karwa\/swift,harlanhaskins\/swift,allevato\/swift,harlanhaskins\/swift,atrick\/swift,gottesmm\/swift,jtbandes\/swift,roambotics\/swift,amraboelela\/swift,jtbandes\/swift,Ivacker\/swift,slavapestov\/swift,manavgabhawala\/swift,karwa\/swift,khizkhiz\/swift,gottesmm\/swift,jmgc\/swift,hughbe\/swift,swiftix\/swift.old,natecook1000\/swift,kusl\/swift,CodaFi\/swift,sdulal\/swift,codestergit\/swift,mightydeveloper\/swift,kstaring\/swift,gottesmm\/swift,tardieu\/swift,Ivacker\/swift,amraboelela\/swift,gregomni\/swift,practicalswift\/swift,shahmishal\/swift,glessard\/swift,felix91gr\/swift,modocache\/swift,benlangmuir\/swift,mightydeveloper\/swift,emilstahl\/swift,gribozavr\/swift,rudkx\/swift,devincoughlin\/swift,OscarSwanros\/swift,LeoShimonaka\/swift,aschwaighofer\/swift,huonw\/swift,milseman\/swift,lorentey\/swift,russbishop\/swift,gmilos\/swift,kperryua\/swift,swiftix\/swift.old,rudkx\/swift,hughbe\/swift,tinysun212\/swift-windows,tinysun212\/swift-windows,brentdax\/swift,sdulal\/swift,tkremenek\/swift,KrishMunot\/swift,LeoShimonaka\/swift,cbrentharris\/swift,sschiau\/swift,modocache\/swift,sschiau\/swift,nathawes\/swift,IngmarStein\/swift,aschwaighofer\/swift,shajrawi\/swift,apple\/swift,arvedviehweger\/swift,practicalswift\/swift,roambotics\/swift,rudkx\/swift,codestergit\/swift,therealbnut\/swift,devincoughlin\/swift,gottesmm\/swift,OscarSwanros\/swift,IngmarStein\/swift,JaSpa\/swift,SwiftAndroid\/swift,nathawes\/swift,uasys\/swift,swiftix\/swift,brentdax\/swift,gmilos\/swift,roambotics\/swift,parkera\/swift,gribozavr\/swift,cbrentharris\/swift,xwu\/swift,aschwaighofer\/swift,aschwaighofer\/swift,return\/swift,swiftix\/swift.old,ken0nek\/swift,Jnosh\/swift,swiftix\/swift.old,Jnosh\/swift,slavapestov\/swift,gribozavr\/swift,harlanhaskins\/swift,kusl\/swift,adrfer\/swift,codestergit\/swift,ahoppen\/swift,jmgc\/swift,ken0nek\/swift,airspeedswift\/swift,natecook1000\/swift,arvedviehweger\/swift,kperryua\/swift,allevato\/swift,arvedviehweger\/swift,mightydeveloper\/swift,calebd\/swift,jtbandes\/swift,swiftix\/swift.old,xedin\/swift,atrick\/swift,Ivacker\/swift,JGiola\/swift,uasys\/swift,manavgabhawala\/swift,emilstahl\/swift,swiftix\/swift,MukeshKumarS\/Swift,kstaring\/swift,JaSpa\/swift,natecook1000\/swift,deyton\/swift,djwbrown\/swift,mightydeveloper\/swift,Jnosh\/swift,felix91gr\/swift,ben-ng\/swift,dduan\/swift,glessard\/swift,huonw\/swift,deyton\/swift,brentdax\/swift,slavapestov\/swift,tardieu\/swift,shahmishal\/swift,IngmarStein\/swift,sdulal\/swift,ben-ng\/swift,return\/swift,frootloops\/swift,deyton\/swift,tardieu\/swift,benlangmuir\/swift,JGiola\/swift,JaSpa\/swift,dduan\/swift,OscarSwanros\/swift,lorentey\/swift,SwiftAndroid\/swift,benlangmuir\/swift,SwiftAndroid\/swift,apple\/swift,atrick\/swift,airspeedswift\/swift,Jnosh\/swift,aschwaighofer\/swift,sschiau\/swift,karwa\/swift,calebd\/swift,tjw\/swift,danielmartin\/swift,kentya6\/swift,adrfer\/swift,jmgc\/swift,ahoppen\/swift,IngmarStein\/swift,stephentyrone\/swift,shahmishal\/swift,tinysun212\/swift-windows,sschiau\/swift,tkremenek\/swift,JGiola\/swift,therealbnut\/swift,shahmishal\/swift,russbishop\/swift,khizkhiz\/swift,emilstahl\/swift,johnno1962d\/swift,rudkx\/swift,hooman\/swift,therealbnut\/swift,Ivacker\/swift,brentdax\/swift,jopamer\/swift,KrishMunot\/swift,xwu\/swift,IngmarStein\/swift,johnno1962d\/swift,rudkx\/swift,khizkhiz\/swift,ben-ng\/swift,practicalswift\/swift,adrfer\/swift,kperryua\/swift,calebd\/swift,jopamer\/swift,frootloops\/swift,airspeedswift\/swift,tardieu\/swift,shajrawi\/swift,khizkhiz\/swift,nathawes\/swift,austinzheng\/swift,hooman\/swift,JGiola\/swift,kusl\/swift,xedin\/swift,alblue\/swift,manavgabhawala\/swift,swiftix\/swift,jopamer\/swift,kstaring\/swift,JaSpa\/swift,russbishop\/swift,huonw\/swift,russbishop\/swift,gmilos\/swift,benlangmuir\/swift,benlangmuir\/swift,lorentey\/swift,austinzheng\/swift,jckarter\/swift,parkera\/swift,swiftix\/swift.old,apple\/swift,stephentyrone\/swift,JaSpa\/swift,shahmishal\/swift,xedin\/swift,milseman\/swift"} {"commit":"2c92b986600a081566235a989693c0bc0946e800","old_file":"modules\/lang\/femacs-python.el","new_file":"modules\/lang\/femacs-python.el","old_contents":"","new_contents":";;; femacs-python.el --- Support for Python programming\n;;\n;; Copyright © 2018 Anurag Mishra\n;;\n;; Author: Anurag Mishra\n;; URL: https:\/\/github.com\/anuragm\/emacs-fast\n;; Version: 1.0.0\n;; Keywords: convenience\n\n;; This file is not part of GNU Emacs.\n\n;;; Commentary:\n\n;; Adds support for Python programming language using auto completion, REPL, etc.\n\n;;; License:\n\n;; Copyright (c) 2018 Anurag Mishra\n\n;; Permission is hereby granted, free of charge, to any person obtaining a copy\n;; of this software and associated documentation files (the \"Software\"), to deal\n;; in the Software without restriction, including without limitation the rights\n;; to use, copy, modify, merge, publish, distribute, sublicense, and\/or sell\n;; copies of the Software, and to permit persons to whom the Software is\n;; furnished to do so, subject to the following conditions:\n;;\n;; The above copyright notice and this permission notice shall be included in all\n;; copies or substantial portions of the Software.\n;;\n;; THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n;; SOFTWARE.\n\n;;; Code:\n\n(defun femacs\/ein-mode-hook()\n \"Custom setup for EIN mode.\"\n (setq-local fill-column 90)\n (auto-fill-mode)\n (whitespace-mode))\n\n;; Add iPython support\n;; Ensure that iPython and Jupyter binaries are in Emacs path.\n(use-package ein\n :ensure t\n :diminish ein:notebook-mode\n :init\n (setq ein:completion-backend 'ein:use-company-backend)\n (add-hook 'ein:notebook-multilang-mode-hook #'femacs\/ein-mode-hook)\n :commands\n (ein:jupyter-server-start ein:notebooklist-login))\n\n(defun femacs\/python-mode-hook()\n \"Custom bindings for python mode.\"\n (setq-local fill-column 90)\n (nlinum-mode)\n (auto-fill-mode)\n (company-mode)\n (whitespace-mode)\n (dtrt-indent-mode))\n\n(add-hook 'python-mode-hook #'femacs\/python-mode-hook)\n\n(provide 'femacs-python)\n;;; femacs-python.el ends here\n","subject":"Add support for Python and Jupyter","message":"Add support for Python and Jupyter\n","lang":"Emacs Lisp","license":"mit","repos":"anuragm\/emacs-fast"} {"commit":"3c412ad35c77674631cee5ff81a4549f55eefc8a","old_file":"elfeed-link.el","new_file":"elfeed-link.el","old_contents":"","new_contents":";;; elfeed-link.el --- misc functions for elfeed -*- lexical-binding: t; -*-\n\n;; This is free and unencumbered software released into the public domain.\n\n;;; Commentary:\n\n;; Code for integration with org-mode.\n\n;; To use, add (require 'elfeed-link) somewhere in your configuration.\n\n;;; Code:\n\n(require 'elfeed-db)\n(require 'elfeed-show)\n(require 'elfeed-search)\n\n(require 'org)\n\n(defun elfeed-link-store-link ()\n \"Store a link to an elfeed search or entry buffer.\n\nWhen storing a link to an entry, automatically extract all the\nentry metadata. These can be used in the capture templates as\n%:elfeed-entry-. See `elfeed-entry--create' for the list\nof available props.\"\n (cond ((derived-mode-p 'elfeed-search-mode)\n (org-store-link-props\n :type \"elfeed\"\n :link (format \"elfeed:%s\" elfeed-search-filter)\n :description elfeed-search-filter))\n ((derived-mode-p 'elfeed-show-mode)\n (apply\n 'org-store-link-props\n :type \"elfeed\"\n :link (format \"elfeed:%s#%s\"\n (car (elfeed-entry-id elfeed-show-entry))\n (cdr (elfeed-entry-id elfeed-show-entry)))\n :description (elfeed-entry-title elfeed-show-entry)\n (cl-loop for (prop) in (cdr (plist-get\n (symbol-plist 'elfeed-entry)\n 'cl-struct-slots))\n nconc (list\n (intern (concat \":elfeed-entry-\" (symbol-name prop)))\n (funcall\n (intern (concat \"elfeed-entry-\" (symbol-name prop)))\n elfeed-show-entry)))))))\n\n(defun elfeed-link-open (filter-or-id)\n \"Jump to an elfeed entry or search.\n\nDepending on what FILTER-OR-ID looks like, we jump to either\nsearch buffer or show a concrete entry.\"\n (if (string-match \"\\\\([^#]+\\\\)#\\\\(.+\\\\)\" filter-or-id)\n (elfeed-show-entry (elfeed-db-get-entry\n (cons (match-string 1 filter-or-id)\n (match-string 2 filter-or-id))))\n (switch-to-buffer (elfeed-search-buffer))\n (unless (eq major-mode 'elfeed-search-mode)\n (elfeed-search-mode))\n (elfeed-search-set-filter filter-or-id)))\n\n;;;###autoload\n(eval-after-load 'org\n '(if (version< (org-version) \"9.0\")\n (progn\n (org-add-link-type \"elfeed\" #'elfeed-link-open)\n (add-hook 'org-store-link-functions #'elfeed-link-store-link))\n (org-link-set-parameters\n \"elfeed\"\n :follow #'elfeed-link-open\n :store #'elfeed-link-store-link)))\n\n(provide 'elfeed-link)\n\n;;; elfeed-link.el ends here\n","subject":"Add support for org links.","message":"Add support for org links.\n","lang":"Emacs Lisp","license":"unlicense","repos":"skeeto\/elfeed,seblemaguer\/elfeed,skeeto\/elfeed,emacsmirror\/elfeed,seblemaguer\/elfeed,emacsmirror\/elfeed"} {"commit":"29c0d49da0c8ac453bf850de94dfe7aed9e9f6a6","old_file":"el\/connect-is.el","new_file":"el\/connect-is.el","old_contents":"","new_contents":";; -*-no-byte-compile: t; -*-\n\n(defun connect-is(host port)\n (interactive \"sHost: \\nnPort: \")\n (telnet host port)\n (let* ((buf (current-buffer))\n\t (state :start)\n\t (proc (get-buffer-process buf)))\n (when proc\n (telnet-simple-send proc \"TELNET\"))\n ;;search for CL-USER(2) before sending data\n (while (not (eq state :done))\n (cond ((and (search-backward \"CL-USER(2):\" (line-beginning-position) t)\n\t\t (eq state :start))\n\t (setq state :end)\n\t (telnet-simple-send proc \"(ignore-errors (let ((file (system:make-temp-file-name))) (when (excl:new-start-emacs-lisp-interface :port nil :announce-to-file file) (loop (when (probe-file file) (return))) (let ((in (open file :if-does-not-exist nil))) (when in (loop for line = (read-line in nil) while line do (format t \\\"~a~%\\\" line)) (close in))) (delete-file file))))\"))\n\t ((search-backward \"CL-USER(3):\" (line-beginning-position) t)\n\t (telnet-simple-send proc \"(:exit-telnet)\")\n\t (setq state :done))\n\t (t\n\t (accept-process-output proc 0.5))))\n ;;Answer we look for is after CL-USER(2)\n (when (search-backward \"CL-USER(2):\" nil t) \n (forward-line 1)\n (let ((data (buffer-substring-no-properties (line-beginning-position) (line-end-position)))\n\t (file (make-temp-file \"isconnect\")))\n\t(with-temp-buffer \n\t ;;write data to a temp file and start emacs lisp interface\n\t (insert data)\n\t (write-region (point-min) (point-max) file)\n\t (fi:start-interface-via-file host \"*common-lisp*\" file))\n\t(delete-file file)\t\n\t(kill-buffer buf)))))\n","subject":"Connect to a running IS","message":"Connect to a running IS\n","lang":"Emacs Lisp","license":"mit","repos":"Planisware\/plw-devenv,Planisware\/plw-devenv"} {"commit":"a739118e96872ee7c8eaa314940cdbea69404a40","old_file":"layers\/tramp-custom\/tramp-init.el","new_file":"layers\/tramp-custom\/tramp-init.el","old_contents":"","new_contents":"(use-package tramp\n :init (setq tramp-ssh-controlmaster-options\n \"-o ControlMaster=auto -o ControlPath='tramp.%%C' -o ControlPersist=no\"))\n(provide 'tramp-init)\n","subject":"Remove ox-wk as it seems broken. Add Tramp init as it is now needed for ssh changes.","message":"Remove ox-wk as it seems broken. Add Tramp init as it is now needed for ssh changes.\n","lang":"Emacs Lisp","license":"mit","repos":"timotheosh\/dotemacs"} {"commit":"3bf15baaf40e0440d11c0709b20618ae414b99a8","old_file":"init-package\/init-google-translate.el","new_file":"init-package\/init-google-translate.el","old_contents":"","new_contents":"(require 'google-translate)\n(setq google-translate-enable-ido-completion t)\n(setq google-translate-default-source-language \"En\")\n(setq google-translate-default-target-language \"Fr\")\n","subject":"Add google translate init file","message":"Add google translate init file\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"a9903883e987c6c68091421f5947a82fa7eb548a","old_file":"home\/.emacs.d\/personal\/personal-org.el","new_file":"home\/.emacs.d\/personal\/personal-org.el","old_contents":"","new_contents":"(defun personal-org-mode-defaults ()\n (setq org-alphabetical-lists t))\n\n(add-hook 'org-mode-hook 'personal-org-mode-defaults)\n\n(provide 'personal-org)\n","subject":"Allow alphabetical lists in org-mode","message":"Allow alphabetical lists in org-mode\n","lang":"Emacs Lisp","license":"mit","repos":"marknsikora\/dotfiles"} {"commit":"eaa588dfaf02a9d14f339461bb7091b3b67d36a0","old_file":"packages.d\/init-auto-complete.el","new_file":"packages.d\/init-auto-complete.el","old_contents":"(add-to-list 'ac-dictionary-directories \"~\/.emacs.d\/ac-dict\")\n(require 'auto-complete-config)\n(ac-config-default)\n\n(define-key ac-mode-map (kbd \"M-TAB\") 'auto-complete)\n","new_contents":"(require 'auto-complete-config)\n(ac-config-default)\n(add-to-list 'ac-dictionary-directories \"~\/.emacs.d\/ac-dict\")\n\n(define-key ac-mode-map (kbd \"M-TAB\") 'auto-complete)\n","subject":"Fix order issue for AC setup","message":"Fix order issue for AC setup\n","lang":"Emacs Lisp","license":"mit","repos":"lstoll\/dotfiles,lstoll\/repo,lstoll\/dotfiles,lstoll\/dotfiles,lstoll\/repo,lstoll\/repo"} {"commit":"6db095e2aadd7a0e8ec958bf370dcbb5eb61f640","old_file":"mocha.el","new_file":"mocha.el","old_contents":"","new_contents":";;; Package --- Summary:\n\n;;; Summary:\n\n;;; Commentary:\n\n;;; Code:\n(defvar mocha-command \"mocha\")\n\n(defvar mocha-environment-variables nil)\n\n(defvar mocha-reporter \"dot\")\n\n(defvar mocha-options nil)\n\n(defvar mocha-project-test-directory nil)\n\n(defun mocha-test-project ()\n \"Test the current project.\"\n nil)\n\n(defun mocha-test-file ()\n \"Test the current file.\"\n nil)\n\n(defun mocha-test-at-point ()\n \"Test the current innermost 'it' or 'describe' or the file if none is found.\"\n nil)\n\n(provide 'mocha)\n;;; mocha.el ends here\n","subject":"Add file and spike out basic interface.","message":"Add file and spike out basic interface.\n","lang":"Emacs Lisp","license":"mit","repos":"scottaj\/mocha.el"} {"commit":"5af6d64a7809d6b9dccc3a14ad920a70671b45df","old_file":"elisp\/runfiles\/test-lib.el","new_file":"elisp\/runfiles\/test-lib.el","old_contents":"","new_contents":";;; test-lib.el --- test library for runfiles test -*- lexical-binding: t; -*-\n\n;; Copyright 2021 Google LLC\n;;\n;; Licensed under the Apache License, Version 2.0 (the \"License\");\n;; you may not use this file except in compliance with the License.\n;; You may obtain a copy of the License at\n;;\n;; https:\/\/www.apache.org\/licenses\/LICENSE-2.0\n;;\n;; Unless required by applicable law or agreed to in writing, software\n;; distributed under the License is distributed on an \"AS IS\" BASIS,\n;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n;; See the License for the specific language governing permissions and\n;; limitations under the License.\n\n;;; Commentary:\n\n;; Test library for \/\/elisp\/runfiles:runfiles_test.\n\n;;; Code:\n\n(provide 'elisp\/runfiles\/test-lib)\n;;; test-lib.el ends here\n","subject":"Check in forgotten test data file","message":"Check in forgotten test data file\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp,phst\/rules_elisp"} {"commit":"d9e3f4ccd6e7c06ad6d2d18cc2daf18b2e343770","old_file":"modules\/lang\/femacs-elisp.el","new_file":"modules\/lang\/femacs-elisp.el","old_contents":"","new_contents":";;; femacs-elisp.el --- Support for editing Emacs lisp files.\n;;\n;; Copyright © 2016 Anurag Mishra\n;;\n;; Author: Anurag Mishra\n;; URL: https:\/\/github.com\/anuragm\/emacs-fast\n;; Version: 1.0.0\n;; Keywords: convenience\n\n;; This file is not part of GNU Emacs.\n\n;;; Commentary:\n\n;; Adds useful modes and enables fly-check\n\n;;; License:\n\n;; Copyright (c) 2016 Anurag Mishra\n\n;; This program is free software: you can redistribute it and\/or modify\n;; it under the terms of the GNU General Public License as published by\n;; the Free Software Foundation, either version 2 of the License, or\n;; (at your option) any later version.\n;;\n;; This program is distributed in the hope that it will be useful,\n;; but WITHOUT ANY WARRANTY; without even the implied warranty of\n;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n;; GNU General Public License for more details.\n;;\n;; You should have received a copy of the GNU General Public License\n;; along with this program. If not, see .\n\n;;; Code:\n\n;; CAUTION : Set variables first before loading modes.\n(add-hook\n 'emacs-lisp-mode-hook\n '(lambda ()\n (unless (string= \"*scratch*\" (buffer-name))\n (setq-local fill-column 90)\n (setq-local whitespace-line-column 90)\n (auto-fill-mode)\n (flycheck-mode 1)\n (yas-minor-mode 1)\n (whitespace-mode)\n (nlinum-mode 1)\n (company-mode)\n (eldoc-mode))))\n\n(provide 'femacs-elisp)\n;;; femacs-elisp.el ends here\n","subject":"Add support for Emacs lisp mode","message":"Add support for Emacs lisp mode\n","lang":"Emacs Lisp","license":"mit","repos":"anuragm\/emacs-fast"} {"commit":"4574ab603e82958c49fb24d6b2ed04a9300d3c87","old_file":"emacs\/improviz-mode.el","new_file":"emacs\/improviz-mode.el","old_contents":"","new_contents":"(defvar improviz-mode-hook nil)\n\n;;;###autoload\n(add-to-list 'auto-mode-alist '(\"\\\\.pz\\\\'\" . improviz-mode))\n\n(defun improviz-mode ()\n \"Major mode for Improviz editing\"\n (interactive)\n (general-nvmap\n :prefix \",\"\n \"e\" 'send-improviz-program\n ))\n\n(defun send-improviz-program ()\n (interactive)\n (request\n \"http:\/\/localhost:3000\/read\"\n :type \"POST\"\n :data (buffer-string)\n :parser 'json-read\n :success (function*\n (lambda ()\n (message \"Sent program\"))))\n )\n\n(provide 'improviz)\n","subject":"Add basic emacs mode to use for sending stuff","message":"Add basic emacs mode to use for sending stuff\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"rumblesan\/improviz,rumblesan\/improviz"} {"commit":"de8d504faf5ec22d8d25086d4ccfd9824492a297","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"","new_contents":";;; Directory Local Variables\n;;; See Info node `(emacs) Directory Variables' for more information.\n\n((emacs-lisp-mode\n (sentence-end-double-space . t)\n (eval flycheck-mode)\n (eval checkdoc-minor-mode)))\n\n;; Local Variables:\n;; mode: fundamental\n;; End:\n","subject":"Configure some variables in emacs-lisp-mode","message":"Configure some variables in emacs-lisp-mode\n","lang":"Emacs Lisp","license":"mit","repos":"emacsmirror\/pillar"} {"commit":"29ad7e3bb82a411af83afecd68c8d0386ff30b73","old_file":"user-lisp\/makefile-customisations.el","new_file":"user-lisp\/makefile-customisations.el","old_contents":"","new_contents":"(require 'make-mode)\n\n(define-key makefile-mode-map (kbd \"M-n\") #'highlight-symbol-next)\n(define-key makefile-mode-map (kbd \"M-p\") #'highlight-symbol-next)\n","subject":"Use my usual highlight-symbol keybindings in Makefiles.","message":"Use my usual highlight-symbol keybindings in Makefiles.\n","lang":"Emacs Lisp","license":"mit","repos":"Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d,Wilfred\/.emacs.d"} {"commit":"d6c1fb340c8377c78d2e74be94a9006dc2d98572","old_file":"users\/fimasvee\/my-defuns.el","new_file":"users\/fimasvee\/my-defuns.el","old_contents":"","new_contents":"(defun wte--unique-filename (stub &optional index)\n (setq index (or index 1))\n (let ((filename (concat \"~\/projects\/what-the-emacsd\/posts\/\"\n stub\n \".el\"\n (if (< index 10) \"-0\" \"-\")\n (number-to-string index)\n \".html\")))\n (if (file-exists-p filename)\n (wte--unique-filename stub (1+ index))\n filename)))\n\n(defun what-the-emacsd-post (beg end)\n (interactive \"r\")\n (let ((example (with-current-buffer (htmlize-region beg end)\n (search-forward \"
    \")\n                    (setq beg (point))\n                    (search-forward \"<\/pre>\")\n                    (forward-char -7)\n                    (buffer-substring beg (point))))\n         (filename (wte--unique-filename (buffer-file-name-body))))\n    (find-file filename)\n    (insert (format \"

    <\/p>\n\n\n\n

    %s<\/pre>\n\n\n\n

    <\/p>\n\" example))\n (goto-char 4)))\n\n(provide 'my-defuns)\n","subject":"Add defun to create new what-the-emacsd blogpost","message":"Add defun to create new what-the-emacsd blogpost\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d,AlejandroCatalina\/emacs.d"} {"commit":"af7450cd0e5c09eb381f5b6a8ee48c85ba907ecb","old_file":"modules\/lang\/latex\/+latexmk.el","new_file":"modules\/lang\/latex\/+latexmk.el","old_contents":"","new_contents":";;; lang\/latex\/+latexmk.el -*- lexical-binding: t; -*-\n;;;###if (featurep! +latexmk)\n\n(def-package! auctex-latexmk\n :after-call (latex-mode-hook LaTeX-mode-hook)\n :init\n ;; Pass the -pdf flag when TeX-PDF-mode is active\n (setq auctex-latexmk-inherit-TeX-PDF-mode t)\n ;; Set LatexMk as the default\n (setq-hook! LaTeX-mode TeX-command-default \"LatexMk\")\n :config\n ;; Add latexmk as a TeX target\n (auctex-latexmk-setup))\n","subject":"Move latexmk setup into seperate file","message":"Move latexmk setup into seperate file\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d"} {"commit":"b1699e0cb7e6522835031d4b6ca6db032177e338","old_file":"emacs.d\/elisp\/terminal_mode.el","new_file":"emacs.d\/elisp\/terminal_mode.el","old_contents":"","new_contents":";;; Backup files\n(setq make-backup-files nil) ; stop creating backup~ files\n(setq auto-save-default nil) ; stop creating #autosave# files\n\n;;; Enable matching parenthesis\n(show-paren-mode)\n\n;;; Open all files in read-only mode\n(add-hook 'find-file-hook\n '(lambda ()\n (when (and (buffer-file-name)\n (file-exists-p (buffer-file-name))\n (file-writable-p (buffer-file-name)))\n (message \"Toggle to read-only for existing file\")\n (toggle-read-only 1))))\n\n\n;;; Keyboard bindings\n(global-set-key (kbd \"C-x %\") 'split-window-horizontally)\n(global-set-key (kbd \"C-x \\\"\") 'split-window-vertically)\n","subject":"Add customizations to start emacs in terminal mode","message":"Add customizations to start emacs in terminal mode\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"raghavkarol\/dotfiles,raghavkarol\/dotfiles,raghavkarol\/dotfiles,raghavkarol\/dotfiles,raghavkarol\/dotfiles,raghavkarol\/dotfiles,raghavkarol\/dotfiles"} {"commit":"03d42b0c5a81990a4444228e0e1fd33e0f252129","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((cider-repl-mode\n (cider-refresh-before-fn . \"comic-reader.system\/stop\"))\n (clojure-mode\n (cider-refresh-before-fn . \"comic-reader.system\/stop\")))\n","subject":"Add emacs dir local variables for refreshing","message":"Add emacs dir local variables for refreshing\n","lang":"Emacs Lisp","license":"epl-1.0","repos":"RadicalZephyr\/comic-reader,RadicalZephyr\/comic-reader"} {"commit":"2186f726f64aedaf9a0eb848d8fafebf28548ff6","old_file":"init-haml.el","new_file":"init-haml.el","old_contents":"","new_contents":"(add-auto-mode 'haml-mode \"\\.haml$\")\n(add-auto-mode 'sass-mode \"\\.sass$\")\n(autoload 'haml-mode \"haml-mode\" \"Mode for editing haml files\" t)\n(autoload 'sass-mode \"sass-mode\" \"Mode for editing sass files\" t)\n\n(require 'flymake-haml)\n(add-hook 'haml-mode-hook 'flymake-haml-load)\n(add-hook 'sass-mode-hook 'flymake-sass-load)\n\n(add-hook 'sass-mode-hook 'ac-css-keywords-setup)\n\n\n(provide 'init-haml)","subject":"Add new init file for haml\/sass","message":"Add new init file for haml\/sass\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"jthetzel\/emacs.d,Jadecity\/PurcellEmacs.d,YangXin\/emacs.d,ruiyang\/emacs.d,exclamaforte\/emacs.d,dongdonghu\/.emacs.d,Shanicky\/emacs.d,haodaivshen\/emacs.d,alant\/emacs.d,bibaijin\/emacs.d,pairyo\/emacs.d,carlosliu\/emacs.d,zuoshifan\/emacs.d,cyjia\/emacs.d,lromang\/emacs.d,arthurl\/emacs.d,gsmlg\/emacs.d,baohaojun\/emacs.d,jhpx\/emacs.d,ernest-dzf\/emacs.d,LKI\/emacs.d,zuoshifan\/emacs.d,blueseason\/emacs.d,roxolan\/emacs.d,farzadbekran\/emacs.d,wegatron\/emacs.d,whizzzkid\/emacs.d,jachinpy\/emacs.d,hkcqr\/emacs.d,ilove0518\/emacs.d,zenith-john\/emacs.d,emuio\/emacs.d,dcorking\/emacs.d,blueabysm\/emacs.d,zuoshifan\/emacs.d,YangXin\/emacs.d,scorpionis\/emacs.d,atreeyang\/emacs.d,boblannon\/emacs.d,Guoozz\/emacs.d,zhaotai\/.emacs.d,shafayetkhan\/emacs.d,jkaessens\/emacs.d,lujianmei\/emacs.d,zuoshifan\/emacs.d,farzadbekran\/emacs.d,Enzo-Liu\/emacs.d,LittleLmp\/emacs.d,krzysz00\/emacs.d,fengxl\/emacs.d,ruiyang\/emacs.d,zuoshifan\/emacs.d,renatoriccio\/emacs.d,DarkThrone\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,46do14\/emacs.d,benkha\/emacs.d,Togal\/emacs.d,svenyurgensson\/emacs.d,farzadbekran\/emacs.d,dhanunjaya\/emacs.d,mpwang\/emacs.d,hophacker\/emacs.d,mmqmzk\/emacs.d,farzadbekran\/emacs.d,braveoyster\/emacs.d,farzadbekran\/emacs.d,wenpincui\/emacs.d,jachinpy\/emacs.d,kindoblue\/emacs.d,sgarciac\/emacs.d,lust4life\/emacs.d,danfengcao\/emacs.d,cjqw\/emacs.d,purcell\/emacs.d,Werewolflsp\/emacs.d,zhuoyikang\/emacs.d,qinshulei\/emacs.d,zuoshifan\/emacs.d,zuoshifan\/emacs.d,me020523\/emacs.d,caoyuanqi\/emacs.d,qianwan\/emacs.d,kongfy\/emacs.d,modkzs\/emcs.d"} {"commit":"0150aca2136a77f04466ab77859de565aa86068f","old_file":"emacs\/personal\/hive-mode.el","new_file":"emacs\/personal\/hive-mode.el","old_contents":"","new_contents":";;A simple Hive mode for emacs derived from SQL mode.\n\n;;Define regex for various classes of hive keywords\n(setq hive-constants '(\"null\"))\n(setq hive-constants-regex (regexp-opt hive-constants 'words))\n(setq hive-constants nil)\n\n(setq hive-datatypes '(\"tinyint\" \"smallint\" \"int\" \"bigint\" \"boolean\" \"float\" \"double\" \"string\" \"binary\" \"timestamp\" \"decimal\" \"varchar\" \"char\" \"array\" \"struct\" \"uniontype\" \"textfile\" \"sequencefile\" \"rcfile\" \"inputformat\"))\n(setq hive-datatypes-regex (regexp-opt hive-datatypes 'words))\n(setq hive-datatypes nil)\n\n(setq hive-keywords-ddl '(\"create\" \"database\" \"schema\" \"comment\" \"if\" \"not\" \"exists\" \"location\" \"drop\" \"restrict\" \"cascade\" \"alter\" \"set\" \"table\" \"external\" \"partitioned\" \"by\" \"clustered\" \"skewed\" \"row\" \"format\" \"delimited\" \"stored\" \"as\" \"like\" \"partition\" \"to\" \"replace\" \"view\" \"index\" \"on\" \"temporary\" \"function\" \"show\" \"tables\" \"describe\" \"partitions\"))\n(setq hive-keywords-dml '(\"add\" \"touch\" \"load\" \"data\" \"overwrite\" \"into\" \"insert\" \"select\" \"from\" \"where\" \"join\" \"semi\" \"left\" \"right\" \"outer\" \"union\" \"all\" \"group\" \"order\" \"is\" \"and\" \"or\"))\n(setq hive-allkeywords-regex (regexp-opt (append hive-keywords-ddl hive-keywords-dml) 'words ))\n(setq hive-keywords-ddl nil)\n(setq hive-keywords-dml nil)\n\n\n;;Define font face for keywords\n(setq hive-font-lock-keywords\n `(\n\t(,hive-constants-regex . font-lock-constant-face)\n\t(,hive-datatypes-regex . font-lock-type-face)\n\t(,hive-allkeywords-regex . font-lock-keyword-face)\n))\n\n;;Define Hive mode\n(define-derived-mode hive-mode sql-mode\n \"Hive mode\"\n \"Basic hive mode derived from SQL mode\"\n\n (setq font-lock-defaults '((hive-font-lock-keywords)))\n \n (setq hive-constants-regex nil)\n (setq hive-datatypes-regex nil)\n (setq hive-allkeywords-regex nil)\n)\n\n(provide 'hive-mode)\n","subject":"Add hive mode to emacs","message":"Add hive mode to emacs\n","lang":"Emacs Lisp","license":"mit","repos":"aviscasillas\/dotfiles,aviscasillas\/dotfiles,aviscasillas\/dotfiles"} {"commit":"8fa8b4378ac13fa0ed0196e8dd1a5c642a8049d7","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"","new_contents":"(\n (c++-mode . ((fill-column . 80)\n (indent-tabs-mode . nil)))\n (c-mode . ((fill-column . 80)\n (indent-tabs-mode . nil)))\n (python-mode . ((fill-column . 80)\n (tab-width . 2)\n (indent-tabs-mode . nil)))\n)\n","subject":"Make life a little easier for emacs users.","message":"Subzero: Make life a little easier for emacs users.\n\nEmacs will try to execute .dir-locals.el whenever loading a file under\nthe subzero directory. It sets local variables depending on the mode.\n\nSet the fill-column to 80 for c++-mode, c-mode, and python-mode. The\nmain use is when using M-q to reformat multi-line comments.\n\nDisable tabs (use spaces instead) in c++-mode, c-mode, and\npython-mode.\n\nSet the tab-width to 2 spaces in python-mode. (The tab-width doesn't\nreally matter in c++-mode or c-mode thanks to clang-format.)\n\nBUG= none\nR=kschimpf@google.com\n\nReview URL: https:\/\/codereview.chromium.org\/1199133005\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"bkaradzic\/SwiftShader,google\/swiftshader,bkaradzic\/SwiftShader,bkaradzic\/SwiftShader,google\/swiftshader,google\/swiftshader,bkaradzic\/SwiftShader,bkaradzic\/SwiftShader"} {"commit":"58ccb58d9d4fe59333c7f639c9d5649a537e5c6a","old_file":"emacs\/lib\/setup_archlinux.el","new_file":"emacs\/lib\/setup_archlinux.el","old_contents":"","new_contents":"(use-package pkgbuild-mode\n :init\n (progn\n (add-to-list 'auto-mode-alist '(\"\\\\PKGBUILD$\" . pkgbuild-mode))))\n\n(provide 'setup_archlinux)\n","subject":"Switch to pkgbuild mode for PKGBUILD files.","message":"Switch to pkgbuild mode for PKGBUILD files.\n","lang":"Emacs Lisp","license":"mit","repos":"skk\/dotfiles,skk\/dotfiles"} {"commit":"2887a96b17f79fd9c4aee4ac2a171fad67d6ca8b","old_file":".emacs.d\/elisp\/dw-vimb.el","new_file":".emacs.d\/elisp\/dw-vimb.el","old_contents":"","new_contents":"(setq dw\/open-url-map\n (let ((map (make-sparse-keymap)))\n (define-key map (kbd \"\") 'ivy-immediate-done)\n map))\n\n(defun dw\/open-url ()\n (interactive)\n (let ((history-items\n (with-temp-buffer\n (insert-file-contents \"~\/.config\/vimb\/history\")\n (split-string (buffer-string) \"\\n\" t))))\n (ivy-read \"Open URL: \" (remove-duplicates history-items :test #'string-equal)\n :keymap dw\/open-url-map\n :action (lambda (item)\n (start-process \"vimb\" nil \"vimb\" (car (split-string item (string ?\\t))))))))\n","subject":"Add initial attempt at a URL opener for Vimb with Ivy","message":"emacs: Add initial attempt at a URL opener for Vimb with Ivy\n","lang":"Emacs Lisp","license":"mit","repos":"daviwil\/dotfiles,daviwil\/dotfiles,daviwil\/dotfiles,daviwil\/dotfiles"} {"commit":"740a77e2e43ec75dbc2947821772ad02cd181c91","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"","new_contents":";; Project-wide Emacs settings\n(\n ;; `nil' settings apply to all language modes\n (nil\n ;; Use only spaces for indentation\n (indent-tabs-mode . nil))\n (c-mode\n ;; In C code, indentation is four spaces\n (c-basic-offset . 4)))\n","subject":"Add project-wide Emacs settings file","message":"Add project-wide Emacs settings file\n\nAdd a .dir-locals.el file, which applies indentation-related settings\nwhen editing any file in the project with Emacs.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"uabboli\/otp,saleyn\/otp,potatosalad\/otp,erlang\/otp,potatosalad\/otp,tuncer\/otp,saleyn\/otp,fenollp\/otp,dumbbell\/otp,falkevik\/otp,dgud\/otp,release-project\/otp,vinoski\/otp,lrascao\/otp,release-project\/otp,weisslj\/otp,tuncer\/otp,goertzenator\/otp,jj1bdx\/otp,massemanet\/otp,RoadRunnr\/otp,goertzenator\/otp,vladdu\/otp,rlipscombe\/otp,kvakvs\/otp,rlipscombe\/otp,bernardd\/otp,legoscia\/otp,massemanet\/otp,weisslj\/otp,isvilen\/otp,bernardd\/otp,dgud\/otp,bsmr-erlang\/otp,jj1bdx\/otp,uabboli\/otp,RaimoNiskanen\/otp,emacsmirror\/erlang,goertzenator\/otp,tuncer\/otp,RaimoNiskanen\/otp,rlipscombe\/otp,kvakvs\/otp,vladdu\/otp,saleyn\/otp,mikpe\/otp,RaimoNiskanen\/otp,electricimp\/otp,emacsmirror\/erlang,release-project\/otp,legoscia\/otp,g-andrade\/otp,lrascao\/otp,fenollp\/otp,bernardd\/otp,emacsmirror\/erlang,RoadRunnr\/otp,g-andrade\/otp,jj1bdx\/otp,bjorng\/otp,saleyn\/otp,falkevik\/otp,cobusc\/otp,falkevik\/otp,erlang\/otp,jj1bdx\/otp,kvakvs\/otp,lrascao\/otp,bsmr-erlang\/otp,release-project\/otp,tuncer\/otp,potatosalad\/otp,cobusc\/otp,vinoski\/otp,emacsmirror\/erlang,rlipscombe\/otp,saleyn\/otp,cobusc\/otp,release-project\/otp,tuncer\/otp,fenollp\/otp,RaimoNiskanen\/otp,legoscia\/otp,vinoski\/otp,bsmr-erlang\/otp,kvakvs\/otp,matwey\/otp,goertzenator\/otp,legoscia\/otp,falkevik\/otp,rlipscombe\/otp,weisslj\/otp,ferd\/otp,vladdu\/otp,ferd\/otp,aboroska\/otp,RoadRunnr\/otp,tuncer\/otp,g-andrade\/otp,erlang\/otp,matwey\/otp,kvakvs\/otp,legoscia\/otp,vladdu\/otp,release-project\/otp,emacsmirror\/erlang,aboroska\/otp,getong\/otp,uabboli\/otp,mikpe\/otp,falkevik\/otp,dgud\/otp,getong\/otp,dumbbell\/otp,tuncer\/otp,bernardd\/otp,RoadRunnr\/otp,matwey\/otp,potatosalad\/otp,release-project\/otp,g-andrade\/otp,fenollp\/otp,vinoski\/otp,ferd\/otp,aboroska\/otp,jj1bdx\/otp,electricimp\/otp,rlipscombe\/otp,getong\/otp,bsmr-erlang\/otp,cobusc\/otp,isvilen\/otp,legoscia\/otp,weisslj\/otp,saleyn\/otp,lrascao\/otp,saleyn\/otp,bernardd\/otp,kvakvs\/otp,bsmr-erlang\/otp,emacsmirror\/erlang,bjorng\/otp,matwey\/otp,uabboli\/otp,cobusc\/otp,dgud\/otp,erlang\/otp,RoadRunnr\/otp,legoscia\/otp,vladdu\/otp,potatosalad\/otp,dgud\/otp,fenollp\/otp,emacsmirror\/erlang,isvilen\/otp,dumbbell\/otp,jj1bdx\/otp,kvakvs\/otp,g-andrade\/otp,bsmr-erlang\/otp,jj1bdx\/otp,dumbbell\/otp,matwey\/otp,g-andrade\/otp,weisslj\/otp,weisslj\/otp,lrascao\/otp,RaimoNiskanen\/otp,jj1bdx\/otp,erlang\/otp,legoscia\/otp,fenollp\/otp,isvilen\/otp,erlang\/otp,dgud\/otp,electricimp\/otp,jj1bdx\/otp,bjorng\/otp,weisslj\/otp,g-andrade\/otp,rlipscombe\/otp,release-project\/otp,falkevik\/otp,potatosalad\/otp,release-project\/otp,mikpe\/otp,electricimp\/otp,aboroska\/otp,vinoski\/otp,mikpe\/otp,aboroska\/otp,dumbbell\/otp,aboroska\/otp,erlang\/otp,bernardd\/otp,erlang\/otp,g-andrade\/otp,falkevik\/otp,uabboli\/otp,g-andrade\/otp,isvilen\/otp,cobusc\/otp,uabboli\/otp,dumbbell\/otp,goertzenator\/otp,ferd\/otp,dgud\/otp,getong\/otp,isvilen\/otp,dgud\/otp,electricimp\/otp,getong\/otp,bernardd\/otp,dumbbell\/otp,bjorng\/otp,mikpe\/otp,fenollp\/otp,potatosalad\/otp,potatosalad\/otp,vladdu\/otp,vinoski\/otp,electricimp\/otp,RoadRunnr\/otp,goertzenator\/otp,legoscia\/otp,matwey\/otp,lrascao\/otp,ferd\/otp,dumbbell\/otp,ferd\/otp,bernardd\/otp,vinoski\/otp,weisslj\/otp,goertzenator\/otp,mikpe\/otp,matwey\/otp,RaimoNiskanen\/otp,massemanet\/otp,falkevik\/otp,saleyn\/otp,lrascao\/otp,uabboli\/otp,bsmr-erlang\/otp,electricimp\/otp,massemanet\/otp,massemanet\/otp,bjorng\/otp,vladdu\/otp,emacsmirror\/erlang,tuncer\/otp,vinoski\/otp,bsmr-erlang\/otp,goertzenator\/otp,getong\/otp,RaimoNiskanen\/otp,emacsmirror\/erlang,kvakvs\/otp,RaimoNiskanen\/otp,ferd\/otp,bjorng\/otp,rlipscombe\/otp,lrascao\/otp,matwey\/otp,bjorng\/otp,aboroska\/otp,RaimoNiskanen\/otp,bernardd\/otp,mikpe\/otp,saleyn\/otp,massemanet\/otp,mikpe\/otp,isvilen\/otp,erlang\/otp,emacsmirror\/erlang,bjorng\/otp,RoadRunnr\/otp,bsmr-erlang\/otp,getong\/otp,potatosalad\/otp,uabboli\/otp,tuncer\/otp,electricimp\/otp,vladdu\/otp,isvilen\/otp,mikpe\/otp,isvilen\/otp,rlipscombe\/otp,getong\/otp,cobusc\/otp,dumbbell\/otp,matwey\/otp,electricimp\/otp,vladdu\/otp,uabboli\/otp,falkevik\/otp,getong\/otp,aboroska\/otp,cobusc\/otp,vinoski\/otp,vinoski\/otp,ferd\/otp,weisslj\/otp,erlang\/otp,isvilen\/otp,goertzenator\/otp,dumbbell\/otp,mikpe\/otp,rlipscombe\/otp,RoadRunnr\/otp,massemanet\/otp,bjorng\/otp,RoadRunnr\/otp,g-andrade\/otp,potatosalad\/otp,dgud\/otp,kvakvs\/otp,fenollp\/otp,ferd\/otp,getong\/otp,lrascao\/otp,bjorng\/otp,fenollp\/otp,massemanet\/otp,jj1bdx\/otp,aboroska\/otp,dgud\/otp,massemanet\/otp"} {"commit":"9d5073b2d9da4f8348d426ad4bbb4dd8e2aedf2b","old_file":"layers\/my-go\/config.el","new_file":"layers\/my-go\/config.el","old_contents":"","new_contents":";; -*- lexical-binding: t -*-\n\n;; Auto-indent after paste in Go triggers goimports, that makes pasting imports\n;; difficult. Let's let gofmt triggered by file save handle the indentation.\n(add-to-list 'spacemacs-indent-sensitive-modes 'go-mode)\n","subject":"Make behavior of pasting into Go source files less annoying","message":"Make behavior of pasting into Go source files less annoying\n","lang":"Emacs Lisp","license":"mit","repos":"amfranz\/spacemacs.d"} {"commit":"59c520180d9e6b4465722ee3f26c9e3997d58766","old_file":"emacs\/rbdbgt-mode.el","new_file":"emacs\/rbdbgt-mode.el","old_contents":"","new_contents":";; `rbdbg-track-mode' tracks shell output \n\n(eval-when-compile\n (require 'cl)\n (setq load-path (cons nil load-path))\n (load \"rbdbg-track\")\n (setq load-path (cdr load-path)))\n\n(defvar rbdbg-track-minor-mode nil\n \"Non-nil if using rbdbgr-track mode as a minor mode of some other mode.\nUse the command `rbdbg-minor-mode' to toggle or set this variable.\")\n\n(defvar rbdbg-track-minor-mode-map\n (let ((map (make-sparse-keymap)))\n (define-key map \"\\C-cg\"\t 'rbdbg-goto-loc)\n map)\n \"Keymap for rbdbgr-track minor mode.\")\n\n(define-minor-mode rbdbgr-track-mode\n \"Minor mode for tracking ruby debugging inside a process shell.\"\n :init-value nil\n :lighter \" rbdbgr\" ;; indicator in the mode line.\n ;; The minor mode bindings.\n :global nil\n :group 'rbdbg\n :keymap rbdbg-track-minor-mode-map\n (add-hook 'comint-output-filter-functions \n\t 'rbdbg-track-comint-output-filter-hook)\n (add-hook 'eshell-output-filter-functions \n\t 'rbdbg-track-eshell-output-filter-hook)\n ;; (run-mode-hooks 'rdebug-track-mode-hook)\n;; FIXME: add buffer local variables (in the process buffer) for:\n;; rbdbg-last-output-start\n)\n\n","subject":"Support eshell as well as shell. Break out track mode into a separate file.","message":"Support eshell as well as shell. Break out track mode into a separate file.\n","lang":"Emacs Lisp","license":"bsd-2-clause","repos":"rocky\/rb-trepanning,rocky\/rb-trepanning"} {"commit":"fd4ef610d51ac4cb15c1b05b2de609a23dfad908","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"","new_contents":";;; Directory Local Variables\n;;; See Info node `(emacs) Directory Variables' for more information.\n\n((java-mode\n (c-basic-offset . 2)\n (indent-tabs-mode . nil)))\n ))\n","subject":"Set the indent style for Emacs users.","message":"Set the indent style for Emacs users.\n\nSigned-off-by: Benoit Sigoure \n","lang":"Emacs Lisp","license":"lgpl-2.1","repos":"ShefronYudy\/opentsdb,andyflury\/opentsdb,alienth\/opentsdb,ShefronYudy\/opentsdb,MadDogTechnology\/opentsdb,kidaa\/opentsdb,OpenTSDB\/opentsdb,OpenTSDB\/opentsdb,OpenTSDB\/opentsdb,sidhhu\/opentsdb,eswdd\/opentsdb,kidaa\/opentsdb,alienth\/opentsdb,MadDogTechnology\/opentsdb,MadDogTechnology\/opentsdb,johann8384\/opentsdb,johann8384\/opentsdb,sidhhu\/opentsdb,eswdd\/opentsdb,andyflury\/opentsdb"} {"commit":"4c0475fa50f91efb0efb224fe310ca15f747a381","old_file":"rc\/elisp\/project.el","new_file":"rc\/elisp\/project.el","old_contents":"","new_contents":"(require 'json)\n\n(setq path-seperator '\"\/\")\n(setq settings-file-name '\"settings.json\")\n\n;;(json-read-file '\"..\/..\/settings.json\")\n\n;; function to find the path to the next (upwards in the directory tree)\n;; settings file.\n(defun load-next-settings-file ()\n;;(interactive)\n(setq cur-dir (buffer-file-name))\n\n;;(message cur-dir)\n\n(setq idx-sep (length cur-dir))\n;;(message (number-to-string cur-pos))\n(setq b-stop-looping nil)\n(while (and (> idx-sep 0) (not b-stop-looping))\n ;; find the last path seperator in the path string\n (setq idx-sep 0)\n (setq read-pos 0)\n \n (while (< read-pos (- (length cur-dir) 1))\n (if (string= (substring cur-dir read-pos (+ read-pos 1)) path-seperator)\n\t;(message \"bang\")\n\t(setq idx-sep read-pos)\n;; (message (number-to-string idx-sep))\n )\n\n (setq read-pos (1+ read-pos))\n ;(message (number-to-string read-pos))\n )\n\n ;;(message (concat \"\/ at \" (number-to-string idx-sep)))\n ;; (message cur-dir)\n;; (message (number-to-string idx-sep))\n (setq cur-pos idx-sep);; (length cur-dir))\n (setq cur-dir (substring cur-dir 0 (1+ idx-sep)))\n ;;(message cur-dir)\n;; (message \"bla\")\n ;; (setq last-sep '(search-backward \n ;;(print cur-pos)\n ;; (message cur-pos)\n ;; (setq cur-dir '(substring cur-dir 1 2))\n;; (message (number-to-string idx-sep))\n ;;(setq cur-pos (- cur-pos 1))\n(setq candidate-path (concat cur-dir settings-file-name))\n (if (file-exists-p candidate-path)\n\n(setq settings (json-read-file candidate-path))\n;;(message \"bla\")\n;;(message candidate-path)\n;;(message \"bla\")\n;;(setq b-stop-looping t)\n\n;;(message candidate-path)\n;;(message candidate-path)\n;;(message \"bla\")\n;;(message \"bla\")\n\n;;(message (file-exists-p candidate-path))\n)\n)\n)\n\n(defun print-alist (list)\n;;(setq settings)\n(while list\n (setq cur-element (car list))\n (setq cur-key (car cur-element))\n (setq cur-value (cdr cur-element))\n (message (format \"%10s: %s\" cur-key cur-value))\n (setq list (cdr list))\n)\n)\n\n;;(setq settings ())\n(load-next-settings-file)\n;;(message (load-next-settings-file))\n;;(message settings)\n\n;;(print-alist settings)\n(print-alist settings)\n\n\n(print-alist (cons (assoc 'name settings) '()))\n\n","subject":"Add first working Elisp version.","message":"Add first working Elisp version.\n","lang":"Emacs Lisp","license":"mit","repos":"matbra\/research-chain"} {"commit":"8801bd6e2930081d89a26bc56c7c2ec67a9bc759","old_file":"layers\/programming\/echo-server.el","new_file":"layers\/programming\/echo-server.el","old_contents":"","new_contents":"(defvar echo-server-port 9000\n \"port of the echo server\")\n\n(defvar echo-server-clients '()\n \"alist where KEY is a client process and VALUE is the string\")\n\n\n(defun echo-server-start nil\n \"starts an emacs echo server\"\n (interactive)\n (unless (process-status \"echo-server\")\n (make-network-process :name \"echo-server\" :buffer \"*echo-server*\"\n :family 'ipv4 :service echo-server-port\n :sentinel 'echo-server-sentinel\n :filter 'echo-server-filter :server 't)\n (setq echo-server-clients '())\n )\n )\n\n(defun echo-server-stop nil\n \"stop an emacs echo server\"\n (interactive)\n (while echo-server-clients\n (delete-process (car (car echo-server-clients)))\n (setq echo-server-clients (cdr echo-server-clients)))\n (delete-process \"echo-server\")\n )\n\n(defun echo-server-filter (proc string)\n (let ((pending (assoc proc echo-server-clients))\n message\n index)\n ;;create entry if required\n (unless pending\n (setq echo-server-clients (cons (cons proc \"\") echo-server-clients))\n (setq pending (assoc proc echo-server-clients)))\n (setq message (concat (cdr pending) string))\n (while (setq index (string-match \"\\n\" message))\n (setq index (1+ index))\n (process-send-string proc (substring message 0 index))\n (echo-server-log (substring message 0 index) proc)\n (setq message (substring message index)))\n (setcdr pending message))\n )\n\n(defun echo-server-sentinel (proc msg)\n (when (string= msg \"connection broken by remote peer\\n\")\n (setq echo-server-clients (assq-delete-all proc echo-server-clients))\n (echo-server-log (format \"client %s has quit\" proc))))\n\n;;from server.el\n(defun echo-server-log (string &optional client)\n \"If a *echo-server* buffer exists, write STRING to it for logging purposes.\"\n (if (get-buffer \"*echo-server*\")\n (with-current-buffer \"*echo-server*\"\n (goto-char (point-max))\n (insert (current-time-string)\n (if client (format \" %s:\" client) \" \")\n string)\n (or (bolp) (newline)))))\n(provide 'echo-server)\n","subject":"Add echo server in elisp (needs work)","message":"Add echo server in elisp (needs work)\n","lang":"Emacs Lisp","license":"mit","repos":"timotheosh\/dotemacs"} {"commit":"b6c3d5309f83b5c7d3d7e9898d2b1b4049f2e451","old_file":"modules\/lang\/latex\/+preview-pane.el","new_file":"modules\/lang\/latex\/+preview-pane.el","old_contents":"","new_contents":";;; lang\/latex\/+preview-pane.el -*- lexical-binding: t; -*-\n;;;###if (featurep! +preview-pane)\n\n(def-package! latex-preview-pane\n :when (featurep! +preview-pane)\n :hook ((latex-mode LaTeX-mode) . latex-preview-pane-enable)\n :commands latex-preview-pane-mode\n :init\n (setq latex-preview-pane-multifile-mode 'auctex)\n :config\n (add-to-list 'TeX-view-program-list '(\"preview-pane\" latex-preview-pane-mode))\n (add-to-list 'TeX-view-program-selection '(output-pdf \"preview-pane\"))\n (define-key! doc-view-mode-map\n (kbd \"ESC\") #'delete-window\n \"q\" #'delete-window\n \"k\" (λ! (quit-window) (delete-window))))\n","subject":"Move preview-pane setup into seperate file","message":"Move preview-pane setup into seperate file\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs"} {"commit":"39e03f4cf1671dca0c80aedfdfd160cc8e44be2f","old_file":"modules\/lang\/latex\/+viewers.el","new_file":"modules\/lang\/latex\/+viewers.el","old_contents":"","new_contents":";;; lang\/latex\/+viewers.el -*- lexical-binding: t; -*-\n\n(when (featurep! +okular)\n ;; Configure Okular as viewer. Including a bug fix\n ;; (https:\/\/bugs.kde.org\/show_bug.cgi?id=373855)\n (add-to-list 'TeX-view-program-list '(\"Okular\" (\"okular --unique file:%o\" (mode-io-correlate \"#src:%n%a\"))))\n (add-to-list 'TeX-view-program-selection '(output-pdf \"Okular\")))\n\n;; Or Skim\n(when (featurep! +skim)\n (add-to-list 'TeX-view-program-selection 'output-pdf '(\"Skim\")))\n\n;; Or Zathura\n(when (featurep! +zathura)\n (add-to-list 'TeX-view-program-selection '(output-pdf \"Zathura\")))\n\n;; Or PDF-tools, but only if the module is also loaded\n(when (and (featurep! :tools pdf)\n (featurep! +pdf-tools))\n (add-to-list 'TeX-view-program-selection '(output-pdf \"PDF Tools\"))\n ;; Enable auto reverting the PDF document with PDF Tools\n (add-hook 'TeX-after-compilation-finished-functions #'TeX-revert-document-buffer))\n","subject":"Move viewer setup into different file","message":"Move viewer setup into different file\n","lang":"Emacs Lisp","license":"mit","repos":"hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/doom-emacs"} {"commit":"aa2cd40988f9fc732075763043daa30f9bae1c73","old_file":".emacs.d\/lib\/my-global-bindings.el","new_file":".emacs.d\/lib\/my-global-bindings.el","old_contents":"","new_contents":"(defun my\/cleanup-buffer ()\n (interactive)\n (delete-trailing-whitespace)\n (untabify (point-min) (point-max))\n (indent-region (point-min) (point-max)))\n\n(global-set-key (kbd \"C-c n\") 'my\/cleanup-buffer)\n(global-set-key (kbd \"C-c C-n\") 'my\/cleanup-buffer)\n","subject":"Add global binding for buffer cleanup.","message":"Add global binding for buffer cleanup.\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"pjstadig\/dotfiles,pjstadig\/dotfiles"} {"commit":"38e5e28f1ea2d9d1d5f07f4fff1ccf6184ed3a47","old_file":"config\/color_theme.el","new_file":"config\/color_theme.el","old_contents":"","new_contents":"(set-face-foreground 'mode-line \"black\")\n(set-face-background 'mode-line \"purple\")\n(set-face-background 'mode-line-inactive \"blue\")\n(set-face-background 'modeline-inactive \"red\")\n","subject":"Add color theme config file with entries for mode bar","message":"Add color theme config file with entries for mode bar\n","lang":"Emacs Lisp","license":"unlicense","repos":"schanur\/emacs.d"} {"commit":"0802953cf2aba230d0aaaeaf4f423bc33e39bc63","old_file":"emacs\/.emacs.d\/lisp\/ds-helpers.el","new_file":"emacs\/.emacs.d\/lisp\/ds-helpers.el","old_contents":"","new_contents":";;; Useful helpers for lisp programming\n\n\n(defun ds\/buffer-context (start end n)\n \"Print the contents of the buffer between start and end with n characters of context\"\n (let ((before (buffer-substring (max (point-min) (- start n)) start))\n (match (buffer-substring start end))\n (after (buffer-substring end (min (point-max) (+ end n)))))\n (concat before \"|\" match \"|\" after)))\n\n(defun ds\/match-context (n)\n \"Print the current match with n characters of context\"\n (ds\/buffer-context (match-beginning 0) (match-end 0) n))\n\n(defun ds\/print (x)\n \"Print with newline TODO: multiple args\"\n (pp x)\n (terpri))\n","subject":"Add a set of lisp helpers","message":"Add a set of lisp helpers\n","lang":"Emacs Lisp","license":"cc0-1.0","repos":"davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles,davidshepherd7\/dotfiles"} {"commit":"20249123a78d4aaa70d1212fd2c842837e4a6a3b","old_file":"diffcourse-mode\/diffcourse-mode.el","new_file":"diffcourse-mode\/diffcourse-mode.el","old_contents":"","new_contents":";; diffcourse-mode.el\n;;\n;; Major mode for diffcourse files.\n\n;; to use diff-mode's font-locking as a base.\n(require 'diff-mode)\n\n;; If your keymap will have very few entries, then you may want to\n;; consider ‘make-sparse-keymap’ rather than ‘make-keymap’.\n\n;; (defvar diffcourse-mode-map\n;; (let ((map (make-keymap)))\n;; (define-key map \"\\C-j\" 'newline-and-indent)\n;; map)\n;; \"Keymap for diffcourse mode\")\n\n(add-to-list 'auto-mode-alist '(\"\\\\.diffcourse\\\\'\" . diffcourse-mode))\n\n;; font-lock support\n;;\n;; TODO: Need to investigate whether I can just front-load the\n;; diffcourse font lock rules and then append the diff ones like this,\n;; and have that work in some of the weirder circumstances\n;; (e.g. leading %'s in header material) or whether that even matters.\n;; Alternatively, could duplicate all the definitions here. But that\n;; would suck.\n;;\n;; TODO: real faces, support up to--say--5 without recylcing, 10 with?\n\n(defvar diffcourse-font-lock-keywords\n (append\n (list\n '(\"^%\\\\*\\\\([ ].*\\n\\\\|\\n\\\\)\" . diff-added-face) ;; level 1 header\n '(\"^%-\\\\([ ].*\\n\\\\|\\n\\\\)\" . diff-added-face) ;; level 1 body\n '(\"^%[*]\\\\{2\\\\}\\\\([ ].*\\n\\\\|\\n\\\\)\" . diff-removed-face) ;; level 2 header\n '(\"^%[-]\\\\{2\\\\}\\\\([ ].*\\n\\\\|\\n\\\\)\" . diff-removed-face)) ;; level 2 body\n\n diff-font-lock-keywords))\n\n;; TODO: figure out how not to have emacs strip trailing spaces *ever*\n;; in this mode?\n\n(defun diffcourse-mode ()\n \"Major mode for inter-diff code review\"\n (interactive)\n (kill-all-local-variables)\n ;; (set-syntax-table wpdl-mode-syntax-table)\n ;; (use-local-map diffcourse-mode-map)\n (set (make-local-variable 'font-lock-defaults) '(diffcourse-font-lock-keywords))\n (setq major-mode 'diffcourse-mode)\n (setq mode-name \"Diffcourse\")\n (run-hooks 'diffcourse-mode-hook))\n\n(provide 'diffcourse-mode)\n","subject":"Add proof of concept emacs mode.","message":"Add proof of concept emacs mode.\n\nThis still needs real faces to be even marginally useful.\n","lang":"Emacs Lisp","license":"mit","repos":"tomheon\/diffscuss,tomheon\/diffscuss,hut8labs\/diffscuss,hut8labs\/diffscuss"} {"commit":"7e140a427a4613c5c5cb5922b2c2eca390b77cef","old_file":"standard_emacs_d_init.el","new_file":"standard_emacs_d_init.el","old_contents":"","new_contents":";; backup in one place. flat, no tree structure\n;; http:\/\/ergoemacs.org\/emacs\/emacs_set_backup_into_a_directory.html\n(setq backup-directory-alist '((\"\" . \"~\/.emacs.d\/emacs-backup\")))\n\n","subject":"Add emacs.d\/init.el file for backup file settings","message":"Add emacs.d\/init.el file for backup file settings\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"philipwilcox\/homedir"} {"commit":"167f51b25c9ac46f36a86ada3f7e1894d5c75a9c","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"","new_contents":"; Sets emacs variables based on mode.\n; A list of (major-mode . ((var1 . value1) (var2 . value2)))\n; Mode can be nil, which gives default values.\n\n((nil . ((indent-tabs-mode . nil)\n (c-basic-offset . 4)))\n)\n","subject":"Add emacs config for indentation","message":"Add emacs config for indentation\n","lang":"Emacs Lisp","license":"lgpl-2.1","repos":"systemd\/python-systemd,Awesense\/python-systemd,again4you\/python-systemd,davidstrauss\/python-systemd,glittershark\/python-systemd,Awesense\/python-systemd,systemd\/python-systemd,again4you\/python-systemd,Awesense\/python-systemd,glittershark\/python-systemd,davidstrauss\/python-systemd,keszybz\/python-systemd,keszybz\/python-systemd"} {"commit":"9b5c401994629503e8637ac30f4eec9fcb9a2d33","old_file":"emacs\/merlin-xref.el","new_file":"emacs\/merlin-xref.el","old_contents":"","new_contents":"(require 'cl-lib)\n(require 'xref)\n(require 'merlin)\n\n;;;###autoload\n(defun merlin-xref-backend ()\n \"Merlin backend for Xref.\"\n 'merlin-xref)\n\n(defun merlin-xref--line (loc)\n (save-excursion\n (goto-char loc)\n (buffer-substring (line-beginning-position) (line-end-position))))\n\n(cl-defmethod xref-backend-references ((_backend (eql merlin-xref)) symbol)\n (mapcar\n (lambda (loc)\n (let ((pt (merlin\/make-point (alist-get 'start loc))))\n (xref-make (merlin-xref--line pt)\n (xref-make-buffer-location (current-buffer) pt))))\n (merlin--occurences)))\n\n(cl-defmethod xref-backend-definitions ((_backend (eql merlin-xref)) symbol)\n (let* ((loc (merlin\/locate))\n (file (alist-get 'file loc))\n (pos (alist-get 'pos loc))\n (line (alist-get 'line pos))\n (col (alist-get 'col pos))\n (desc (merlin-xref--line (merlin\/make-point pos))))\n (list (xref-make desc (xref-make-file-location file line col)))))\n\n(cl-defmethod xref-backend-identifier-completion-table ((_backend (eql merlin-xref)))\n nil)\n\n(provide 'merlin-xref)\n","subject":"Add merlin based xref backend","message":"Add merlin based xref backend\n","lang":"Emacs Lisp","license":"mit","repos":"ocaml\/merlin,the-lambda-church\/merlin,rgrinberg\/merlin,the-lambda-church\/merlin,rgrinberg\/merlin,rgrinberg\/merlin,the-lambda-church\/merlin,dra27\/merlin,ocaml\/merlin,ocaml\/merlin,ocaml\/merlin,dra27\/merlin,dra27\/merlin,rgrinberg\/merlin,dra27\/merlin"} {"commit":"838e8f932cc71d59fe6c4c9cd8de7b1838358bed","old_file":"starter-kit-ruby.el","new_file":"starter-kit-ruby.el","old_contents":";;; starter-kit-ruby.el --- Some helpful Ruby code\n;;\n;; Part of the Emacs Starter Kit\n\n;; Until this makes it into ELPA:\n(autoload 'ruby-mode \"ruby-mode\" \"\" t)\n(autoload 'inf-ruby \"inf-ruby\" \"\" t)\n(autoload 'run-ruby \"inf-ruby\" \"\" t)\n\n(eval-after-load 'ruby-mode\n '(progn\n (require 'inf-ruby)\n (require 'ruby-compilation)\n\n (define-key ruby-mode-map (kbd \"RET\") 'reindent-then-newline-and-indent)\n (define-key ruby-mode-map (kbd \"C-c l\") \"lambda\")))\n\n(global-set-key (kbd \"C-h r\") 'ri)\n\n;; We never want to edit Rubinius bytecode\n(add-to-list 'completion-ignored-extensions \".rbc\")\n\n;; TODO: set up ri\n;; TODO: electric\n;; TODO: flymake\n\n(provide 'starter-kit-ruby)\n;; starter-kit-ruby.el ends here","new_contents":";;; starter-kit-ruby.el --- Some helpful Ruby code\n;;\n;; Part of the Emacs Starter Kit\n\n;; Until this makes it into ELPA:\n(autoload 'ruby-mode \"ruby-mode\" \"\" t)\n(autoload 'inf-ruby \"inf-ruby\" \"\" t)\n(autoload 'run-ruby \"inf-ruby\" \"\" t)\n\n(eval-after-load 'ruby-mode\n '(progn\n (require 'inf-ruby)\n (require 'ruby-compilation)\n\n (define-key ruby-mode-map (kbd \"RET\") 'reindent-then-newline-and-indent)\n (define-key ruby-mode-map (kbd \"C-c l\") \"lambda\")))\n\n(global-set-key (kbd \"C-h r\") 'ri)\n\n;; We never want to edit Rubinius bytecode\n(add-to-list 'completion-ignored-extensions \".rbc\")\n\n;; Clear the compilation buffer between test runs.\n(eval-after-load 'ruby-compilation\n '(progn\n (defadvice ruby-do-run-w\/compilation (before kill-buffer (name cmdlist))\n (let ((comp-buffer-name (format \"*%s*\" name)))\n (when (get-buffer comp-buffer-name)\n (with-current-buffer comp-buffer-name\n (delete-region (point-min) (point-max))))))\n (ad-activate 'ruby-do-run-w\/compilation)))\n\n;; TODO: set up ri\n;; TODO: electric\n;; TODO: flymake\n\n(provide 'starter-kit-ruby)\n;; starter-kit-ruby.el ends here","subject":"Clear compilation buffer in between test runs.","message":"Clear compilation buffer in between test runs.\n","lang":"Emacs Lisp","license":"mit","repos":"lstoll\/repo,lstoll\/dotfiles,lstoll\/dotfiles,lstoll\/repo,lstoll\/dotfiles,lstoll\/repo"} {"commit":"1401b158ab973998690d66e6d8bbc2525fe422e4","old_file":"emacs\/lisp\/20-ruby.el","new_file":"emacs\/lisp\/20-ruby.el","old_contents":"","new_contents":";; Ruby\n(autoload 'rhtml-mode \"rhtml-mode\")\n(add-to-list 'auto-mode-alist '(\"\\\\.rake$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.watchr$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Rakefile$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.gemspec$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.ru$\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"Gemfile\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"capfile\" . ruby-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.erb$\" . rhtml-mode))\n\n","subject":"Enable ruby-mode for various ruby files.","message":"Enable ruby-mode for various ruby files.\n","lang":"Emacs Lisp","license":"mit","repos":"skk\/dotfiles,skk\/dotfiles"} {"commit":"7646a5a1e09c01b99d58394d05e79435a11be0d6","old_file":"util\/emacs\/m5-c-style.el","new_file":"util\/emacs\/m5-c-style.el","old_contents":"","new_contents":"; Copyright (c) 2003 The Regents of The University of Michigan\n; All rights reserved.\n;\n; Redistribution and use in source and binary forms, with or without\n; modification, are permitted provided that the following conditions are\n; met: redistributions of source code must retain the above copyright\n; notice, this list of conditions and the following disclaimer;\n; redistributions in binary form must reproduce the above copyright\n; notice, this list of conditions and the following disclaimer in the\n; documentation and\/or other materials provided with the distribution;\n; neither the name of the copyright holders nor the names of its\n; contributors may be used to endorse or promote products derived from\n; this software without specific prior written permission.\n;\n; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n; \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n; A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n; OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n;\n; Authors: Nathan Binkert\n; Steve Reinhardt\n\n(c-add-style \"m5\"\n '((c-basic-offset . 4)\n (c-offsets-alist . ((substatement-open . 0)\n (inline-open . 0)\n (block-open . -4)\n (case-label . 2)\n (label . 2)\n (statement-case-intro . 2)\n (statement-case-open . 2)\n (access-label . -2)))))\n","subject":"Add m5 emacs style file.","message":"Add m5 emacs style file.\n\n--HG--\nextra : convert_revision : bccc866984c98d974c1745f125293d781d6d0b1e\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"aclifton\/cpeg853-gem5,KuroeKurose\/gem5,KuroeKurose\/gem5,SanchayanMaity\/gem5,HwisooSo\/gemV-update,qizenguf\/MLC-STT,gedare\/gem5,cancro7\/gem5,briancoutinho0905\/2dsampling,rjschof\/gem5,joerocklin\/gem5,gedare\/gem5,gem5\/gem5,kaiyuanl\/gem5,briancoutinho0905\/2dsampling,TUD-OS\/gem5-dtu,Weil0ng\/gem5,joerocklin\/gem5,austinharris\/gem5-riscv,gedare\/gem5,yb-kim\/gemV,qizenguf\/MLC-STT,markoshorro\/gem5,cancro7\/gem5,KuroeKurose\/gem5,HwisooSo\/gemV-update,zlfben\/gem5,TUD-OS\/gem5-dtu,zlfben\/gem5,sobercoder\/gem5,kaiyuanl\/gem5,qizenguf\/MLC-STT,gem5\/gem5,kaiyuanl\/gem5,powerjg\/gem5-ci-test,KuroeKurose\/gem5,Weil0ng\/gem5,gedare\/gem5,rjschof\/gem5,kaiyuanl\/gem5,gedare\/gem5,cancro7\/gem5,SanchayanMaity\/gem5,zlfben\/gem5,joerocklin\/gem5,SanchayanMaity\/gem5,powerjg\/gem5-ci-test,yb-kim\/gemV,austinharris\/gem5-riscv,rallylee\/gem5,gem5\/gem5,zlfben\/gem5,TUD-OS\/gem5-dtu,samueldotj\/TeeRISC-Simulator,qizenguf\/MLC-STT,yb-kim\/gemV,gedare\/gem5,yb-kim\/gemV,KuroeKurose\/gem5,aclifton\/cpeg853-gem5,joerocklin\/gem5,rjschof\/gem5,kaiyuanl\/gem5,powerjg\/gem5-ci-test,gem5\/gem5,zlfben\/gem5,rallylee\/gem5,aclifton\/cpeg853-gem5,rallylee\/gem5,briancoutinho0905\/2dsampling,gedare\/gem5,HwisooSo\/gemV-update,samueldotj\/TeeRISC-Simulator,austinharris\/gem5-riscv,zlfben\/gem5,TUD-OS\/gem5-dtu,markoshorro\/gem5,Weil0ng\/gem5,HwisooSo\/gemV-update,samueldotj\/TeeRISC-Simulator,samueldotj\/TeeRISC-Simulator,kaiyuanl\/gem5,TUD-OS\/gem5-dtu,yb-kim\/gemV,qizenguf\/MLC-STT,Weil0ng\/gem5,aclifton\/cpeg853-gem5,joerocklin\/gem5,sobercoder\/gem5,sobercoder\/gem5,gem5\/gem5,austinharris\/gem5-riscv,powerjg\/gem5-ci-test,austinharris\/gem5-riscv,Weil0ng\/gem5,markoshorro\/gem5,aclifton\/cpeg853-gem5,rallylee\/gem5,samueldotj\/TeeRISC-Simulator,rallylee\/gem5,cancro7\/gem5,gem5\/gem5,gem5\/gem5,sobercoder\/gem5,sobercoder\/gem5,HwisooSo\/gemV-update,rjschof\/gem5,powerjg\/gem5-ci-test,SanchayanMaity\/gem5,cancro7\/gem5,HwisooSo\/gemV-update,KuroeKurose\/gem5,zlfben\/gem5,SanchayanMaity\/gem5,KuroeKurose\/gem5,austinharris\/gem5-riscv,yb-kim\/gemV,briancoutinho0905\/2dsampling,markoshorro\/gem5,markoshorro\/gem5,aclifton\/cpeg853-gem5,sobercoder\/gem5,samueldotj\/TeeRISC-Simulator,SanchayanMaity\/gem5,rallylee\/gem5,markoshorro\/gem5,rallylee\/gem5,qizenguf\/MLC-STT,HwisooSo\/gemV-update,joerocklin\/gem5,briancoutinho0905\/2dsampling,TUD-OS\/gem5-dtu,aclifton\/cpeg853-gem5,SanchayanMaity\/gem5,samueldotj\/TeeRISC-Simulator,kaiyuanl\/gem5,markoshorro\/gem5,Weil0ng\/gem5,rjschof\/gem5,qizenguf\/MLC-STT,powerjg\/gem5-ci-test,yb-kim\/gemV,joerocklin\/gem5,briancoutinho0905\/2dsampling,rjschof\/gem5,yb-kim\/gemV,powerjg\/gem5-ci-test,rjschof\/gem5,TUD-OS\/gem5-dtu,Weil0ng\/gem5,sobercoder\/gem5,austinharris\/gem5-riscv,briancoutinho0905\/2dsampling,joerocklin\/gem5,cancro7\/gem5,cancro7\/gem5"} {"commit":"4008e22c2723f8c516fdb251592839d21437c770","old_file":"site-lisp\/clgc-tempo.el","new_file":"site-lisp\/clgc-tempo.el","old_contents":"","new_contents":"(require 'tempo)\n;; (setq tempo-interactive t)\n\n(tempo-define-template \"org-digraph\"\n '(> \"#+begin_src dot :file \" (p \"Filename: \") \".png\\n\"\n > \"digraph G {\\n\"\n > \"}\\n\"\n > \"#+end_src\\n\"))\n\n(provide 'clgc-tempo)\n","subject":"Add org-digraph template using tempo","message":"Add org-digraph template using tempo\n","lang":"Emacs Lisp","license":"bsd-3-clause","repos":"dgtized\/dotfiles,dgtized\/dotfiles,dgtized\/dotfiles"} {"commit":"c50498888dc78a201d37102c4da4b5b2903e6c18","old_file":"psl-parse.el","new_file":"psl-parse.el","old_contents":"","new_contents":"(setq lexical-binding t)\n\n(with-current-buffer (get-buffer \"*example*\")\n (goto-char (point-min))\n (mpd-parse psl-tokens))\n\n(defvar psl-tokens\n '((expr (block defvar deffun number object lambda id))\n (defvar \"defvar\" id \"=\" expr \"in\" expr)\n (deffun \"deffun\" id params expr \"in\" expr)\n (lambda \"lambda\" params expr)\n (number \"[0-9]+\")\n (block \"{\" exprs \"}\")\n (exprs expr ((\";\" exprs) \"\"))\n\n ;; Identifiers\n (id \"[a-zA-Z]+\")\n (ids id ((\",\" id) \"\"))\n (params \"(\" ids \")\")\n\n ;; Function application\n (funcapp \"(\" exprs \")\")\n\n ;; Objects\n (pairs pair ((\",\" pairs) \"\"))\n (pair id \":\" expr)\n (object \"{\" (\"\" pairs) \"}\")))\n\n(defun mpd-parse (tokens)\n \"Return the next item in the current buffer.\"\n (let ((start (point)))\n (dolist (token tokens)\n (message (format \"Trying %s\" (car token)))\n (let ((result (mpd-match tokens (cdr token))))\n (if (eq result 'no-match)\n (goto-char start)\n (return (cons (car token) result)))))))\n\n(defun mpd-skip-space ()\n \"Skip over whitespace.\"\n (search-forward-regexp \"[[:space:]]*\"))\n\n(defun mpd--cons-if (head tail)\n \"Cons only if tail is no `no-match'.\"\n (if (not (eq tail 'no-match))\n (cons head tail)\n 'no-match))\n\n(defun mpd-match (tokens expr)\n \"Return the matching tokens if expr matches, otherwise return\nthe symbol `no-match'.\"\n (if (null expr)\n ()\n (mpd-skip-space)\n (let ((this (car expr))\n (rest (cdr expr)))\n (etypecase this\n (string\n (if (looking-at this)\n (let* ((end (match-end 0))\n (start (point))\n (capture (buffer-substring (point) end)))\n (goto-char end)\n (let ((result (mpd-match tokens rest)))\n (if (not (eq result 'no-match))\n (cons capture result)\n (goto-char start)\n 'no-match)))\n 'no-match))\n (symbol\n (let ((result (mpd-match tokens (cdr (assoc this tokens)))))\n (if (not (eq result 'no-match))\n (mpd--cons-if (cons this result) (mpd-match tokens rest))\n 'no-match)))\n (list\n (dolist (item this 'no-match)\n (let ((res1 (mpd-match tokens (if (listp item) item (list item)))))\n (if (not (eq res1 'no-match))\n (let ((res2 (mpd-match tokens rest)))\n (if (not (eq res2 'no-match))\n (return (append res1 res2))))))))))))\n","subject":"Add beginnings of a ParselTongue parser.","message":"Add beginnings of a ParselTongue parser.\n","lang":"Emacs Lisp","license":"unlicense","repos":"skeeto\/psl-mode"} {"commit":"b5c71b1428e8cfc9ed54ab220a2f7e188fe58895","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((c++-mode\n (flycheck-clang-standard-library . \"libc++\")\n (cmake-ide-build-dir . \"build\")))\n\n\n\n","subject":"Add config for Emacs cmake-ide and flycheck-clang","message":"Add config for Emacs cmake-ide and flycheck-clang\n","lang":"Emacs Lisp","license":"mit","repos":"toby-allsopp\/coroutine_monad"} {"commit":"734932a48e7ba38fc6a159e535e654d7e9a18dd5","old_file":"emacs.d\/.mc-lists.el","new_file":"emacs.d\/.mc-lists.el","old_contents":"","new_contents":";; This file is automatically generated by the multiple-cursors extension.\n;; It keeps track of your preferences for running commands with multiple cursors.\n\n(setq mc\/cmds-to-run-for-all\n '(\n about-emacs\n autopair-insert-opening\n backward-sexp\n beginning-of-defun\n compile\n dabbrev-expand\n erlang-electric-comma\n erlang-electric-gt\n erlang-electric-semicolon\n forward-sexp\n indent-for-tab-command\n kill-region\n mark-sexp\n org-beginning-of-line\n org-delete-char\n org-end-of-line\n paredit-forward-delete\n paredit-forward-kill-word\n split-line\n wgrep-finish-edit\n yas-abort-snippet\n yas-expand\n ))\n\n(setq mc\/cmds-to-run-once\n '(\n autopair-skip-close-maybe\n helm-M-x\n mac-mwheel-scroll\n org-self-insert-command\n ))\n","subject":"Add customizations for emcas multiple cursors","message":"Add customizations for emcas multiple cursors\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"raghavkarol\/dotfiles,raghavkarol\/dotfiles,raghavkarol\/dotfiles,raghavkarol\/dotfiles,raghavkarol\/dotfiles,raghavkarol\/dotfiles,raghavkarol\/dotfiles"} {"commit":"d712b977a9cc37b5b978c69e345cfe71610a337f","old_file":"org-publish-project-alist.el","new_file":"org-publish-project-alist.el","old_contents":"","new_contents":";; This file configures org modes publish functionality to generate the gh-pages site for this project.\n;; Load this file\/buffer and then execute: M-x org-publish-project RET gh-pages RET\n\n(setq org-publish-project-alist\n '((\"gh-notes\"\n\t :base-directory \".\/org\"\n\t :base-extension \"org\"\n\t :publishing-directory \".\/gh-pages\"\n\t :recursive t\n\t :publishing-function org-html-publish-to-html\n\t :headline-levels 4\n\t :auto-preamble t)\n\t(\"gh-pages\" :components (\"gh-notes\"))))\n","subject":"Add org-mode publishing setup source file","message":"Add org-mode publishing setup source file\n","lang":"Emacs Lisp","license":"apache-2.0","repos":"bpoweski\/http.async.client"} {"commit":"0e9cbb7282349b7911548af1ac71973b48859cfb","old_file":"lisp\/eglot-flycheck_init_init.el","new_file":"lisp\/eglot-flycheck_init_init.el","old_contents":"","new_contents":"(defvar-local +lsp--flycheck-eglot--current-errors nil)\n\n(defun +lsp--flycheck-eglot-init (checker callback)\n \"CHECKER is the checker (eglot).\nCALLBACK is the function that we need to call when we are done, on all the errors.\"\n (eglot-flymake-backend #'+lsp--flycheck-eglot--on-diagnostics)\n (funcall callback 'finished +lsp--flycheck-eglot--current-errors))\n\n(defun +lsp--flycheck-eglot--on-diagnostics (diags &rest _)\n (cl-labels\n ((flymake-diag->flycheck-err\n (diag)\n (with-current-buffer (flymake--diag-buffer diag)\n (flycheck-error-new-at-pos\n (flymake--diag-beg diag)\n (pcase (flymake--diag-type diag)\n ('eglot-note 'info)\n ('eglot-warning 'warning)\n ('eglot-error 'error)\n (_ (error \"Unknown diagnostic type, %S\" diag)))\n (flymake--diag-text diag)\n :end-pos (flymake--diag-end diag)\n :checker 'eglot\n :buffer (current-buffer)\n :filename (buffer-file-name)))))\n (setq +lsp--flycheck-eglot--current-errors\n (mapcar #'flymake-diag->flycheck-err diags))\n ;; Call Flycheck to update the diagnostics annotations\n (flycheck-buffer-deferred)))\n\n(defun +lsp--flycheck-eglot-available-p ()\n (bound-and-true-p eglot--managed-mode))\n\n(flycheck-define-generic-checker 'eglot\n \"Report `eglot' diagnostics using `flycheck'.\"\n :start #'+lsp--flycheck-eglot-init\n :predicate #'+lsp--flycheck-eglot-available-p\n :modes '(prog-mode text-mode))\n\n(push 'eglot flycheck-checkers)\n\n(defun +lsp-eglot-prefer-flycheck-h ()\n (when eglot--managed-mode\n (flymake-mode -1)\n (when-let ((current-checker (flycheck-get-checker-for-buffer)))\n (unless (equal current-checker 'eglot)\n (flycheck-add-next-checker 'eglot current-checker)))\n (flycheck-add-mode 'eglot major-mode)\n (flycheck-mode 1)\n ;; Call flycheck on initilization to make sure to display initial\n ;; errors\n (flycheck-buffer-deferred)))\n\n(add-hook 'eglot-managed-mode-hook '+lsp-eglot-prefer-flycheck-h)\n\n(with-eval-after-load\n (when (and\n (not (fboundp 'flymake--diag-buffer))\n (fboundp 'flymake--diag-locus))\n (defalias 'flymake--diag-buffer 'flymake--diag-locus))\n )\n\n(provide 'eglot-flycheck_init)\n","subject":"Add flycheck support to elgot","message":"Add flycheck support to elgot\n","lang":"Emacs Lisp","license":"mit","repos":"frobware\/emacs.d"} {"commit":"1fbe7079f011d8a1e3e339f62136b8586419312f","old_file":"emacs\/personal\/fast-rspec.el","new_file":"emacs\/personal\/fast-rspec.el","old_contents":"","new_contents":"(defun find-git-repo (dir)\n (if (string= \"\/\" dir)\n (message \"not in a git repo.\")\n (if (file-exists-p (expand-file-name \".git\/\" dir))\n dir\n (find-git-repo (expand-file-name \"..\/\" dir)))))\n\n(defun rspec-buffer ()\n (interactive)\n (let ((default-directory (find-git-repo default-directory))\n (command (concat \"bundle exec rspec -c \" (buffer-file-name (window-buffer)))))\n (async-shell-command command)))\n\n\n(global-set-key (kbd \"C-c C-e\") 'rspec-buffer)\n","subject":"Add fast execution of rspec","message":"Add fast execution of rspec\n","lang":"Emacs Lisp","license":"mit","repos":"aviscasillas\/dotfiles,aviscasillas\/dotfiles,aviscasillas\/dotfiles"} {"commit":"85c8589cca71ebd09616cc055a58f97856ccdd3c","old_file":"init.el","new_file":"init.el","old_contents":"","new_contents":";; \n;; Author: Rafael Campos Nunes\n;; Email: \n\n;; Add MELPA repository\n(when (>= emacs-major-version 24)\n (require 'package)\n (add-to-list\n 'package-archives\n '(\"melpa\" . \"http:\/\/melpa.org\/packages\/\")\n t)\n (package-initialize))\n\n;; Disabling tool-bar-mode\n(tool-bar-mode 0)\n;; To view the column index\n(column-number-mode 1)\n;; To view line numbers\n(global-linum-mode 1)\n\n;; Wakatime configuration\n(setq wakatime-api-key \"{your_api_key}\")\n(setq wakatime-python-bin \"{your_python_bin}\")\n\n(global-wakatime-mode 1)\n\n;; Better keys for split\/delete windows\n(global-set-key (kbd \"M-3\") 'delete-other-windows)\n(global-set-key (kbd \"M-4\") 'split-window-below)\n(global-set-key (kbd \"M-$\") 'split-window-right)\n(global-set-key (kbd \"M-RET\") 'other-window)\n(global-set-key (kbd \"M-0\") 'delete-window)\n\n(custom-set-variables\n '(custom-enabled-themes (quote (tsdh-dark))))\n\n(custom-set-faces\n ;; custom-set-faces was added by Custom.\n ;; If you edit it by hand, you could mess it up, so be careful.\n ;; Your init file should contain only one such instance.\n ;; If there is more than one, they won't work right.\n )\n","subject":"Add my emacs configuration file","message":"Add my emacs configuration file\n\nSigned-off-by: Rafael Campos Nunes <42f0a9af43f2538fd3153aecc7c3ff958e89d724@engineer.com>\n","lang":"Emacs Lisp","license":"mit","repos":"rafaelcn\/dotfiles,rafaelcn\/Linux-setup"} {"commit":"d5692b3a5750c45f6accd7b2e2d55282c097bc4e","old_file":"tools\/fact-generator\/.dir-locals.el","new_file":"tools\/fact-generator\/.dir-locals.el","old_contents":"","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((c++-mode\n (flycheck-checker . c\/c++-gcc)\n (flycheck-gcc-language-standard . \"c++11\")\n (eval . (setq flycheck-gcc-include-path\n (list \"..\/include\"\n (replace-regexp-in-string\n \"\\n$\" \"\"\n (shell-command-to-string \"llvm-config --includedir\")))))))\n","subject":"Add flycheck options for fact-generator","message":"Add flycheck options for fact-generator\n","lang":"Emacs Lisp","license":"mit","repos":"plast-lab\/cclyzer,plast-lab\/llvm-datalog"} {"commit":"dc40fa36d3205d2c463661b8c808fae4daaf873c","old_file":"modules\/lang\/latex\/+ref.el","new_file":"modules\/lang\/latex\/+ref.el","old_contents":"","new_contents":";;; lang\/latex\/+ref.el -*- lexical-binding: t; -*-\n\n(defvar +latex-bibtex-file \"\"\n \"File AUCTeX (specifically RefTeX) uses to search for citations.\")\n\n(def-package! reftex\n :hook ((latex-mode LaTeX-mode) . turn-on-reftex)\n :init\n (setq reftex-plug-into-AUCTeX t\n reftex-toc-split-windows-fraction 0.3)\n :config\n ;; Get ReTeX working with biblatex\n ;; http:\/\/tex.stackexchange.com\/questions\/31966\/setting-up-reftex-with-biblatex-citation-commands\/31992#31992\n (setq reftex-cite-format\n '((?t . \"\\\\textcite[]{%l}\")\n (?a . \"\\\\autocite[]{%l}\")\n (?c . \"\\\\cite[]{%l}\")\n (?s . \"\\\\smartcite[]{%l}\")\n (?f . \"\\\\footcite[]{%l}\")\n (?n . \"\\\\nocite{%l}\")\n (?b . \"\\\\blockcquote[]{%l}{}\")))\n (unless (string-empty-p +latex-bibtex-file)\n (setq reftex-default-bibliography (list (expand-file-name +latex-bibtex-file))))\n (map! :map reftex-mode-map\n :localleader :n \";\" 'reftex-toc)\n (add-hook! 'reftex-toc-mode-hook\n (reftex-toc-rescan)\n (map! :local\n :e \"j\" #'next-line\n :e \"k\" #'previous-line\n :e \"q\" #'kill-buffer-and-window\n :e \"ESC\" #'kill-buffer-and-window)))\n\n(def-package! company-reftex\n :when (featurep! :completion company)\n :after reftex\n :config\n (set-company-backend! 'reftex-mode 'company-reftex-labels 'company-reftex-citations))\n\n(def-package! bibtex\n :defer t\n :config\n (setq bibtex-dialect 'biblatex\n bibtex-align-at-equal-sign t\n bibtex-text-indentation 20)\n (define-key bibtex-mode-map (kbd \"C-c \\\\\") #'bibtex-fill-entry))\n\n(def-package! ivy-bibtex\n :when (featurep! :completion ivy)\n :commands ivy-bibtex)\n\n(def-package! helm-bibtex\n :when (featurep! :completion helm)\n :commands helm-bibtex)\n\n(after! bibtex-completion\n (unless (string-empty-p +latex-bibtex-file)\n (setq bibtex-completion-bibliography (list (expand-file-name +latex-bibtex-file)))))\n\n\n","subject":"Move referencing setup into different file","message":"Move referencing setup into different file\n","lang":"Emacs Lisp","license":"mit","repos":"UndeadKernel\/emacs_doom,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/.emacs.d,UndeadKernel\/emacs_doom,hlissner\/.emacs.d,hlissner\/doom-emacs,hlissner\/.emacs.d,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs,UndeadKernel\/emacs_doom,hlissner\/doom-emacs"} {"commit":"20f47e127bed347a40efc5829ea0023c647b7c51","old_file":"lisp\/init-auto-complete.el","new_file":"lisp\/init-auto-complete.el","old_contents":";;; Basic ruby setup\n(require-package 'auto-complete)\n\n(global-auto-complete-mode t)\n\n(define-key ac-mode-map (kbd \"M-TAB\") 'auto-complete)\n\n(provide 'init-auto-complete)\n","new_contents":";;; Basic ruby setup\n(require-package 'auto-complete)\n\n(global-auto-complete-mode t)\n\n(define-key ac-mode-map (kbd \"M-TAB\") 'auto-complete)\n\n(add-to-list 'ac-modes 'coffee-mode)\n(add-to-list 'ac-modes 'enh-ruby-mode)\n\n(provide 'init-auto-complete)\n","subject":"Add some more auto complete modes","message":"Add some more auto complete modes\n","lang":"Emacs Lisp","license":"mit","repos":"lstoll\/dotfiles,lstoll\/repo,lstoll\/dotfiles,lstoll\/repo,lstoll\/repo,lstoll\/dotfiles"} {"commit":"d6e6485d862035d6bbd909f4daf69ff21f193a37","old_file":"init-package\/init-ruby-mode.el","new_file":"init-package\/init-ruby-mode.el","old_contents":"","new_contents":"(require 'ruby-mode)\n\n(add-to-list 'auto-mode-alist\n '(\"\\\\.\\\\(rb\\\\|ru\\\\|builder\\\\|rake\\\\|thor\\\\|gemspec\\\\)\\\\'\" .\n ruby-mode))\n(add-to-list 'auto-mode-alist\n '(\"\\\\(rake\\\\|thor\\\\|guard\\\\|gem\\\\|cap\\\\|vagrant\\\\)file\\\\'\" .\n ruby-mode))\n","subject":"Add file association to ruby-mode","message":"Add file association to ruby-mode\n","lang":"Emacs Lisp","license":"mit","repos":"tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs,tsonntag\/dotemacs"} {"commit":"06d54b58f2ea5c49507164d97e8837406484a274","old_file":"build\/base16-zenburn-theme.el","new_file":"build\/base16-zenburn-theme.el","old_contents":"","new_contents":";; base16-zenburn-theme.el -- A base16 colorscheme\n\n;;; Commentary:\n;; Base16: (https:\/\/github.com\/chriskempson\/base16)\n\n;;; Authors:\n;; Scheme: elnawe\n;; Template: Kaleb Elwert \n\n;;; Code:\n\n(require 'base16-theme)\n\n(defvar base16-zenburn-colors\n '(:base00 \"#3f3f3f\"\n :base01 \"#404040\"\n :base02 \"#606060\"\n :base03 \"#4f4f4f\"\n :base04 \"#808080\"\n :base05 \"#dcdccc\"\n :base06 \"#c0c0c0\"\n :base07 \"#ffffff\"\n :base08 \"#dca3a3\"\n :base09 \"#dfaf8f\"\n :base0A \"#e0cf9f\"\n :base0B \"#5f7f5f\"\n :base0C \"#93e0e3\"\n :base0D \"#7cb8bb\"\n :base0E \"#dc8cc3\"\n :base0F \"#000000\")\n \"All colors for Base16 Zenburn are defined here.\")\n\n;; Define the theme\n(deftheme base16-zenburn)\n\n;; Add all the faces to the theme\n(base16-theme-define 'base16-zenburn base16-zenburn-colors)\n\n;; Mark the theme as provided\n(provide-theme 'base16-zenburn)\n\n(provide 'base16-zenburn-theme)\n\n;;; base16-zenburn-theme.el ends here\n","subject":"Add base16-zenburn... this feels sacrilegious","message":"Add base16-zenburn... this feels sacrilegious\n","lang":"Emacs Lisp","license":"mit","repos":"belak\/base16-emacs"} {"commit":"42242c9248b665123ee8105fddbc0b8fa46df404","old_file":"emacs\/init.el","new_file":"emacs\/init.el","old_contents":"","new_contents":"(global-set-key (kbd \"C-c l\") 'org-store-link)\n(global-set-key (kbd \"C-c a\") 'org-agenda)\n(global-set-key (kbd \"C-c c\") 'org-capture)\n\n","subject":"Add Emacs config: configure global Org keys","message":"Add Emacs config: configure global Org keys\n","lang":"Emacs Lisp","license":"mit","repos":"raindev\/dotfiles"} {"commit":"827e785e6a9085eab3a27a3df9269dff32392c0f","old_file":"config\/language_meson.el","new_file":"config\/language_meson.el","old_contents":"","new_contents":";;; package --- Summary\n\n;;; Commentary:\n\n;;; Code:\n\n(add-hook 'meson-mode-hook 'company-mode)(add-hook 'meson-mode-hook 'company-mode)\n\n(provide 'language_meson)\n\n;;; language_meson ends here\n","subject":"Use meson mode with company","message":"Use meson mode with company\n","lang":"Emacs Lisp","license":"unlicense","repos":"schanur\/emacs.d"} {"commit":"d37ad5cd918a1c1e7d8584028a432947f5071962","old_file":"skewer-proxy.el","new_file":"skewer-proxy.el","old_contents":"","new_contents":";;; skewer-proxy.el --- proxy a website so that it can be skewered\n\n;; This is free and unencumbered software released into the public domain.\n\n;;; Commentary:\n\n;; Due to same origin policy, simply including the skewer JavaScript\n;; in a page is not enough to skewer that website. The page must be\n;; served by Emacs. To help accommodate this, Emacs can act as a\n;; transparent proxy.\n\n;; http:\/\/en.wikipedia.org\/wiki\/Same_origin_policy\n\n;; Set `skewer-proxy-url' to the remote URL. Don't include the path,\n;; so there's no trailing slash. Then enable the proxy with\n;; `skewer-proxy-enable', which will overwrite the servlet currently\n;; installed in `httpd\/', probably the simple-httpd file server.\n;; Finally, `skewer-proxy-disable' will restore the original `httpd\/'\n;; servlet.\n\n;;; Code:\n\n(require 'skewer-mode)\n\n(defvar skewer-proxy-url \"http:\/\/example.com\"\n \"Remote server for the silent proxy.\")\n\n(defvar skewer--orig-httpd\/ (symbol-function 'httpd\/)\n \"Original definition of the servlet at httpd\/.\")\n\n(defvar skewer--enabled nil\n \"Current status of skewer-proxy.\")\n\n(defun skewer-proxy-servlet (proc p &rest args)\n (with-current-buffer (url-retrieve-synchronously (concat skewer-proxy-url p))\n (let* ((header-string (car (split-string (buffer-string) \"\\n\\r?\\n\\r?\")))\n (header (httpd-parse header-string)))\n (process-send-region proc (point-min) (point-max))\n (if (equal \"close\" (cadr (assoc \"Connection\" header)))\n (process-send-eof proc)))))\n\n(defun skewer-proxy-enable ()\n \"Enable the skewer proxy, overwriting the httpd\/ servlet.\"\n (interactive)\n (unless skewer--enabled\n (setq skewer--enabled t)\n (setq skewer--orig-httpd\/ (symbol-function 'httpd\/))\n (fset 'httpd\/ (symbol-function 'skewer-proxy-servlet))))\n\n(defun skewer-proxy-disable ()\n \"Disable the skewer proxy, restoring the original httpd\/ function.\"\n (interactive)\n (fset 'httpd\/ skewer--orig-httpd\/)\n (setq skewer--enabled nil))\n\n(provide 'skewer-proxy)\n\n;;; skewer-proxy.el ends here\n","subject":"Implement a transparent proxy, to defeat same origin policy.","message":"Implement a transparent proxy, to defeat same origin policy.\n","lang":"Emacs Lisp","license":"unlicense","repos":"syohex\/skewer-mode,syohex\/skewer-mode,kostafey\/skewer-mode,kostafey\/skewer-mode,skeeto\/skewer-mode,skeeto\/skewer-mode,emacsmirror\/skewer-mode,emacsmirror\/skewer-mode"} {"commit":"2f52c9e98e3cd5496d5f1c98e88816d6b4a1a724","old_file":".dir-locals.el","new_file":".dir-locals.el","old_contents":"","new_contents":";;; Directory Local Variables\n;;; For more information see (info \"(emacs) Directory Variables\")\n\n((clojure-mode\n (clojure-indent-style . :always-align)\n (indent-tabs-mode . nil)\n (fill-column . 80)))\n","subject":"Add some default project settings for Emacs users","message":"Add some default project settings for Emacs users\n\nThis ensure that everyone is using the same indentation style\nand no tabs.\n","lang":"Emacs Lisp","license":"epl-1.0","repos":"clojure-emacs\/refactor-nrepl,clojure-emacs\/refactor-nrepl"} {"commit":"edd15e58db1500112aa37dfac16dbf526c729c58","old_file":"modules\/init-company.el","new_file":"modules\/init-company.el","old_contents":";;;; company-mode\n\n(require 'rtags)\n(require 'company)\n\n;; Turn on rtags completions\n(setq rtags-completions-enabled t)\n\n;; Turn on company mode everywhere\n(global-company-mode)\n\n;; Use ESC to escape company-complete (in addition to C-g)\n(define-key company-active-map (kbd \"\") 'company-abort)\n\n;; Key to force trigger company-complete\n(define-key company-mode-map [(control .)] 'company-complete)\n\n(provide 'init-company)\n","new_contents":";;;; company-mode\n\n(require 'rtags)\n(require 'company)\n(require 'diminish)\n\n;; Turn on rtags completions\n(setq rtags-completions-enabled t)\n\n;; Turn on company mode everywhere\n(global-company-mode)\n\n;; Use ESC to escape company-complete (in addition to C-g)\n(define-key company-active-map (kbd \"\") 'company-abort)\n\n;; Key to force trigger company-complete\n(define-key company-mode-map [(control .)] 'company-complete)\n\n;; Clean up mode-line.\n(eval-after-load \"company\"\n '(diminish 'company-mode \"CA\"))\n\n(provide 'init-company)\n","subject":"Clean up line mode for company","message":"Clean up line mode for company\n\n'company' is a bit too long to my taste. Let's use 'CA' which is\nnot only shorter, not only respects Complete Any but is an anagram\nof 'AC' used by the competition a.k.a auto-complete.\n","lang":"Emacs Lisp","license":"mit","repos":"steve-downey\/dot.emacs,fcassirer\/dot.emacs,pkryger\/exordium,jbibollet\/exordium,philippe-grenet\/exordium,psipika\/exordium"} {"commit":"640e0c356bccfc966587d1bf4088771c92d499ca","old_file":"emacs\/python_elpy.emacs","new_file":"emacs\/python_elpy.emacs","old_contents":"","new_contents":";; to install eply: pip install jedi flake8 autopep8 rope snakeviz\n;; M-x package-refresh-contents\n;; M-x package-install RET elpy RET\n\n(setq user-mail-address \"matthieu.garrigues@gmail.com\")\n(setq user-full-name \"Matthieu Garrigues \")\n\n(require 'package)\n(add-to-list 'package-archives\n '(\"melpa-stable\" . \"https:\/\/stable.melpa.org\/packages\/\"))\n(package-initialize)\n(elpy-enable)\n\n\n(setq inhibit-startup-message t) ; don't show the GNU splash screen\n(scroll-bar-mode -1) ; no scroll bar\n(menu-bar-mode -1) ; no menu bar\n(tool-bar-mode -1) ; no tool bar\n(setq frame-title-format \"%b\") ; titlebar shows buffer's name\n(line-number-mode t) ; display line number in modeline\n(column-number-mode t) ; display column number in modeline\n ;(iswitchb-mode) ; switch sexy\n\n;; SET cursor and mouse-pointer colours\n(set-cursor-color \"pink\")\n(set-mouse-color \"goldenrod\")\n\n;; Set region background colour\n(set-face-background 'region \"blue\")\n\n;; Set emacs background colour\n(set-background-color \"black\")\n(set-foreground-color \"#CCDDFF\")\n(set-border-color\t\"#FF0000\")\n\n;; Navigation\n(global-set-key [M-left] 'windmove-left) ; move to left windnow\n(global-set-key [M-right] 'windmove-right) ; move to right window\n(global-set-key [M-up] 'windmove-up) ; move to upper window\n(global-set-key [M-down] 'windmove-down)\n\n(global-set-key [f7] 'compile)\n(global-set-key [f8] 'recompile)\n\n\n;; Backups\n(setq\n backup-by-copying t ; don't clobber symlinks\n backup-directory-alist\n '((\".\" . \"~\/.emacs_saves\")) ; don't litter my fs tree\n delete-old-versions t\n kept-new-versions 6\n kept-old-versions 2\n version-control t) ; use versioned backups\n","subject":"Add python elpy only conf.","message":"Add python elpy only conf.\n","lang":"Emacs Lisp","license":"mit","repos":"matt-42\/configurations"} {"commit":"ca69dd6e1c7cc8b4feab08f7c098c482ab48d1df","old_file":"emacs\/dot-emacs.d\/private\/local\/conda\/packages.el","new_file":"emacs\/dot-emacs.d\/private\/local\/conda\/packages.el","old_contents":"","new_contents":";;; packages.el --- Conda Layer packages File for Spacemacs\n;;\n;; Author: James K. Glasbrenner \n;; URL: https:\/\/github.com\/jkglasbrenner\/dotfiles\n;;\n;; This file is not a part of GNU Emacs.\n;;\n;;; License: Unlicense\n\n(setq conda-packages\n '(\n (conda :location elpa)\n ))\n\n(defun conda\/init-conda ()\n (use-package conda\n :defer t\n :init\n (progn\n (setq conda-anaconda-home (concat (getenv \"HOME\") \"\/.anaconda3\/\"))\n )\n :config\n (progn\n (conda-env-initialize-interactive-shells)\n (conda-env-initialize-eshell)\n (conda-env-autoactivate-mode t)\n )\n )\n )\n","subject":"Add custom layer for loading conda-mode","message":"Add custom layer for loading conda-mode\n","lang":"Emacs Lisp","license":"unlicense","repos":"jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles"}