All Projects → timakro → vim-searchant

timakro / vim-searchant

Licence: MIT license
searchant.vim is obsoleted by vim-searchhi

Programming Languages

Vim Script
2826 projects

Projects that are alternatives of or similar to vim-searchant

Targets.vim
Vim plugin that provides additional text objects
Stars: ✭ 2,114 (+3743.64%)
Mutual labels:  vim-plugins
Visual Split.vim
Vim plugin to control splits with visual selections or text objects
Stars: ✭ 190 (+245.45%)
Mutual labels:  vim-plugins
Vim Anyfold
Language agnostic vim plugin for folding and motion based on indentation.
Stars: ✭ 208 (+278.18%)
Mutual labels:  vim-plugins
Vim Dadbod Completion
Database autocompletion powered by https://github.com/tpope/vim-dadbod
Stars: ✭ 163 (+196.36%)
Mutual labels:  vim-plugins
Startuptime.vim
Breakdown Vim's --startuptime output
Stars: ✭ 180 (+227.27%)
Mutual labels:  vim-plugins
Vifm.vim
Vim plugin that allows use of vifm as a file picker
Stars: ✭ 197 (+258.18%)
Mutual labels:  vim-plugins
Vim Ruby
Vim/Ruby Configuration Files
Stars: ✭ 1,885 (+3327.27%)
Mutual labels:  vim-plugins
Vim Arpeggio
Vim plugin: Mappings for simultaneously pressed keys
Stars: ✭ 216 (+292.73%)
Mutual labels:  vim-plugins
Vim Arduino
Vim plugin for compiling and uploading arduino sketches
Stars: ✭ 187 (+240%)
Mutual labels:  vim-plugins
Vim Vspec
Vim plugin: Testing framework for Vim script
Stars: ✭ 207 (+276.36%)
Mutual labels:  vim-plugins
Stackanswers.vim
Vim plugin to fetch and display answers from Stack Overflow
Stars: ✭ 165 (+200%)
Mutual labels:  vim-plugins
Exit Vim
Vim plugin that exits Vim on startup
Stars: ✭ 176 (+220%)
Mutual labels:  vim-plugins
Bullets.vim
🔫 Bullets.vim is a Vim/NeoVim plugin for automated bullet lists.
Stars: ✭ 199 (+261.82%)
Mutual labels:  vim-plugins
Vim Operator User
Vim plugin: Define your own operator easily
Stars: ✭ 161 (+192.73%)
Mutual labels:  vim-plugins
Vim Racket
vim bundle for Racket
Stars: ✭ 207 (+276.36%)
Mutual labels:  vim-plugins
Vimux
easily interact with tmux from vim
Stars: ✭ 1,980 (+3500%)
Mutual labels:  vim-plugins
Vim Packager
Vim plugin manager that utilizes "jobs" and "pack" features.
Stars: ✭ 197 (+258.18%)
Mutual labels:  vim-plugins
Nerdtree
A tree explorer plugin for vim.
Stars: ✭ 16,380 (+29681.82%)
Mutual labels:  vim-plugins
Is.vim
incremental search improved - successor of incsearch.vim
Stars: ✭ 209 (+280%)
Mutual labels:  vim-plugins
Vim Go
Go development plugin for Vim
Stars: ✭ 14,085 (+25509.09%)
Mutual labels:  vim-plugins

SEARCHANT.VIM IS OBSOLETED BY VIM-SEARCHHI

You should use vim-searchhi instead of searchant.vim. It fixes a bunch of longstanding bugs of searchant.vim and is overall more polished.

searchant.vim

Vim plugin for improved search highlighting

Overview

When it comes to searching Vim is one of the editors which lacks the feature of highlighting the current search result. Searchant wraps the hacky way to achieve this in Vim into a plugin with a clean interface. Additionally it provides a key mapping to stop the search highlighting.

View the documentation in Vim with :help searchant or on the web.

vim-searchant demo

Requirements

  • Vim 7.0+

Installation

It is recommended to install this plugin using a plugin manager like pathogen.vim, Vundle.vim or vim-plug.

Alternatively you can just drop the plugin and doc folders into your ~/.vim directory. Don't forget to run :helptags ~/.vim/doc to generate the help tags after a manual installation.

If you are using incsearch.vim and you'd like vim-searchant to play-nicely, you can add the following snippet to hide the searchant highlight:

" Disable Searchant highlight when incsearch.vim highlights also disable
autocmd CursorMoved * call SearchantStop()
function SearchantStop()
  :execute "normal \<Plug>SearchantStop"
endfunction

This assumes that you have let g:incsearch#auto_nohlsearch = 1 in your config.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].