Skip to content

nilsojunior/nj-search

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

nj-search

Simple Vim like search module for GNU Emacs.

Setup

Example setup with evil.

(add-to-list 'load-path "path/to/nj-search.el") ;; Add to path
(require 'nj-search-mode) ;; Import
(nj-search-mode 1) ;; Enable

;; Define keybinds
(evil-define-key 'normal global-map
  "/" 'nj-search-forward
  "?" 'nj-search-backwards
  "*" 'nj-search-word-forward
  "#" 'nj-search-word-backwards
  "n" 'nj-search-next
  "N" 'nj-search-prev)

(advice-add 'evil-force-normal-state :before #'nj-search-clear-overlays) ;; Clear highlights

About

Vim like search for GNU Emacs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors