branch: elpa/nix-mode
commit b1078c6adddb719f19b5ea258d8a93d919ccf524
Author: Matthew Bauer <mjbaue...@gmail.com>
Commit: Matthew Bauer <mjbaue...@gmail.com>

    Add case sensitive searching
---
 nix-mode.el | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/nix-mode.el b/nix-mode.el
index 5f9e63f18c..d19d4bdca2 100644
--- a/nix-mode.el
+++ b/nix-mode.el
@@ -410,6 +410,9 @@ The hook `nix-mode-hook' is run when Nix mode is started.
   (setq-local paragraph-start "[ \t]*\\(#+[ \t]*\\)?$")
   (setq-local paragraph-separate paragraph-start)
 
+  ;; Case sensitive searching
+  (setq-local case-fold-search nil)
+
   (easy-menu-add nix-mode-menu nix-mode-map))
 
 ;;;###autoload

Reply via email to