:type '(repeat symbol)
:group 'align)
-(defcustom align-dq-string-modes (append align-lisp-modes
- align-c++-modes
- align-perl-modes)
+(defcustom align-dq-string-modes
+ (append align-lisp-modes align-c++-modes align-perl-modes
+ '(python-mode))
"*A list of modes where double quoted strings should be excluded."
:type '(repeat symbol)
:group 'align)
-(defcustom align-sq-string-modes align-perl-modes
+(defcustom align-sq-string-modes
+ (append align-perl-modes '(python-mode))
"*A list of modes where single quoted strings should be excluded."
:type '(repeat symbol)
:group 'align)
-(defcustom align-open-comment-modes (append align-lisp-modes
- align-c++-modes
- align-perl-modes
- '(makefile-mode))
+(defcustom align-open-comment-modes
+ (append align-lisp-modes align-c++-modes align-perl-modes
+ '(python-mode makefile-mode))
"*A list of modes with a single-line comment syntax.
These are comments as in Lisp, which have a beginning but, end with
the line (i.e., `comment-end' is an empty string)."
(looking-at
"\\(goto\\|return\\|new\\|delete\\|throw\\)"))
(if (and (boundp 'font-lock-mode) font-lock-mode)
- (eq (cadr (memq 'face (text-properties-at (point))))
+ (eq (get-text-property (point) 'face)
'font-lock-comment-face)
(eq (caar (c-guess-basic-syntax)) 'c))))))))
(modes . align-perl-modes)
(tab-stop . nil))
+ (python-assignment
+ (regexp . ,(concat "[^=!<> \t\n]\\(\\s-*\\)="
+ "\\(\\s-*\\)\\([^>= \t\n]\\|$\\)"))
+ (group . (1 2))
+ (modes . '(python-mode))
+ (tab-stop . nil))
+
(make-assignment
(regexp . "^\\s-*\\w+\\(\\s-*\\):?=\\(\\s-*\\)\\([^\t\n \\\\]\\|$\\)")
(group . (1 2))
;; perl-mode doesn't give us enough syntactic information (and we
;; don't do our own parsing yet), this rule is too destructive to
;; run normally.
- (perl-comma-delimiter
+ (basic-comma-delimiter
(regexp . ",\\(\\s-*\\)[^# \t\n]")
(repeat . t)
- (modes . align-perl-modes)
+ (modes . (append align-perl-modes '(python-mode)))
(run-if . ,(function (lambda () current-prefix-arg))))
(c++-comment
(goto-char (match-beginning 1))
(not (bolp)))))))
- (c-macro-line-continuation
- (regexp . "\\(\\s-*\\)\\\\$")
- (modes . (append align-c++-modes '(makefile-mode)))
- (column . c-backslash-column))
-; (valid
-; . ,(function
-; (lambda ()
-; (memq (caar (c-guess-basic-syntax))
-; '(cpp-macro cpp-macro-cont))))))
-
(c-chain-logic
(regexp . "\\(\\s-*\\)\\(&&\\|||\\|\\<and\\>\\|\\<or\\>\\)")
(modes . align-c++-modes)
(goto-char (match-end 2))
(looking-at "\\s-*\\(#\\|$\\)"))))))
+ (python-chain-logic
+ (regexp . "\\(\\s-*\\)\\(\\<and\\>\\|\\<or\\>\\)")
+ (modes . '(python-mode))
+ (valid . ,(function
+ (lambda ()
+ (save-excursion
+ (goto-char (match-end 2))
+ (looking-at "\\s-*\\(#\\|$\\|\\\\\\)"))))))
+
+ (c-macro-line-continuation
+ (regexp . "\\(\\s-*\\)\\\\$")
+ (modes . align-c++-modes)
+ (column . c-backslash-column))
+; (valid
+; . ,(function
+; (lambda ()
+; (memq (caar (c-guess-basic-syntax))
+; '(cpp-macro cpp-macro-cont))))))
+
+ (basic-line-continuation
+ (regexp . "\\(\\s-*\\)\\\\$")
+ (modes . '(python-mode makefile-mode)))
+
(tex-record-separator
(regexp . ,(function
(lambda (end reverse)
(unless change
(goto-char (cdar a))
(if ecol
- (if (not (= ecol (current-column)))
+ (if (/= ecol (current-column))
(setq change t))
(setq ecol (current-column))))
(when justify
(goto-char (caar a))
(if (and (re-search-forward "\\s-*" (cdar a) t)
- (not (= (point) (cdar a))))
+ (/= (point) (cdar a)))
(let ((bcol (current-column)))
(setcdr (car a) (cons (point-marker) (cdar a)))
(goto-char (cdr (cdar a)))
;; `align-region', all we have to do here is indent.
(unless change
- (setq change (and ecol (not (= col ecol)))))
+ (setq change (and ecol (/= col ecol))))
(when (or func change)
(while areas