• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/textmodes/

Lines Matching +defs:left +defs:arrow

167 S-left  -> M--
182 (S-left [(shift left)] [(meta ?-)])
712 right. If not, it will be aligned to the left.
4242 (define-key org-goto-map [(left)] 'org-goto-left)
4343 (defun org-goto-left ()
5925 (defconst org-narrow-column-arrow "=>"
6023 (list 'display org-narrow-column-arrow)
6136 "Justify the current field, text to left, number to right.
6393 With optional argument ON-DELIM, stop with point before the left delimiter
6541 (defun org-table-move-column-left ()
6542 "Move column to the left."
6544 (org-table-move-column 'left))
6546 (defun org-table-move-column (&optional left)
6547 "Move the current column to the right. With arg LEFT, move to the left."
6554 (col1 (if left (1- col) col))
6559 (colpos (if left (1- col) (1+ col))))
6560 (if (and left (= col 1))
6561 (error "Cannot move column further left"))
6562 (if (and (not left) (looking-at "[^|\n]*|[^|\n]*$"))
7933 (define-key org-edit-formulas-map [(shift left)] 'org-table-edit-backward-field)
8431 'display org-narrow-column-arrow))
8480 '([(meta shift left)] org-table-delete-column)
8481 '([(meta left)] org-table-move-column-left)
8559 ["Move Column Left" org-metaleft :active (org-at-table-p) :keys "M-<left>"]
8561 ["Delete Column" org-shiftmetaleft :active (org-at-table-p) :keys "M-S-<left>"]
10416 UP/DOWN=headline TAB=cycle visibility [Q]uit RET/<left>/<right>=Store
10419 <left>/<right> -> before/after current headline, same headings level")
10542 find a better place. Then press RET or <left> or <right> in insert the note.
10550 <left> on headline as same level, before current heading
10952 ((eq arg 'left)
12039 (define-key minibuffer-local-map [(meta shift left)]
12051 (define-key minibuffer-local-map [(shift left)]
12059 (org-eval-in-calendar '(scroll-calendar-left 1))))
13008 (define-key org-agenda-mode-map (org-key 'S-left) 'org-agenda-date-earlier)
13010 (define-key org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-date-earlier)
13056 (define-key org-agenda-mode-map [(left)] 'org-agenda-earlier)
17974 "right" "left")))
18154 (defun org-create-multibrace-regexp (left right n)
18162 (let* ((nothing (concat "[^" "\\" left "\\" right "]*?"))
18165 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
18169 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
18170 (concat left "\\(" re "\\)" right)))
18575 (define-key org-mode-map [(meta left)] 'org-metaleft)
18580 (define-key org-mode-map [(meta shift left)] 'org-shiftmetaleft)
18587 (define-key org-mode-map (org-key 'S-left) 'org-shiftleft)
18600 (define-key org-mode-map [?\e (left)] 'org-metaleft)
18614 (define-key org-mode-map [?\C-c ?\C-x (left)] 'org-shiftleft)
18868 "Promote heading or move table column to left.
18874 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
18951 ((org-on-heading-p) (org-call-with-arg 'org-todo 'left))