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

Lines Matching defs:bookmark

2036 ;;;### (autoloads (bookmark-bmenu-list bookmark-load bookmark-save
2037 ;;;;;; bookmark-write bookmark-delete bookmark-insert bookmark-rename
2038 ;;;;;; bookmark-insert-location bookmark-relocate bookmark-jump
2039 ;;;;;; bookmark-set) "bookmark" "bookmark.el" (17842 58280))
2040 ;;; Generated autoloads from bookmark.el
2041 (define-key ctl-x-map "rb" 'bookmark-jump)
2042 (define-key ctl-x-map "rm" 'bookmark-set)
2043 (define-key ctl-x-map "rl" 'bookmark-bmenu-list)
2045 (defvar bookmark-map nil "\
2046 Keymap containing bindings to bookmark functions.
2048 so that you have a bookmark prefix, just use `global-set-key' and bind a
2049 key of your choice to `bookmark-map'. All interactive bookmark
2051 (define-prefix-command 'bookmark-map)
2052 (define-key bookmark-map "x" 'bookmark-set)
2053 (define-key bookmark-map "m" 'bookmark-set) ; "m" for "mark"
2054 (define-key bookmark-map "j" 'bookmark-jump)
2055 (define-key bookmark-map "g" 'bookmark-jump) ; "g" for "go"
2056 (define-key bookmark-map "i" 'bookmark-insert)
2057 (define-key bookmark-map "e" 'edit-bookmarks)
2058 (define-key bookmark-map "f" 'bookmark-insert-location) ; "f" for "find"
2059 (define-key bookmark-map "r" 'bookmark-rename)
2060 (define-key bookmark-map "d" 'bookmark-delete)
2061 (define-key bookmark-map "l" 'bookmark-load)
2062 (define-key bookmark-map "w" 'bookmark-write)
2063 (define-key bookmark-map "s" 'bookmark-save)
2065 (autoload (quote bookmark-set) "bookmark" "\
2066 Set a bookmark named NAME inside a file.
2068 With prefix arg, will not overwrite a bookmark that has the same name
2069 as NAME if such a bookmark already exists, but instead will \"push\"
2070 the new bookmark onto the bookmark alist. Thus the most recently set
2071 bookmark with name NAME would be the one in effect at any given time,
2076 bookmark name, type C-w while setting a bookmark. Successive C-w's
2079 Typing C-u inserts the name of the last bookmark used in the buffer
2080 \(as an aid in using a single bookmark name to track your progress
2081 through a large file). If no bookmark was used, then C-u inserts the
2084 Use \\[bookmark-delete] to remove bookmarks (you give it a name,
2085 and it removes only the first instance of a bookmark with that name from
2090 (autoload (quote bookmark-jump) "bookmark" "\
2091 Jump to bookmark BOOKMARK (a point in some file).
2093 `bookmark-alist' is nil. If that happens, you need to load in some
2094 bookmarks. See help on function `bookmark-load' for more about
2098 if you wish to give the bookmark a new location, and `bookmark-jump'
2100 of the old one in the permanent bookmark record.
2104 (autoload (quote bookmark-relocate) "bookmark" "\
2106 This makes an already existing bookmark point to that file, instead of
2108 after a bookmark was set in it.
2112 (autoload (quote bookmark-insert-location) "bookmark" "\
2115 minibuffer history list `bookmark-history'.
2119 (defalias (quote bookmark-locate) (quote bookmark-insert-location))
2121 (autoload (quote bookmark-rename) "bookmark" "\
2122 Change the name of OLD bookmark to NEW name.
2131 consecutive words from the text of the buffer into the new bookmark
2136 (autoload (quote bookmark-insert) "bookmark" "\
2137 Insert the text of the file pointed to by bookmark BOOKMARK.
2139 `bookmark-alist' is nil. If that happens, you need to load in some
2140 bookmarks. See help on function `bookmark-load' for more about
2145 (autoload (quote bookmark-delete) "bookmark" "\
2146 Delete BOOKMARK from the bookmark list.
2147 Removes only the first instance of a bookmark with that name. If
2149 not be deleted. Defaults to the \"current\" bookmark (that is, the
2151 Optional second arg BATCH means don't update the bookmark list buffer,
2156 (autoload (quote bookmark-write) "bookmark" "\
2158 Don't use this in Lisp programs; use `bookmark-save' instead.
2162 (autoload (quote bookmark-save) "bookmark" "\
2165 `bookmark-default-file'. With a prefix arg, save it in file FILE
2175 `bookmark-load', \\[bookmark-load]. That function will prompt you
2177 `bookmark-default-file'.
2181 (autoload (quote bookmark-load) "bookmark" "\
2182 Load bookmarks from FILE (which must be in bookmark format).
2188 If you load a file that doesn't contain a proper bookmark alist, you
2189 will corrupt Emacs's bookmark list. Generally, you should only load
2190 in files that were created with the bookmark functions in the first
2191 place. Your own personal bookmark file, `~/.emacs.bmk', is
2202 (autoload (quote bookmark-bmenu-list) "bookmark" "\
2205 The leftmost column displays a D if the bookmark is flagged for
2210 (defalias (quote list-bookmarks) (quote bookmark-bmenu-list))
2212 (defalias (quote edit-bookmarks) (quote bookmark-bmenu-list))
2214 (defvar menu-bar-bookmark-map (let ((map (make-sparse-keymap "Bookmark functions"))) (define-key map [load] (quote ("Load a Bookmark File..." . bookmark-load))) (define-key map [write] (quote ("Save Bookmarks As..." . bookmark-write))) (define-key map [save] (quote ("Save Bookmarks" . bookmark-save))) (define-key map [edit] (quote ("Edit Bookmark List" . bookmark-bmenu-list))) (define-key map [delete] (quote ("Delete Bookmark..." . bookmark-delete))) (define-key map [rename] (quote ("Rename Bookmark..." . bookmark-rename))) (define-key map [locate] (quote ("Insert Location..." . bookmark-locate))) (define-key map [insert] (quote ("Insert Contents..." . bookmark-insert))) (define-key map [set] (quote ("Set Bookmark..." . bookmark-set))) (define-key map [jump] (quote ("Jump to Bookmark..." . bookmark-jump))) map))
2216 (defalias (quote menu-bar-bookmark-map) menu-bar-bookmark-map)