1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
|
;; Aquamacs tools
;; some helper functions for Aquamacs
;; Author: David Reitter, david.reitter@gmail.com
;; Maintainer: David Reitter
;; Keywords: aquamacs
;; This file is part of Aquamacs Emacs
;; http://www.aquamacs.org/
;; Aquamacs 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.
;; Aquamacs 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., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;; Copyright (C) 2005, 2007, 2009, 2013 David Reitter
; remove an element from an associative list (alist)
;; (defun remove-alist-name (name alist)
;; "Removes element whose car is NAME from ALIST."
;; (cond ((equal name (car (car alist))) ; found name
;; (cdr alist))
;; ((null alist) ; end of list (termination cond)
;; nil)
;; (t
;; (cons (car alist) ; first of alist plus rest w/ recursion
;; (remove-alist-name name (cdr alist))))))
;; this is assq
;; (defun get-alist-value-for-name (name alist)
;; "Returns value of element whose car is NAME from ALIST. nil if not found"
;; (cond ((equal name (car (car alist))) ; found name
;; (cdr (car alist)))
;; ((null alist) ; end of list (termination cond)
;; nil)
;; (t
;; ; first of alist plus rest w/ recursion
;; (get-alist-value-for-name name (cdr alist)))))
;; this is from cl-lib, which can't be included in site-load
(defmacro cl-incf (place &optional x)
"Increment PLACE by X (1 by default).
PLACE may be a symbol, or any generalized variable allowed by `setf'.
The return value is the incremented value of PLACE."
(declare (debug (place &optional form)))
(if (symbolp place)
(list 'setq place (if x (list '+ place x) (list '1+ place)))
(list 'cl-callf '+ place (or x 1))))
(defun running-on-a-mac-p ()
(memq initial-window-system '(mac ns)))
(defun aquamacs-ask-for-confirmation (text long &optional yes-button no-button sheet)
(let ((f (window-frame (minibuffer-window))))
(make-frame-visible f)
(raise-frame f) ; make sure frame is visible
(if (or
(and last-nonmenu-event
(not (consp last-nonmenu-event)))
;;(not (eq (car-safe last-nonmenu-event)
;; 'mac-apple-event)))
(not use-dialog-box)
(not window-system))
(progn
;; make sure the frame's minibuffer is actually visible
;; because minibuffer-setup-hook is not executed.
(and (fboundp 'smart-move-minibuffer-inside-screen)
smart-frame-positioning-mode
(smart-move-minibuffer-inside-screen f))
(let ((text (if (string-match "\\(.*\\)\n" text)
(match-string 1 text)
text)))
(if (and long (not aquamacs-quick-yes-or-no-prompt))
(old-yes-or-no-p text)
(old-y-or-n-p text))))
(let ((ret (x-popup-dialog (or sheet (if (mouse-event-p last-command-event) last-command-event)
`(mouse-1 (,(selected-window) 100 (0 . 50) -1)))
(list text
`(,(or yes-button "Yes") . t)
`(,(or no-button "No") . nil)))))
ret))))
(defun filter-list (lst elements)
"Returns LST sans ELEMENTS.
Creates a new list where all elements in ELEMENTS from LST
are removed. Comparison is done with `eq'."
(if (null lst)
nil
(if (member (car lst) elements)
(filter-list (cdr lst) elements)
(cons (car lst) (filter-list (cdr lst) elements)))))
(defun assq-set-all (source dest-sym)
"Writes all values from alist SOURCE into alist DEST-SYM,
overwriting any previous associations in DEST"
(mapc (lambda (x)
(set dest-sym (assq-delete-all (car x) (eval dest-sym))))
source)
(set dest-sym (append source (eval dest-sym))))
; (setq test '((a . 1) (b . 2)))
; (assq-set-all '((b . 5) (c . 6)) 'test)
; (assq-subtract '((asd . 3) (wqe . 5)) '((wqq . 3) (wqe . 5)))
; (assq-subtract '((asd . 3) (wqe . 5)) '((wqq . 3) (wqe . 2)))
; (assq-subtract '((asd . 3) (wqe . 5)) '((wqq . 3) (wqe . 2)) t)
(defun assq-subtract (a b &optional ignore-values)
"Subtracts alist B from A. Order of elements is NOT preserved.
If IGNORE-VALUES is non-nil, alist elements with differing cdrs (values)
are still subtracted."
(let ((ret))
(mapc (lambda (x)
(let ((p (assq (car x) b)))
(unless (and p (or ignore-values (eq (cdr p) (cdr x))))
(setq ret (cons x ret)))))
a)
ret))
(defun assq-set (key val alist)
"Sets value associated with KEY to VAL in ALIST.
ALIST must be a symbol giving the variable name.
Comparison of keys is done with `eq'.
New key-value pair will be in car of ALIST."
(set alist (cons (cons key val)
(assq-delete-all key (eval alist)))))
(defun assq-set-equal (key val alist)
"Sets value associated with the string KEY to VAL in ALIST.
Comparison of keys is done with `equal'.
ALIST must be a symbol giving the variable name.
New key-value pair will be in car of ALIST."
(set alist (cons (cons key val)
(assq-delete-all-equal key (eval alist)))))
(defun assq-string-equal (key alist)
(loop for element in alist
if (string-equal (car element) key)
return element))
;; (setq asd (list 1 2 3 4 5))
;; (aq-replace-in-list asd 1 'a)
;; asd
(defun aq-replace-in-list (list from to)
(if (eq (car-safe list) from)
(setcar list to))
(if (cdr-safe list)
(aq-replace-in-list (cdr-safe list) from to)))
(defun assq-delete-all-equal (key alist)
"Delete from ALIST all elements whose car is `equal' to KEY.
Return the modified alist.
Elements of ALIST that are not conses are ignored."
(while (and (consp (car alist))
(equal (car (car alist)) key))
(setq alist (cdr alist)))
(let ((tail alist) tail-cdr)
(while (setq tail-cdr (cdr tail))
(if (and (consp (car tail-cdr))
(equal (car (car tail-cdr)) key))
(setcdr tail (cdr tail-cdr))
(setq tail tail-cdr))))
alist)
(defun aq-list-contains (list element)
"Return non-nil if the LIST contains ELEMENT. Aquamacs only.
Comparison is done with `eq'."
(let (first result)
(while list
(if (not (eq (car-safe list) element))
(setq list (cdr-safe list))
(setq list nil)
(setq result t))
)
result))
;; (aq-list-contains (list 1 2 3 4 5 'a 'b nil 'x) 1)
(defun aq-list-contains-equal (list element)
"Return non-nil if the LIST contains ELEMENT. Aquamacs only.
Comparison is done with `equal'."
(let (first result)
(while list
(if (not (equal (car-safe list) element))
(setq list (cdr-safe list))
(setq list nil)
(setq result t))
)
result))
(defun aq-chomp (str)
"Chomp leading and tailing whitespace from STR."
(let ((s (if (symbolp str) (symbol-name str) str)))
(replace-regexp-in-string "\\(^[[:space:]\n]*\\|[[:space:]\n]*$\\)" "" s)))
(defun fontset-exist-p (font)
(condition-case nil
(fontset-info font)
(error nil))
)
;; this needs to be replaced by functions defined earlier
; recursion is not so good in elisp anyways
(defun filter-fonts (list)
"Filters the font list LIST to contain only existing fontsets.
Each element of LIST has to be of the form (symbol . fontset)."
(mapcar
(lambda (p)
(mapcar
(lambda (e)
(if (and (consp e)
(eq (car e) 'font)
(not (fontset-exist-p (cdr e)))
)
'(font . "fontset-standard")
e))
p))
list))
(defun get-bufname (buf)
(if (eq (type-of buf) 'string)
buf
(buffer-name buf))
)
(defun get-bufobj (buf)
(if (eq (type-of buf) 'string)
(get-buffer buf)
buf)
)
(defun find-all-windows-internal (buffer &optional onlyvis)
"Find all windows that display a buffer."
(let ((windows nil))
(walk-windows (lambda (wind)
(if (eq (window-buffer wind) buffer)
(push wind windows))) t (if onlyvis 'visible t))
windows
)
)
; (find-all-frames-internal (current-buffer))
(defun find-all-frames-internal (buffer &optional onlyvis)
(let ((frames nil))
(walk-windows (lambda (wind)
(if (eq (window-buffer wind) buffer)
(let ((frm (window-frame wind)))
(unless (memq frm frames)
(push frm frames)))))
nil (if onlyvis 'visible t))
frames))
(defgroup Aquamacs-is-more-than-Emacs nil
"All defaults in Aquamacs that are different from GNU Emacs.
This customization group contains every default for customization
variables that is changed in Aquamacs compared to GNU Emacs 22 or
an additionally included package.
Note that non-customization variables as well as code may be
changed or advised in Aquamacs (compared to GNU Emacs), so reverting
all of these defaults to their GNU Emacs value will not give you
a GNU Emacs. To achieve that, use a self-compiled binary of
Carbon Emacs instead of Aquamacs."
:group 'Aquamacs)
(setq messages-buffer-max-lines 500)
(defun aquamacs-set-defaults (list)
"Set a new default for a customization option in Aquamacs.
Add the value to the customization group `Aquamacs-is-more-than-Emacs'."
(mapc (lambda (elt)
(custom-load-symbol (car elt)) ;; does nothing for non-custom variables
(let* ((symbol (car elt))
;; we're accessing the doc property here so
;; if the symbol is an autoload symbol,
;; it'll get loaded now before setting its defaults
;; (e.g. standard-value), which would otherwise be
;; overwritten.
(old-doc
(condition-case nil
(documentation-property
symbol
'variable-documentation)
(error "")))
(value (car (cdr elt)))
(s-value (get symbol 'standard-value))
(setter (get symbol 'custom-set)))
;; if there's a setter, use it
;; note: symbol must be loaded for this to work
(if setter ;; if customizable and there is a special setter
(funcall setter symbol value)
;; otherwise, just set it
(set symbol value))
(set-default symbol value) ;; new in post-0.9.5
;; To Do: consider calling `custom-theme-set-variables' for custom
;; settings and create an Aquamacs theme. This is not trivial,
;; as we do not want to store a "saved variable" as opposed to a
;; new default (as if it had been set with `defcustom').
;; make sure that user customizations get
;; saved to customizations.el (.emacs)
;; and that this appears as the new default.
;; since the standard-value changed, put it in the
;; group
(put symbol 'standard-value `((quote ,(copy-tree (eval symbol)))))
(unless (or (eq s-value (get symbol 'standard-value))
(get symbol 'aquamacs-original-default))
(put symbol 'aquamacs-original-default
s-value)
(if old-doc ;; in some cases the documentation
;; might not be loaded. Can we load it somehow?
;; either way, the "if" is a workaround.
(put symbol 'variable-documentation
(concat
old-doc
(format "
The original default (in GNU Emacs or in the package) was:
%s"
s-value))))
(custom-add-to-group 'Aquamacs-is-more-than-Emacs
symbol 'custom-variable))))
list))
; (aquamacs-setup)
(defun url-encode-string (string &optional coding)
"Encode STRING by url-encoding.
Optional CODING is used for encoding coding-system."
(apply (function concat)
(mapcar
(lambda (ch)
(cond
((eq ch ?\n) ; newline
"%0D%0A")
((string-match "[-a-zA-Z0-9_:/.]" (char-to-string ch))
(char-to-string ch)) ; printable
((char-equal ch ?\x20) ; space
"%20")
(t
(format "%%%02x" ch)))) ; escape
;; Coerce a string to a list of chars.
(append (encode-coding-string (or string "")
(or coding
file-name-coding-system))
nil))))
(defun load-post-sitestart-files ()
"Load the Aquamacs plugins from site-start directories."
(let (loaded)
(mapc
(lambda (p) (unless (file-exists-p (concat p "/.ignore"))
(let ((infod (concat p "/info"))
(file (expand-file-name (concat p "/site-start") "~/")))
(unless (member file loaded)
(if (file-directory-p infod)
(add-to-list 'Info-default-directory-list infod))
(if (and debug-on-error ;; [too slow if always on]
(file-expand-wildcards (concat file ".*")) t)
(message "loading post-sitestart %s." file))
(load file 'noerror)
(setq loaded (cons file loaded))))))
load-path)
t))
; (measure-time (load-post-sitestart-files))
(defun load-pre-sitestart-files ()
"Load the pre-start Aquamacs plugins from site-prestart directories."
(let (loaded)
(mapc
(lambda (p) (unless (file-exists-p (concat p "/.ignore"))
(let ((infod (concat p "/info"))
(file (expand-file-name (concat p "/site-prestart") "~/")))
(unless (member file loaded)
(if (file-directory-p infod)
(add-to-list 'Info-default-directory-list infod))
(if (and debug-on-error ;; [too slow if always on]
(file-expand-wildcards (concat file ".*")) [too slow])
(message "loading pre-sitestart %s." file))
(load file 'noerror)
(setq loaded (cons file loaded))))))
load-path)
t))
; (load-pre-sitestart-files)
(defvar aq-timer nil)
(defun aq-current-milliseconds ()
(let ((ti (cdr (current-time)))
)
(+ (* 1000 (- (car ti) (car (cdr aq-timer))))
(/ (- (car (cdr ti))
(car (cdr (cdr aq-timer)))
) 1000))))
(defun aq-start-timer ()
(setq aq-timer (current-time))
)
;(aq-start-timer)
(defun aq-print-timer ()
(message (format "%d" (aq-current-milliseconds)) ))
(defun aquamacs-pretty-mode-name (mode)
(capitalize
(replace-regexp-in-string "-mode" "" (symbol-name mode))))
;; apple command character is unicode x2318
;; (aq-describe-modifier 'hyper)
(defun aq-describe-modifier (mod)
;; translate modifier
(if (eq mod 'ctrl)
(setq mod 'control))
(or
(cond
((and (boundp 'mac-command-modifier) (eq mac-command-modifier mod))
(string (decode-char 'ucs #X2318)))
((and (boundp 'mac-option-modifier) (eq (or mac-option-modifier 'alt)
mod))
(string (decode-char 'ucs #X2325)))
((and (boundp 'mac-control-modifier) (eq (or mac-control-modifier 'control)
mod))
(string (decode-char 'ucs #X2303)))
((eq mod 'shift)
(string (decode-char 'ucs #X21E7)))
((and (boundp 'mac-function-modifier) (eq mac-function-modifier mod))
"Fn ")
)
;; (progn (print mod) nil)
(signal 'search-failed nil)
))
(defvar apple-char (string (decode-char 'ucs #X2318)))
;; The following is a big hack. The mac port can't currently cope
;; with putting the command key combos in the menu, for various
;; reasons (1. they are just secondary alternatives, 2. command is defined
;; as 'alt' and only known as such)
; redefine New
; (define-key menu-bar-edit-menu [mark-whole-buffer] (cdr (assq 'mark-whole-buffer (key-binding [menu-bar edit]))))
(defun get-window-for-other-buffer (&optional dont-make-frame buffer)
"Find a suitable window for other buffers.
Preferably the selected one.
If a frame is created for the other buffer,
show BUFFER in that frame."
(let ((sel-win (selected-window))) ; search all visible&iconified frames
(unless
(and sel-win
(window-live-p sel-win)
(eq t (frame-visible-p (window-frame sel-win)))
(not (special-display-p
(or (buffer-name (window-buffer sel-win)) ""))))
;; search visible frames (but not dedicated ones)
(setq sel-win (get-largest-window 'visible nil)))
(unless
(and sel-win
(window-live-p sel-win)
(eq t (frame-visible-p (window-frame sel-win)))
(not (special-display-p
(or (buffer-name (window-buffer sel-win)) ""))))
(unless dont-make-frame
(setq sel-win (frame-first-window
(with-current-buffer (or buffer (current-buffer))
;; make sure we're not creating some "special" frame
(make-frame))))))
(if sel-win
(unless (eq t (frame-visible-p (window-frame sel-win)))
(make-frame-visible (window-frame sel-win))))
sel-win))
;; New documents
(defun new-empty-buffer-other-frame (&optional mode)
"Opens a new frame containing an empty buffer."
(interactive)
(new-empty-buffer t mode))
(defcustom aquamacs-default-major-mode 'text-mode
"Major mode in effect when new empty buffers are created.
Specifies the major mode to be used for `new-empty-buffer'
and `new-empty-buffer-other-frame'."
:group 'Aquamacs)
(defvar aquamacs--new-buffer-last-timestamp nil)
(defvar aquamacs--new-buffer-timestamp-counter 0)
(defun new-empty-buffer (&optional other-frame mode)
"Visits an empty buffer.
The major mode is set to MODE, or, if that is nil,
the value of `aquamacs-default-major-mode'."
(interactive)
(let ((buf (generate-new-buffer (mac-new-buffer-name "untitled"))))
;; setting mode is done before showing the new frame
;; because otherwise, we get a nasty animation effect
(save-excursion
(set-buffer buf)
(funcall (or mode aquamacs-default-major-mode (default-value 'major-mode) 'ignore)))
(if other-frame
(switch-to-buffer-other-frame buf)
(let ((one-buffer-one-frame-force one-buffer-one-frame-mode))
;; change window in case its unsuitable (dedicated or special display)
(select-window (get-window-for-other-buffer))
;; force new frame
(switch-to-buffer buf)
(select-frame-set-input-focus (window-frame (selected-window)))))
(setq buffer-offer-save t)
(put 'buffer-offer-save 'permanent-local t)
(let* ((ts (format-time-string "%d%H%MZ" nil t))
(ts2 ts))
(if (equal ts2 aquamacs--new-buffer-last-timestamp)
(setq ts2 (format "%s.%s" ts (cl-incf aquamacs--new-buffer-timestamp-counter)))
(setq aquamacs--new-buffer-timestamp-counter 0))
(setq aquamacs--new-buffer-last-timestamp ts)
(setq aquamacs-untitled-buffer-creation-time ts2))
(if auto-save-default
(auto-save-mode t))
(set-buffer-modified-p nil)))
(defalias 'new-frame-with-new-scratch 'new-empty-buffer)
;; auto save purging
(defun purge-session-and-auto-save-files (&optional days)
"Deletes old auto-save files and session files.
If given, DAYS indicates the number of days to keep such files.
Otherwise, a sensible default is assumed.
Files may be moved to the trash or deleted.
Aquamacs only.
"
(interactive)
(let* ((days (or days 31))
(count1
(aquamacs-purge-directory (file-name-directory auto-save-list-file-prefix)
(concat "\\`" (regexp-quote
(file-name-nondirectory
auto-save-list-file-prefix)))
days))
(count2
(aquamacs-purge-directory (file-name-directory aquamacs-autosave-directory)
".*"
days)))
(if (called-interactively-p 'interactive)
(message "%s Session and %s Auto save files older than %s days purged." count1 count2 days))))
(defun aquamacs-purge-directory (directory regexp days)
"Delete old files from directory"
(condition-case nil
(let* ((count 0)
(cutoff-time (- (car (current-time)) (/ (* days 24) 18)))) ; that's about a week
(mapc
(lambda (file)
(when (and (< (car (nth 5 (file-attributes file)))
cutoff-time)
(not (file-directory-p file)))
(move-file-to-trash file)
(setq count (1+ count))))
(directory-files (expand-file-name directory) t
regexp t))
count)
(error 0)))
(defun list2english (list &optional avoid-oxford-comma add-be)
"Converts a list of strings to a single string with an English-language list.
Commas and \"and\" are inserted as necessary
An Oxford comma is used by default if appropriate.
Set AVOID-OXFORD-COMMA to non-nil to prevent an Oxford comma in any case."
(concat
(list2english-internal list (if avoid-oxford-comma 'avoid))
(if add-be
(if (or (not list) (cdr list))
" are" " is")
"")))
(defun list2english-internal (list &optional avoid-oxford-comma)
(if (cddr list)
(list2english-internal (cons (concat (car list) ", " (cadr list)) (cddr list))
(or avoid-oxford-comma 'force-on))
(if (cdr list)
(concat (car list) (if (equal avoid-oxford-comma 'force-on) ", and " " and ") (cadr list))
(car list))))
;; test cases
;; (list2english '("one" "two"))
;; (list2english '("one" "two" "three") nil nil)
;; (list2english '("one" "two" "three") t t)
;; (list2english '("one"))
;; (list2english '("one") t t)
;; (list2english '("one") nil t)
;; (list2english '("one" "two" "three") 'no)
;; (list2english nil nil t)
(defun login-shell-command-to-string (command)
"Execute login shell command COMMAND and return its output as a string."
(with-output-to-string
(with-current-buffer
standard-output
(process-file shell-file-name nil t nil "-l" shell-command-switch command))))
(provide 'aquamacs-tools)
|