mirror of https://github.com/Wilfred/difftastic/
Improve word diffing heuristic and add another sample file
parent
1d3b6836ef
commit
a814e01d22
@ -0,0 +1,16 @@
|
||||
(format "%s: %s" (site-name) name)
|
||||
|
||||
(defcustom deadgrep-max-buffers
|
||||
4
|
||||
"The maximum number of deadgrep results buffers.
|
||||
|
||||
If the number of results buffers exceeds this value, deadgrep
|
||||
will kill results buffers. The least recently used buffers are
|
||||
killed first.
|
||||
|
||||
To disable cleanup entirely, set this variable to nil."
|
||||
:type '(choice
|
||||
(number :tag "Maximum of buffers allowed")
|
||||
(const :tag "Disable cleanup" nil))
|
||||
:group 'deadgrep)
|
||||
|
||||
@ -0,0 +1,13 @@
|
||||
(format "SoloWiki Viewing: %s" name)
|
||||
|
||||
(defcustom deadgrep-max-buffers
|
||||
4
|
||||
"Deadgrep will kill the least recently used results buffer
|
||||
if there are more than this many.
|
||||
|
||||
To disable cleanup entirely, set this variable to nil."
|
||||
:type '(choice
|
||||
(number :tag "Maximum of buffers allowed")
|
||||
(const :tag "Disable cleanup" nil))
|
||||
:group 'deadgrep)
|
||||
|
||||
Loading…
Reference in New Issue