insertion functions, in order:
@defun sweeprolog-maybe-extract-region-to-predicate
-If the region is active, extract the selected goal into a separate
-predicate. @xref{Extract Goal}.
+If the region is active and selects a goal, extract the selected goal
+into a separate predicate. @xref{Extract Goal}.
@end defun
@defun sweeprolog-maybe-insert-next-clause
menu according to that context.
@end defvar
-To enable Context Menu, type @kbd{M-x context-menu-mode @key{RET}} or
-add a call to @code{(context-menu-mode)} in your Emacs initialization
-file to enable it in all future sessions. You access the context menu
-by right-clicking anywhere in Emacs. If you do it in a Sweep Prolog
-mode buffer, you can invoke several Prolog-specific commands based on
-where you click in the buffer.
+To enable Context Menu mode, type @kbd{M-x context-menu-mode
+@key{RET}}. To have Context Menu mode enabled automatically when
+Emacs starts, place a call to @code{(context-menu-mode)} in your Emacs
+initialization file. You can access the context menu by
+right-clicking anywhere in Emacs. If you do it in a Sweep Prolog mode
+buffer, you can invoke several Prolog-specific commands based on where
+you click in the buffer.
If you right-click on a Prolog file specification or module name,
Sweep suggests visiting it either in the current window or in another.
in a dedicated buffer (@pxref{Prolog Help}). For variables, it
enables the @samp{Rename Variable} menu entry that you can use to
rename the variable you click on across its containing clause
-(@pxref{Renaming Variables, , Renaming Variables}).
+(@pxref{Renaming Variables}).
You can further extend and customize the context menu that Sweep
Prolog mode provides by adding functions to the variable
@code{sweeprolog-extract-region-to-predicate} warns you about it and
asks you to confirm before continuing.
+If you call @code{sweeprolog-extract-region-to-predicate} when the
+region does not contain a valid Prolog term, this command complains
+and refuses to extract the invalid term.
+
By default, @code{sweeprolog-extract-region-to-predicate} is not bound
directly to any key in Sweep Prolog mode; instead, you can invoke it
by typing @kbd{M-@key{RET}} (@code{sweeprolog-insert-term-dwim}) when
(<= sweeprolog-context-menu-region-beg-at-click
point
sweeprolog-context-menu-region-end-at-click))
- (define-key menu [sweeprolog-extract-region-to-predicate]
- `(menu-item "Extract to New Predicate"
- sweeprolog-extract-region-to-predicate
- :help "Extract the selected goal into a separate predicate"
- :keys "\\[sweeprolog-extract-region-to-predicate]"))))
+ (when (sweeprolog-context-callable-p
+ sweeprolog-context-menu-region-beg-at-click)
+ (define-key
+ menu [sweeprolog-extract-region-to-predicate]
+ `(menu-item "Extract to New Predicate"
+ sweeprolog-extract-region-to-predicate
+ :help "Extract the selected goal into a separate predicate"
+ :keys "\\[sweeprolog-insert-term-dwim] in active region")))))
(defvar sweeprolog-context-menu-functions
'(sweeprolog-context-menu-for-clause
body
".\n"))
(indent-region-line-by-line def-beg (point))
- (goto-char def-beg)))))))
+ (goto-char def-beg)
+ (sweeprolog-analyze-buffer)))))))
(defun sweeprolog-maybe-extract-region-to-predicate (&rest _)
- (when (use-region-p)
+ (when (and (use-region-p)
+ (sweeprolog-context-callable-p (use-region-beginning)))
(sweeprolog-extract-region-to-predicate
(use-region-beginning)
(use-region-end)