From 3c152cc2a4930be62d3171681af5d3b521cd241e Mon Sep 17 00:00:00 2001 From: Bazsalanszky Date: Sun, 7 Jun 2020 18:05:20 +0200 Subject: [PATCH] Added hunspell flycheck --- auto-save-list/.saves-18069-GlaDOS~ | 6 + auto-save-list/.saves-6396-GlaDOS~ | 2 - conf.el | 47 ++- conf.org | 14 +- .../drag-stuff-autoloads.el | 83 ++++ .../drag-stuff-20161108.749/drag-stuff-pkg.el | 4 + elpa/drag-stuff-20161108.749/drag-stuff.el | 364 ++++++++++++++++++ elpa/drag-stuff-20161108.749/drag-stuff.elc | Bin 0 -> 15463 bytes init.el~ | 20 + plugins/yasnippet | 1 + ...lpa!drag-stuff-20161108.749!semantic.cache | 16 + .../!home!balazs!.emacs.d!semantic.cache | 16 +- semanticdb/!home!balazs!Code!semantic.cache | 14 + smex-items | 16 + .../cf/srix/78f632d6ebc04fdf60a48d19d6285f6c | Bin 0 -> 1017 bytes .../cf/srix/d60e3ce6123a9c98515951dcb9927a40 | 90 +++++ url/cookies | 14 + url/cookies~ | 0 18 files changed, 675 insertions(+), 32 deletions(-) create mode 100644 auto-save-list/.saves-18069-GlaDOS~ delete mode 100644 auto-save-list/.saves-6396-GlaDOS~ create mode 100644 elpa/drag-stuff-20161108.749/drag-stuff-autoloads.el create mode 100644 elpa/drag-stuff-20161108.749/drag-stuff-pkg.el create mode 100644 elpa/drag-stuff-20161108.749/drag-stuff.el create mode 100644 elpa/drag-stuff-20161108.749/drag-stuff.elc create mode 100644 init.el~ create mode 160000 plugins/yasnippet create mode 100644 semanticdb/!home!balazs!.emacs.d!elpa!drag-stuff-20161108.749!semantic.cache create mode 100644 semanticdb/!home!balazs!Code!semantic.cache create mode 100644 smex-items create mode 100644 url/cache/balazs/http/cf/srix/78f632d6ebc04fdf60a48d19d6285f6c create mode 100644 url/cache/balazs/http/cf/srix/d60e3ce6123a9c98515951dcb9927a40 create mode 100644 url/cookies create mode 100644 url/cookies~ diff --git a/auto-save-list/.saves-18069-GlaDOS~ b/auto-save-list/.saves-18069-GlaDOS~ new file mode 100644 index 0000000..a2f20f8 --- /dev/null +++ b/auto-save-list/.saves-18069-GlaDOS~ @@ -0,0 +1,6 @@ +/home/balazs/.emacs.d/conf.org +/home/balazs/.emacs.d/#conf.org# +/home/balazs/Dokumentumok/Org/SzhArch/szgarch.org +/home/balazs/Dokumentumok/Org/SzhArch/#szgarch.org# +/home/balazs/.emacs.d/init.el +/home/balazs/.emacs.d/#init.el# diff --git a/auto-save-list/.saves-6396-GlaDOS~ b/auto-save-list/.saves-6396-GlaDOS~ deleted file mode 100644 index 1114a86..0000000 --- a/auto-save-list/.saves-6396-GlaDOS~ +++ /dev/null @@ -1,2 +0,0 @@ -/home/balazs/.emacs.d/conf.org -/home/balazs/.emacs.d/#conf.org# diff --git a/conf.el b/conf.el index 88a5727..18dbac0 100644 --- a/conf.el +++ b/conf.el @@ -42,15 +42,6 @@ There are two things you can do about this warning: ;;(require 'cask "~/.cask/cask.el") ;;(cask-initialize) -;;(add-to-list 'load-path "/some/path/neotree") -(require 'neotree) -(global-set-key [f8] 'neotree-toggle) - -(nyan-mode) - -(require 'org-bullets) -(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))) - (require 'rtags) (require 'company-rtags) @@ -97,8 +88,8 @@ There are two things you can do about this warning: (eval-after-load 'flycheck '(add-hook 'flycheck-mode-hook #'flycheck-irony-setup)) -;(eval-after-load 'flycheck -; '(add-hook 'flycheck-mode-hook #'flycheck-clang-tidy-setup)) +(eval-after-load 'flycheck + '(add-hook 'flycheck-mode-hook #'flycheck-clang-tidy-setup)) (cmake-ide-setup) @@ -124,6 +115,25 @@ There are two things you can do about this warning: (smex-initialize) ; Can be omitted. This might cause a (minimal) delay ; when Smex is auto-initialized on its first run. +(add-to-list 'load-path + "~/.emacs.d/plugins/yasnippet") +(require 'yasnippet) +(yas-global-mode 1) + +(add-hook 'c-mode-hook #'yas-minor-mode) +(add-hook 'c++-mode-hook #'yas-minor-mode) + +(drag-stuff-mode t) + +(require 'org-bullets) +(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))) + +(nyan-mode) + +;;(add-to-list 'load-path "/some/path/neotree") +(require 'neotree) +(global-set-key [f8] 'neotree-toggle) + (define-key c-mode-base-map (kbd "M-.") (function rtags-find-symbol-at-point)) (define-key c-mode-base-map (kbd "M-,") (function rtags-find-references-at-point)) (define-key c-mode-base-map (kbd "M-;") (function rtags-find-file)) @@ -180,8 +190,6 @@ There are two things you can do about this warning: (setq minibuffer-completion-confirm nil) -(setq ispell-local-dictionary "/home/balazs/.local/hu_HU.dic") - ;;(load-theme "humanoid-dark" t) ;;(add-hook 'after-init-hook (lambda () (load-theme "humanoid-dark"))) @@ -192,14 +200,21 @@ There are two things you can do about this warning: (add-hook 'org-mode-hook '(lambda () (setq fill-column 80))) (add-hook 'org-mode-hook 'auto-fill-mode) +;; Source: http://www.emacswiki.org/emacs-en/download/misc-cmds.el +(global-auto-revert-mode 1) +(setq org-format-latex-options (plist-put org-format-latex-options :scale 2.0)) + (setq TeX-auto-save t) (setq TeX-parse-self t) (setq-default TeX-master nil) (setq doc-view-continuous t) -;; Source: http://www.emacswiki.org/emacs-en/download/misc-cmds.el -(global-auto-revert-mode 1) -(setq org-format-latex-options (plist-put org-format-latex-options :scale 2.0)) +(setq ispell-program-name "hunspell" + ispell-local-dictionary "hu_HU" + ispell-skip-html t + ispell-local-dictionary-alist + '(("hu_HU" "\[\[:alpha:\]\]" "[^[:alpha:]]" "[']" nil ("-d" "hu_HU") nil utf-8))) +(setq ispell-dictionary "hu_HU") ;(cd "~/CLionProjects/prog2/") diff --git a/conf.org b/conf.org index 0c15d07..1c1df1b 100644 --- a/conf.org +++ b/conf.org @@ -253,10 +253,6 @@ There are two things you can do about this warning: #+BEGIN_SRC emacs-lisp (setq minibuffer-completion-confirm nil) #+END_SRC -** Spellcheck - #+BEGIN_SRC emacs-lisp -(setq ispell-local-dictionary "/home/balazs/.local/hu_HU.dic") - #+END_SRC ** Téma betöltése #+BEGIN_SRC emacs-lisp ;;(load-theme "humanoid-dark" t) @@ -270,8 +266,12 @@ There are two things you can do about this warning: (add-hook 'org-mode-hook '(lambda () (setq fill-column 80))) (add-hook 'org-mode-hook 'auto-fill-mode) - #+END_SRC +#+BEGIN_SRC emacs-lisp +;; Source: http://www.emacswiki.org/emacs-en/download/misc-cmds.el +(global-auto-revert-mode 1) +(setq org-format-latex-options (plist-put org-format-latex-options :scale 2.0)) +#+END_SRC ** LaTeX #+BEGIN_SRC emacs-lisp (setq TeX-auto-save t) @@ -293,9 +293,5 @@ There are two things you can do about this warning: #+END_SRC ** Teszt #+BEGIN_SRC emacs-lisp -;; Source: http://www.emacswiki.org/emacs-en/download/misc-cmds.el -(global-auto-revert-mode 1) -(setq org-format-latex-options (plist-put org-format-latex-options :scale 2.0)) - ;(cd "~/CLionProjects/prog2/") #+END_SRC diff --git a/elpa/drag-stuff-20161108.749/drag-stuff-autoloads.el b/elpa/drag-stuff-20161108.749/drag-stuff-autoloads.el new file mode 100644 index 0000000..9776a16 --- /dev/null +++ b/elpa/drag-stuff-20161108.749/drag-stuff-autoloads.el @@ -0,0 +1,83 @@ +;;; drag-stuff-autoloads.el --- automatically extracted autoloads +;; +;;; Code: + +(add-to-list 'load-path (directory-file-name + (or (file-name-directory #$) (car load-path)))) + + +;;;### (autoloads nil "drag-stuff" "drag-stuff.el" (0 0 0 0)) +;;; Generated autoloads from drag-stuff.el + +(autoload 'drag-stuff-up "drag-stuff" "\ +Drag stuff ARG lines up. + +\(fn ARG)" t nil) + +(autoload 'drag-stuff-down "drag-stuff" "\ +Drag stuff ARG lines down. + +\(fn ARG)" t nil) + +(autoload 'drag-stuff-right "drag-stuff" "\ +Drag stuff ARG lines to the right. + +\(fn ARG)" t nil) + +(autoload 'drag-stuff-left "drag-stuff" "\ +Drag stuff ARG lines to the left. + +\(fn ARG)" t nil) + +(autoload 'drag-stuff-mode "drag-stuff" "\ +Drag stuff around. + +\(fn &optional ARG)" t nil) + +(autoload 'turn-on-drag-stuff-mode "drag-stuff" "\ +Turn on `drag-stuff-mode'. + +\(fn)" t nil) + +(autoload 'turn-off-drag-stuff-mode "drag-stuff" "\ +Turn off `drag-stuff-mode'. + +\(fn)" t nil) + +(defvar drag-stuff-global-mode nil "\ +Non-nil if Drag-Stuff-Global mode is enabled. +See the `drag-stuff-global-mode' command +for a description of this minor mode. +Setting this variable directly does not take effect; +either customize it (see the info node `Easy Customization') +or call the function `drag-stuff-global-mode'.") + +(custom-autoload 'drag-stuff-global-mode "drag-stuff" nil) + +(autoload 'drag-stuff-global-mode "drag-stuff" "\ +Toggle Drag-Stuff mode in all buffers. +With prefix ARG, enable Drag-Stuff-Global mode if ARG is positive; +otherwise, disable it. If called from Lisp, enable the mode if +ARG is omitted or nil. + +Drag-Stuff mode is enabled in all buffers where +`turn-on-drag-stuff-mode' would do it. +See `drag-stuff-mode' for more information on Drag-Stuff mode. + +\(fn &optional ARG)" t nil) + +(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "drag-stuff" '("drag-stuff-"))) + +;;;*** + +;;;### (autoloads nil nil ("drag-stuff-pkg.el") (0 0 0 0)) + +;;;*** + +;; Local Variables: +;; version-control: never +;; no-byte-compile: t +;; no-update-autoloads: t +;; coding: utf-8 +;; End: +;;; drag-stuff-autoloads.el ends here diff --git a/elpa/drag-stuff-20161108.749/drag-stuff-pkg.el b/elpa/drag-stuff-20161108.749/drag-stuff-pkg.el new file mode 100644 index 0000000..5aba08f --- /dev/null +++ b/elpa/drag-stuff-20161108.749/drag-stuff-pkg.el @@ -0,0 +1,4 @@ +(define-package "drag-stuff" "20161108.749" "Drag stuff (lines, words, region, etc...) around" 'nil :commit "6d06d846cd37c052d79acd0f372c13006aa7e7c8") +;; Local Variables: +;; no-byte-compile: t +;; End: diff --git a/elpa/drag-stuff-20161108.749/drag-stuff.el b/elpa/drag-stuff-20161108.749/drag-stuff.el new file mode 100644 index 0000000..3948270 --- /dev/null +++ b/elpa/drag-stuff-20161108.749/drag-stuff.el @@ -0,0 +1,364 @@ +;;; drag-stuff.el --- Drag stuff (lines, words, region, etc...) around + +;; Copyright (C) 2010-2016 Johan Andersson + +;; Author: Johan Andersson +;; Maintainer: Johan Andersson +;; Version: 0.3.0 +;; Keywords: speed, convenience +;; URL: http://github.com/rejeep/drag-stuff + +;; This file is NOT part of GNU Emacs. + +;;; License: + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation; either version 3, or (at your option) +;; any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with GNU Emacs; see the file COPYING. If not, write to the +;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +;; Boston, MA 02110-1301, USA. + +;;; Commentary: + +;; drag-stuff is a minor mode for dragging stuff around in Emacs. You +;; can drag lines, words and region. + +;; To use drag-stuff, make sure that this file is in Emacs load-path +;; (add-to-list 'load-path "/path/to/directory/or/file") +;; +;; Then require drag-stuff +;; (require 'drag-stuff) + +;; To start drag-stuff +;; (drag-stuff-mode t) or M-x drag-stuff-mode +;; +;; drag-stuff is buffer local, so hook it up +;; (add-hook 'ruby-mode-hook 'drag-stuff-mode) +;; +;; Or use the global mode to activate it in all buffers. +;; (drag-stuff-global-mode t) + +;; Drag Stuff stores a list (`drag-stuff-except-modes') of modes in +;; which `drag-stuff-mode' should not be activated in (note, only if +;; you use the global mode) because of conflicting use. +;; +;; You can add new except modes: +;; (add-to-list 'drag-stuff-except-modes 'conflicting-mode) + +;; Default modifier key is the meta-key. This can be changed and is +;; controlled by the variable `drag-stuff-modifier'. +;; +;; Control key as modifier: +;; (setq drag-stuff-modifier 'control) +;; +;; Meta and Shift keys as modifier: +;; (setq drag-stuff-modifier '(meta shift)) + +;;; Code: + +(eval-when-compile + (require 'cl)) + +(defvar drag-stuff-except-modes () + "A list of modes in which `drag-stuff-mode' should not be activated.") + +(defvar drag-stuff-modifier 'meta + "Modifier key(s) for bindings in `drag-stuff-mode-map'.") + +(defvar drag-stuff-mode-map (make-sparse-keymap) + "Keymap for `drag-stuff-mode'.") + +(defvar drag-stuff-before-drag-hook nil + "Called before dragging occurs.") + +(defvar drag-stuff-after-drag-hook nil + "Called after dragging occurs.") + +;; save-mark-and-excursion in Emacs 25 works like save-excursion did before +(eval-when-compile + (when (not (fboundp #'save-mark-and-excursion)) + (defmacro save-mark-and-excursion (&rest body) + `(save-excursion ,@body)))) + +(defun drag-stuff--evil-p () + "Predicate for checking if we're in evil visual state." + (and (bound-and-true-p evil-mode) (evil-visual-state-p))) + +(defun drag-stuff--kbd (key) + "Key binding helper." + (let ((mod (if (listp drag-stuff-modifier) + drag-stuff-modifier + (list drag-stuff-modifier)))) + (vector (append mod (list key))))) + +(defun drag-stuff--line-at-mark () + "Returns the line number where mark (first char selected) is." + (line-number-at-pos + (if evilp evil-visual-mark (mark)))) + +(defun drag-stuff--line-at-point () + "Returns the line number where point (current selected char) is." + (line-number-at-pos + (if evilp evil-visual-point (point)))) + +(defun drag-stuff--col-at-mark () + "Returns the column number where mark (first char selected) is." + (if evilp + (save-mark-and-excursion (goto-char evil-visual-mark) (current-column)) + (save-mark-and-excursion (exchange-point-and-mark) (current-column)))) + +(defun drag-stuff--col-at-point () + "Returns the column number where point (current selected char) is." + (if evilp + (save-mark-and-excursion (goto-char evil-visual-point) (current-column)) + (current-column))) + +(defmacro drag-stuff--execute (&rest body) + "Execute BODY without conflicting modes." + `(let ((auto-fill-function nil) + (electric-indent-mode nil) + (longlines-mode-active + (and (boundp 'longlines-mode) longlines-mode))) + (when longlines-mode-active + (longlines-mode -1)) + (run-hooks 'drag-stuff-before-drag-hook) + ,@body + (run-hooks 'drag-stuff-after-drag-hook) + (when longlines-mode-active + (longlines-mode 1)))) + +;;;###autoload +(defun drag-stuff-up (arg) + "Drag stuff ARG lines up." + (interactive "p") + (drag-stuff--execute + (if mark-active + (drag-stuff-lines-up (- arg)) + (drag-stuff-line-up (- arg))))) + +;;;###autoload +(defun drag-stuff-down (arg) + "Drag stuff ARG lines down." + (interactive "p") + (drag-stuff--execute + (if mark-active + (drag-stuff-lines-down arg) + (drag-stuff-line-down arg)))) + +;;;###autoload +(defun drag-stuff-right (arg) + "Drag stuff ARG lines to the right." + (interactive "p") + (if mark-active + (drag-stuff-region-right arg) + (drag-stuff-word-right arg))) + +;;;###autoload +(defun drag-stuff-left (arg) + "Drag stuff ARG lines to the left." + (interactive "p") + (if mark-active + (drag-stuff-region-left arg) + (drag-stuff-word-left arg))) + +(defun drag-stuff-line-up (arg) + "Drag current line ARG lines up." + (if (> (line-number-at-pos) (abs arg)) + (drag-stuff-line-vertically + (lambda (beg end column) + (drag-stuff-drag-region-up beg end arg) + (move-to-column column))) + (message "Can not move line further up"))) + +(defun drag-stuff-line-down (arg) + "Drag current line ARG lines down." + (if (<= (+ (line-number-at-pos) arg) (count-lines (point-min) (point-max))) + (drag-stuff-line-vertically + (lambda (beg end column) + (drag-stuff-drag-region-down beg end arg) + (move-to-column column))) + (message "Can not move line further down"))) + +(defun drag-stuff-line-vertically (fn) + "Yields variables used to drag line vertically." + (let ((column (current-column)) + (beg (line-beginning-position)) + (end (line-end-position))) + (funcall fn beg end column))) + +(defun drag-stuff-lines-up (arg) + "Move all lines in the selected region ARG lines up." + (if (> (line-number-at-pos (region-beginning)) (abs arg)) + (drag-stuff-lines-vertically + (lambda (beg end) + (drag-stuff-drag-region-up beg end arg))) + (message "Can not move lines further up"))) + +(defun drag-stuff-lines-down (arg) + "Move all lines in the selected region ARG lines up." + (let ((selection-end (if (drag-stuff--evil-p) + (save-mark-and-excursion (evil-visual-goto-end)) + (region-end)))) + (if (<= (+ (line-number-at-pos selection-end) arg) (count-lines (point-min) (point-max))) + (drag-stuff-lines-vertically + (lambda (beg end) + (drag-stuff-drag-region-down beg end arg))) + (message "Can not move lines further down")))) + +(defun drag-stuff-lines-vertically (fn) + "Yields variables used to drag lines vertically." + (let* ((evilp (drag-stuff--evil-p)) + (vtype (if evilp (evil-visual-type) nil)) + (mark-line (drag-stuff--line-at-mark)) + (point-line (drag-stuff--line-at-point)) + (mark-col (drag-stuff--col-at-mark)) + (point-col (drag-stuff--col-at-point)) + (bounds (drag-stuff-whole-lines-region)) + (beg (car bounds)) + (end (car (cdr bounds))) + (deactivate-mark nil)) + + (funcall fn beg end) + ;; Restore region + (goto-line mark-line) + (forward-line arg) + (move-to-column mark-col) + (exchange-point-and-mark) + (goto-line point-line) + (forward-line arg) + (move-to-column point-col) + (when evilp + (evil-visual-make-selection (mark) (point)) + (when (eq vtype 'line) (evil-visual-line (mark) (point)))))) + + +(defun drag-stuff-drag-region-up (beg end arg) + "Drags region between BEG and END ARG lines up." + (let ((region (buffer-substring-no-properties beg end))) + (when (drag-stuff--evil-p) (evil-exit-visual-state)) + (delete-region beg end) + (backward-delete-char 1) + (forward-line (+ arg 1)) + (goto-char (line-beginning-position)) + (insert region) + (newline) + (forward-line -1))) + +(defun drag-stuff-drag-region-down (beg end arg) + "Drags region between BEG and END ARG lines down." + (let ((region (buffer-substring-no-properties beg end))) + (when (drag-stuff--evil-p) (evil-exit-visual-state)) + (delete-region beg end) + (delete-char 1) + (forward-line (- arg 1)) + (goto-char (line-end-position)) + (newline) + (insert region))) + +(defun drag-stuff-whole-lines-region () + "Return the positions of the region with whole lines included." + (let (beg end) + (cond (evilp + (setq beg (save-mark-and-excursion (goto-char (region-beginning)) (line-beginning-position))) + (setq end (save-mark-and-excursion (evil-visual-goto-end) (line-end-position)))) + (t + (if (> (point) (mark)) + (exchange-point-and-mark)) + (setq beg (line-beginning-position)) + (if mark-active + (exchange-point-and-mark)) + (setq end (line-end-position)))) + (list beg end))) + +(defun drag-stuff-region-left (arg) + "Drags region left ARG times." + (if (> (min (point) (mark)) (point-min)) + (drag-stuff-region-horizontally (- arg)) + (message "Can not move region further to the left"))) + +(defun drag-stuff-region-right (arg) + "Drags region right ARG times." + (if (< (max (point) (mark)) (point-max)) + (drag-stuff-region-horizontally arg) + (message "Can not move region further to the right"))) + +(defun drag-stuff-region-horizontally (arg) + "Drags region horizontally ARG times." + (let* ((beg (mark)) + (end (point)) + (region (buffer-substring-no-properties beg end)) + (deactivate-mark nil)) + (delete-region beg end) + (forward-char arg) + (insert region) + (set-mark (+ beg arg)) + (goto-char (+ end arg)))) + +(defun drag-stuff-word-left (arg) + "Drags word left ARG times." + (drag-stuff-word-horizontally (- arg))) + +(defun drag-stuff-word-right (arg) + "Drags word right ARG times." + (drag-stuff-word-horizontally arg)) + +(defun drag-stuff-word-horizontally (arg) + "Drags word horizontally ARG times." + (let ((old-point (point)) + (offset (- (save-mark-and-excursion (forward-word) (point)) (point)))) + (condition-case err + (progn + (transpose-words arg) + (backward-char offset)) + (error + (message + (if (> arg 0) + "Can not move word further to the right" + "Can not move word further to the left")) + (goto-char old-point))))) + +(defun drag-stuff-define-keys () + "Defines keys for `drag-stuff-mode'." + (define-key drag-stuff-mode-map (drag-stuff--kbd 'up) 'drag-stuff-up) + (define-key drag-stuff-mode-map (drag-stuff--kbd 'down) 'drag-stuff-down) + (define-key drag-stuff-mode-map (drag-stuff--kbd 'right) 'drag-stuff-right) + (define-key drag-stuff-mode-map (drag-stuff--kbd 'left) 'drag-stuff-left)) + +;;;###autoload +(define-minor-mode drag-stuff-mode + "Drag stuff around." + :init-value nil + :lighter " drag" + :keymap drag-stuff-mode-map) + +;;;###autoload +(defun turn-on-drag-stuff-mode () + "Turn on `drag-stuff-mode'." + (interactive) + (unless (member major-mode drag-stuff-except-modes) + (drag-stuff-mode +1))) + +;;;###autoload +(defun turn-off-drag-stuff-mode () + "Turn off `drag-stuff-mode'." + (interactive) + (drag-stuff-mode -1)) + +;;;###autoload +(define-globalized-minor-mode drag-stuff-global-mode + drag-stuff-mode + turn-on-drag-stuff-mode) + + +(provide 'drag-stuff) + +;;; drag-stuff.el ends here diff --git a/elpa/drag-stuff-20161108.749/drag-stuff.elc b/elpa/drag-stuff-20161108.749/drag-stuff.elc new file mode 100644 index 0000000000000000000000000000000000000000..3bccbb7a6149bdd6a532429e6777354301c10977 GIT binary patch literal 15463 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 Y>O1kVq2CufZS}iK$A{M@p2slD-)=R8qW}N^ literal 0 HcmV?d00001 diff --git a/url/cache/balazs/http/cf/srix/d60e3ce6123a9c98515951dcb9927a40 b/url/cache/balazs/http/cf/srix/d60e3ce6123a9c98515951dcb9927a40 new file mode 100644 index 0000000..a6af651 --- /dev/null +++ b/url/cache/balazs/http/cf/srix/d60e3ce6123a9c98515951dcb9927a40 @@ -0,0 +1,90 @@ +HTTP/1.1 200 OK +Date: Sun, 07 Jun 2020 09:17:38 GMT +Content-Type: image/svg+xml +Transfer-Encoding: chunked +Connection: keep-alive +Set-Cookie: __cfduid=db9753a37ada4e95bc954afc7ffaf1fdf1591521458; expires=Tue, 07-Jul-20 09:17:38 GMT; path=/; domain=.srix.cf; HttpOnly; SameSite=Lax +Last-Modified: Sun, 30 Jun 2019 11:04:09 GMT +ETag: W/"205b-58c88788e224e" +Cache-Control: max-age=14400 +CF-Cache-Status: MISS +cf-request-id: 032fab52140000d42fe6171200000001 +Vary: Accept-Encoding +Server: cloudflare +CF-RAY: 59f947fcef28d42f-BUD +Content-Encoding: gzip + + + + + + + diff --git a/url/cookies b/url/cookies new file mode 100644 index 0000000..a8179d9 --- /dev/null +++ b/url/cookies @@ -0,0 +1,14 @@ +;; Emacs-W3 HTTP cookies file +;; Automatically generated file!!! DO NOT EDIT!!! + +(setq url-cookie-storage + '((".srix.cf" + [url-cookie "__cfduid" "d50deb4c4d478e955c3058531670347f71591521457" "Tue, 07-Jul-20 09:17:37 GMT" "/" ".srix.cf" nil])) +) +(setq url-cookie-secure-storage + 'nil) + +;; Local Variables: +;; version-control: never +;; no-byte-compile: t +;; End: diff --git a/url/cookies~ b/url/cookies~ new file mode 100644 index 0000000..e69de29