We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e2b463 commit 483a405Copy full SHA for 483a405
docstr-util.el
@@ -73,6 +73,17 @@ See function `forward-line' for argument N."
73
"Check if IN-STR contain in any string in the IN-LIST."
74
(cl-some (lambda (str) (string-match-p (regexp-quote str) in-str)) in-list))
75
76
+;;
77
+;; (@* "Searching" )
78
79
+
80
+(defun docstr-util-looking-back (regexp &optional limit greedy)
81
+ "Wrapper for function `looking-back'.
82
83
+See function `looking-back' description for arguments REGEXP, LIMIT,
84
+and GREEDY."
85
+ (ignore-errors (looking-back regexp limit greedy)))
86
87
;;
88
;; (@* "Character" )
89
0 commit comments