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 0000000..3bccbb7 Binary files /dev/null and b/elpa/drag-stuff-20161108.749/drag-stuff.elc differ diff --git a/init.el~ b/init.el~ new file mode 100644 index 0000000..c2c52e7 --- /dev/null +++ b/init.el~ @@ -0,0 +1,20 @@ +(org-babel-load-file "~/.emacs.d/conf.org") +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(custom-enabled-themes (quote humanoid-dark)) + '(custom-safe-themes + (quote + ("2679db166117d5b26b22a8f12a940f5ac415d76b004de03fcd34483505705f62" "0fffa9669425ff140ff2ae8568c7719705ef33b7a927a0ba7c5e2ffcfac09b75" "2809bcb77ad21312897b541134981282dc455ccd7c14d74cc333b6e549b824f3" "8ca8fbaeaeff06ac803d7c42de1430b9765d22a439efc45b5ac572c2d9d09b16" "229c5cf9c9bd4012be621d271320036c69a14758f70e60385e87880b46d60780" default))) + '(package-selected-packages + (quote + (smex ox-epub quelpa emacsshot org-drill auctex highlight-doxygen format-all srefactor preproc-font-lock solarized-theme humanoid-themes nyan-mode neotree flycheck)))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(preproc-font-lock-preprocessor-background ((t (:foreground "lawn green"))))) +(load-theme 'humanoid-dark t) diff --git a/plugins/yasnippet b/plugins/yasnippet new file mode 160000 index 0000000..d3d6d70 --- /dev/null +++ b/plugins/yasnippet @@ -0,0 +1 @@ +Subproject commit d3d6d70b1cd4818d271752468e0fdb0788db750d diff --git a/semanticdb/!home!balazs!.emacs.d!elpa!drag-stuff-20161108.749!semantic.cache b/semanticdb/!home!balazs!.emacs.d!elpa!drag-stuff-20161108.749!semantic.cache new file mode 100644 index 0000000..10c7e9a --- /dev/null +++ b/semanticdb/!home!balazs!.emacs.d!elpa!drag-stuff-20161108.749!semantic.cache @@ -0,0 +1,16 @@ +;; Object semanticdb-project-database-file +;; SEMANTICDB Tags save file +(semanticdb-project-database-file "semanticdb-project-database-file" + :tables + (list + (semanticdb-table "semanticdb-table" + :major-mode emacs-lisp-mode + :tags nil + :file "drag-stuff-autoloads.el" + :pointmax 359 + :fsize 2114 + :lastmodtime '(24284 45397 801967 135000) + :unmatched-syntax nil)) + :file "!home!balazs!.emacs.d!elpa!drag-stuff-20161108.749!semantic.cache" + :semantic-tag-version "2.0" + :semanticdb-version "2.2") diff --git a/semanticdb/!home!balazs!.emacs.d!semantic.cache b/semanticdb/!home!balazs!.emacs.d!semantic.cache index 5c9638b..c7a8bcd 100644 --- a/semanticdb/!home!balazs!.emacs.d!semantic.cache +++ b/semanticdb/!home!balazs!.emacs.d!semantic.cache @@ -5,12 +5,18 @@ (list (semanticdb-table "semanticdb-table" :major-mode emacs-lisp-mode - :tags nil + :tags + '( ("org-babel-load-file" code nil nil [1 44]) + ("custom-set-variables" code nil nil [45 942]) + ("custom-set-faces" code nil nil [943 1259]) + ("load-theme" code nil nil [1260 1289])) :file "init.el" - :pointmax 1274 - :fsize 1278 - :lastmodtime '(24284 43406 739303 887000) - :unmatched-syntax nil)) + :pointmax 1290 + :fsize 1289 + :lastmodtime '(24284 45396 390939 697000) + :unmatched-syntax nil) + +) :file "!home!balazs!.emacs.d!semantic.cache" :semantic-tag-version "2.0" :semanticdb-version "2.2") diff --git a/semanticdb/!home!balazs!Code!semantic.cache b/semanticdb/!home!balazs!Code!semantic.cache new file mode 100644 index 0000000..d1a07c9 --- /dev/null +++ b/semanticdb/!home!balazs!Code!semantic.cache @@ -0,0 +1,14 @@ +;; Object semanticdb-project-database-file +;; SEMANTICDB Tags save file +(semanticdb-project-database-file "semanticdb-project-database-file" + :tables + (list + (semanticdb-table "semanticdb-table" + :major-mode c-mode + :tags nil + :file "test.c" + :pointmax 1 + :unmatched-syntax nil)) + :file "!home!balazs!Code!semantic.cache" + :semantic-tag-version "2.0" + :semanticdb-version "2.2") diff --git a/smex-items b/smex-items new file mode 100644 index 0000000..9f3a629 --- /dev/null +++ b/smex-items @@ -0,0 +1,16 @@ + +;; ----- smex-history ----- +( + cd + 5x5 + arp + dbx + dig + ede + erc +) + +;; ----- smex-data ----- +( + +) diff --git a/url/cache/balazs/http/cf/srix/78f632d6ebc04fdf60a48d19d6285f6c b/url/cache/balazs/http/cf/srix/78f632d6ebc04fdf60a48d19d6285f6c new file mode 100644 index 0000000..0a3bb9d Binary files /dev/null and b/url/cache/balazs/http/cf/srix/78f632d6ebc04fdf60a48d19d6285f6c differ 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