emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/lua-mode d6f7e0b 287/468: lua-documentation-function: New


From: Philip Kaludercic
Subject: [nongnu] elpa/lua-mode d6f7e0b 287/468: lua-documentation-function: New custom variable.
Date: Thu, 5 Aug 2021 04:58:54 -0400 (EDT)

branch: elpa/lua-mode
commit d6f7e0b330845c28f4a189ec99572b5b40391db9
Author: Mark Oteiza <mvoteiza@udel.edu>
Commit: Mark Oteiza <mvoteiza@udel.edu>

    lua-documentation-function: New custom variable.
    
    Lets the lua mode browser be customizable.
    
    Provides some choices for browser functions.
    
    lua-documentation-url: Try to use local documentation
    
    Change lua-search-url-prefix to lua-documentation-url and let
    `lua-search-documentation' add the fragment.
---
 lua-mode.el | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/lua-mode.el b/lua-mode.el
index 66f07d2..adb8992 100644
--- a/lua-mode.el
+++ b/lua-mode.el
@@ -222,8 +222,19 @@ Should be a list of strings."
   :type 'boolean
   :group 'lua)
 
-(defcustom lua-search-url-prefix 
"http://www.lua.org/manual/5.1/manual.html#pdf-";
-  "*URL at which to search for documentation on a word"
+(defcustom lua-documentation-function 'browse-url
+  "Function used to fetch the Lua reference manual."
+  :type `(radio (function-item browse-url)
+                ,@(when (fboundp 'eww) '((function-item eww)))
+                ,@(when (fboundp 'w3m-browse-url) '((function-item 
w3m-browse-url)))
+                (function :tag "Other function"))
+  :group 'lua)
+
+(defcustom lua-documentation-url
+  (or (and (file-readable-p "/usr/share/doc/lua/manual.html")
+           "file:///usr/share/doc/lua/manual.html")
+      "http://www.lua.org/manual/5.1/manual.html";)
+  "URL pointing to the Lua reference manual."
   :type 'string
   :group 'lua)
 
@@ -1790,7 +1801,8 @@ Create a Lua process if one doesn't already exist."
 (defun lua-search-documentation ()
   "Search Lua documentation for the word at the point."
   (interactive)
-  (browse-url (concat lua-search-url-prefix (lua-funcname-at-point))))
+  (let ((url (concat lua-documentation-url "#pdf-" (lua-funcname-at-point))))
+    (funcall lua-documentation-function url)))
 
 (defun lua-toggle-electric-state (&optional arg)
   "Toggle the electric indentation feature.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]