123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543 |
- (eval-when-compile
- (require 'cl))
- (require 'thingatpt)
- (require 'pp)
- (require 'browse-url)
- (defgroup quickurl nil
- "Insert a URL based on text at point in buffer."
- :version "21.1"
- :group 'abbrev
- :prefix "quickurl-")
- (defcustom quickurl-url-file (convert-standard-filename "~/.quickurls")
- "*File that contains the URL list."
- :type 'file
- :group 'quickurl)
- (defcustom quickurl-format-function (lambda (url) (format "<URL:%s>" (quickurl-url-url url)))
- "*Function to format the URL before insertion into the current buffer."
- :type 'function
- :group 'quickurl)
- (defcustom quickurl-sort-function (lambda (list)
- (sort list
- (lambda (x y)
- (string<
- (downcase (quickurl-url-description x))
- (downcase (quickurl-url-description y))))))
- "*Function to sort the URL list."
- :type 'function
- :group 'quickurl)
- (defcustom quickurl-grab-lookup-function #'current-word
- "*Function to grab the thing to lookup."
- :type 'function
- :group 'quickurl)
- (defcustom quickurl-assoc-function #'assoc-ignore-case
- "*Function to use for alist lookup into `quickurl-urls'."
- :type 'function
- :group 'quickurl)
- (defcustom quickurl-completion-ignore-case t
- "*Should `quickurl-ask' ignore case when doing the input lookup?"
- :type 'boolean
- :group 'quickurl)
- (defcustom quickurl-prefix ";; -*- lisp -*-\n\n"
- "*Text to write to `quickurl-url-file' before writing the URL list."
- :type 'string
- :group 'quickurl)
- (defcustom quickurl-postfix ""
- "*Text to write to `quickurl-url-file' after writing the URL list.
- See the constant `quickurl-reread-hook-postfix' for some example text that
- could be used here."
- :type 'string
- :group 'quickurl)
- (defcustom quickurl-list-mode-hook nil
- "*Hooks for `quickurl-list-mode'."
- :type 'hook
- :group 'quickurl)
- (defconst quickurl-reread-hook-postfix
- "
- ;; Local Variables:
- ;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))
- ;; End:
- "
- "Example `quickurl-postfix' text that adds a local variable to the
- `quickurl-url-file' so that if you edit it by hand it will ensure that
- `quickurl-urls' is updated with the new URL list.
- To make use of this do something like:
- (setq quickurl-postfix quickurl-reread-hook-postfix)
- in your ~/.emacs (after loading/requiring quickurl).")
- (defvar quickurl-urls nil
- "URL alist for use with `quickurl' and `quickurl-ask'.")
- (defvar quickurl-list-mode-map
- (let ((map (make-sparse-keymap)))
- (suppress-keymap map t)
- (define-key map "a" #'quickurl-list-add-url)
- (define-key map [(control m)] #'quickurl-list-insert-url)
- (define-key map "u" #'quickurl-list-insert-naked-url)
- (define-key map " " #'quickurl-list-insert-with-lookup)
- (define-key map "l" #'quickurl-list-insert-lookup)
- (define-key map "d" #'quickurl-list-insert-with-desc)
- (define-key map [(control g)] #'quickurl-list-quit)
- (define-key map "q" #'quickurl-list-quit)
- (define-key map [mouse-2] #'quickurl-list-mouse-select)
- (define-key map "?" #'describe-mode)
- map)
- "Local keymap for a `quickurl-list-mode' buffer.")
- (defvar quickurl-list-buffer-name "*quickurl-list*"
- "Name for the URL listing buffer.")
- (defvar quickurl-list-last-buffer nil
- "`current-buffer' when `quickurl-list' was called.")
- (defun quickurl-url-commented-p (url)
- "Does the URL have a comment?"
- (listp (cdr url)))
- (defun quickurl-make-url (keyword url &optional comment)
- "Create a URL from KEYWORD, URL and (optionally) COMMENT."
- (if (and comment (not (zerop (length comment))))
- (list keyword url comment)
- (cons keyword url)))
- (defun quickurl-url-keyword (url)
- "Return the keyword for the URL.
- Note that this function is a setfable place."
- (car url))
- (defsetf quickurl-url-keyword (url) (store)
- `(setf (car ,url) ,store))
- (defun quickurl-url-url (url)
- "Return the actual URL of the URL.
- Note that this function is a setfable place."
- (if (quickurl-url-commented-p url)
- (cadr url)
- (cdr url)))
- (defsetf quickurl-url-url (url) (store)
- `
- (if (quickurl-url-commented-p ,url)
- (setf (cadr ,url) ,store)
- (setf (cdr ,url) ,store)))
- (defun quickurl-url-comment (url)
- "Get the comment from a URL.
- If the URL has no comment an empty string is returned. Also note that this
- function is a setfable place."
- (if (quickurl-url-commented-p url)
- (nth 2 url)
- ""))
- (defsetf quickurl-url-comment (url) (store)
- `
- (if (quickurl-url-commented-p ,url)
- (if (zerop (length ,store))
- (setf (cdr ,url) (cadr ,url))
- (setf (nth 2 ,url) ,store))
- (unless (zerop (length ,store))
- (setf (cdr ,url) (list (cdr ,url) ,store)))))
- (defun quickurl-url-description (url)
- "Return a description for the URL.
- If the URL has a comment then this is returned, otherwise the keyword is
- returned."
- (let ((desc (quickurl-url-comment url)))
- (if (zerop (length desc))
- (quickurl-url-keyword url)
- desc)))
- (defun* quickurl-read (&optional buffer)
- "`read' the URL list from BUFFER into `quickurl-urls'.
- BUFFER, if nil, defaults to current buffer.
- Note that this function moves point to `point-min' before doing the `read'
- It also restores point after the `read'."
- (save-excursion
- (setf (point) (point-min))
- (setq quickurl-urls (funcall quickurl-sort-function
- (read (or buffer (current-buffer)))))))
- (defun quickurl-load-urls ()
- "Load the contents of `quickurl-url-file' into `quickurl-urls'."
- (when (file-exists-p quickurl-url-file)
- (with-temp-buffer
- (insert-file-contents quickurl-url-file)
- (quickurl-read))))
- (defun quickurl-save-urls ()
- "Save the contents of `quickurl-urls' to `quickurl-url-file'."
- (with-temp-buffer
- (let ((standard-output (current-buffer)))
- (princ quickurl-prefix)
- (pp quickurl-urls)
- (princ quickurl-postfix)
- (write-region (point-min) (point-max) quickurl-url-file nil 0))))
- (defun quickurl-find-url (lookup)
- "Return URL associated with key LOOKUP.
- The lookup is done by looking in the alist `quickurl-urls' and the `cons'
- for the URL is returned. The actual method used to look into the alist
- depends on the setting of the variable `quickurl-assoc-function'."
- (funcall quickurl-assoc-function lookup quickurl-urls))
- (defun quickurl-insert (url &optional silent)
- "Insert URL, formatted using `quickurl-format-function'.
- Also display a `message' saying what the URL was unless SILENT is non-nil."
- (insert (funcall quickurl-format-function url))
- (unless silent
- (message "Found %s" (quickurl-url-url url))))
- (defun* quickurl (&optional lookup)
- "Insert a URL based on LOOKUP.
- If not supplied LOOKUP is taken to be the word at point in the current
- buffer, this default action can be modified via
- `quickurl-grab-lookup-function'."
- (interactive)
- (when (or lookup
- (setq lookup (funcall quickurl-grab-lookup-function)))
- (quickurl-load-urls)
- (let ((url (quickurl-find-url lookup)))
- (if (null url)
- (error "No URL associated with \"%s\"" lookup)
- (when (looking-at "\\w")
- (skip-syntax-forward "\\w"))
- (insert " ")
- (quickurl-insert url)))))
- (defun quickurl-ask (lookup)
- "Insert a URL, with `completing-read' prompt, based on LOOKUP."
- (interactive
- (list
- (progn
- (quickurl-load-urls)
- (let ((completion-ignore-case quickurl-completion-ignore-case))
- (completing-read "Lookup: " quickurl-urls nil t)))))
- (let ((url (quickurl-find-url lookup)))
- (when url
- (quickurl-insert url))))
- (defun quickurl-grab-url ()
- "Attempt to grab a word/URL pair from point in the current buffer.
- Point should be somewhere on the URL and the word is taken to be the thing
- that is returned from calling `quickurl-grab-lookup-function' once a
- `backward-word' has been issued at the start of the URL.
- It is assumed that the URL is either \"unguarded\" or is wrapped inside an
- <URL:...> wrapper."
- (let ((url (thing-at-point 'url)))
- (when url
- (save-excursion
- (beginning-of-thing 'url)
-
-
-
- (when (thing-at-point-looking-at thing-at-point-markedup-url-regexp)
- (search-backward "<URL:"))
- (backward-word 1)
- (let ((word (funcall quickurl-grab-lookup-function)))
- (when word
- (quickurl-make-url
-
-
-
-
- (with-temp-buffer
- (insert word)
- (buffer-substring-no-properties (point-min) (point-max)))
- url)))))))
- (defun quickurl-add-url (word url comment)
- "Allow the user to interactively add a new URL associated with WORD.
- See `quickurl-grab-url' for details on how the default word/URL combination
- is decided."
- (interactive (let ((word-url (quickurl-grab-url)))
- (list (read-string "Word: " (quickurl-url-keyword word-url))
- (read-string "URL: " (quickurl-url-url word-url))
- (read-string "Comment: " (quickurl-url-comment word-url)))))
- (if (zerop (length word))
- (error "You must specify a WORD for lookup")
- (quickurl-load-urls)
- (let* ((current-url (quickurl-find-url word))
- (add-it (if current-url
- (if (called-interactively-p 'interactive)
- (y-or-n-p (format "\"%s\" exists, replace URL? " word))
- t)
- t)))
- (when add-it
- (if current-url
- (progn
- (setf (quickurl-url-url current-url) url)
- (setf (quickurl-url-comment current-url) comment))
- (push (quickurl-make-url word url comment) quickurl-urls))
- (setq quickurl-urls (funcall quickurl-sort-function quickurl-urls))
- (quickurl-save-urls)
- (when (get-buffer quickurl-list-buffer-name)
- (quickurl-list-populate-buffer))
- (when (called-interactively-p 'interactive)
- (message "Added %s" url))))))
- (defun quickurl-browse-url (&optional lookup)
- "Browse the URL associated with LOOKUP.
- If not supplied LOOKUP is taken to be the word at point in the
- current buffer, this default action can be modified via
- `quickurl-grab-lookup-function'."
- (interactive)
- (when (or lookup
- (setq lookup (funcall quickurl-grab-lookup-function)))
- (quickurl-load-urls)
- (let ((url (quickurl-find-url lookup)))
- (if url
- (browse-url (quickurl-url-url url))
- (error "No URL associated with \"%s\"" lookup)))))
- (defun quickurl-browse-url-ask (lookup)
- "Browse the URL, with `completing-read' prompt, associated with LOOKUP."
- (interactive (list
- (progn
- (quickurl-load-urls)
- (completing-read "Browse: " quickurl-urls nil t))))
- (let ((url (quickurl-find-url lookup)))
- (when url
- (browse-url (quickurl-url-url url)))))
- (defun quickurl-edit-urls ()
- "Pull `quickurl-url-file' into a buffer for hand editing."
- (interactive)
- (find-file quickurl-url-file))
- (put 'quickurl-list-mode 'mode-class 'special)
- (defun quickurl-list-mode ()
- "A mode for browsing the quickurl URL list.
- The key bindings for `quickurl-list-mode' are:
- \\{quickurl-list-mode-map}"
- (interactive)
- (kill-all-local-variables)
- (use-local-map quickurl-list-mode-map)
- (setq major-mode 'quickurl-list-mode
- mode-name "quickurl list")
- (run-mode-hooks 'quickurl-list-mode-hook)
- (setq buffer-read-only t
- truncate-lines t))
- (defun quickurl-list ()
- "Display `quickurl-list' as a formatted list using `quickurl-list-mode'."
- (interactive)
- (quickurl-load-urls)
- (unless (string= (buffer-name) quickurl-list-buffer-name)
- (setq quickurl-list-last-buffer (current-buffer)))
- (pop-to-buffer quickurl-list-buffer-name)
- (quickurl-list-populate-buffer)
- (quickurl-list-mode))
- (defun quickurl-list-populate-buffer ()
- "Populate the `quickurl-list' buffer."
- (with-current-buffer (get-buffer quickurl-list-buffer-name)
- (let ((buffer-read-only nil)
- (fmt (format "%%-%ds %%s\n"
- (apply #'max (or (loop for url in quickurl-urls
- collect (length (quickurl-url-description url)))
- (list 20))))))
- (setf (buffer-string) "")
- (loop for url in quickurl-urls
- do (let ((start (point)))
- (insert (format fmt (quickurl-url-description url)
- (quickurl-url-url url)))
- (add-text-properties start (1- (point))
- '(mouse-face highlight
- help-echo "mouse-2: insert this URL"))))
- (setf (point) (point-min)))))
- (defun quickurl-list-add-url (word url comment)
- "Wrapper for `quickurl-add-url' that doesn't guess the parameters."
- (interactive "sWord: \nsURL: \nsComment: ")
- (quickurl-add-url word url comment))
- (defun quickurl-list-quit ()
- "Kill the buffer named `quickurl-list-buffer-name'."
- (interactive)
- (kill-buffer quickurl-list-buffer-name)
- (switch-to-buffer quickurl-list-last-buffer)
- (delete-other-windows))
- (defun quickurl-list-mouse-select (event)
- "Select the URL under the mouse click."
- (interactive "e")
- (setf (point) (posn-point (event-end event)))
- (quickurl-list-insert-url))
- (defun quickurl-list-insert (type)
- "Insert the URL under cursor into `quickurl-list-last-buffer'.
- TYPE dictates what will be inserted, options are:
- `url' - Insert the URL as <URL:url>
- `naked-url' - Insert the URL with no formatting
- `with-lookup' - Insert \"lookup <URL:url>\"
- `with-desc' - Insert \"description <URL:url>\"
- `lookup' - Insert the lookup for that URL"
- (let ((url (nth (count-lines (point-min) (line-beginning-position))
- quickurl-urls)))
- (if url
- (with-current-buffer quickurl-list-last-buffer
- (insert
- (case type
- (url (funcall quickurl-format-function url))
- (naked-url (quickurl-url-url url))
- (with-lookup (format "%s <URL:%s>"
- (quickurl-url-keyword url)
- (quickurl-url-url url)))
- (with-desc (format "%S <URL:%s>"
- (quickurl-url-description url)
- (quickurl-url-url url)))
- (lookup (quickurl-url-keyword url)))))
- (error "No URL details on that line"))
- url))
- (defmacro quickurl-list-make-inserter (type)
- "Macro to make a key-response function for use in `quickurl-list-mode-map'."
- `(defun ,(intern (format "quickurl-list-insert-%S" type)) ()
- ,(format "Insert the result of calling `quickurl-list-insert' with `%s'." type)
- (interactive)
- (when (quickurl-list-insert ',type)
- (quickurl-list-quit))))
- (quickurl-list-make-inserter url)
- (quickurl-list-make-inserter naked-url)
- (quickurl-list-make-inserter with-lookup)
- (quickurl-list-make-inserter with-desc)
- (quickurl-list-make-inserter lookup)
- (provide 'quickurl)
|