results buscar and search vim

search - buscar - vim parada de búsqueda incremental al final del archivo



vim search and replace (1)

En Vim, cuando estoy haciendo una búsqueda incremental de "x" ingresando /x I, luego presiono n para pasar a la siguiente ocurrencia. Si acabo de coincidir con la última ocurrencia en el archivo, cuando presiono n el cursor comenzará a buscar una coincidencia al principio del archivo; volverá al principio. No quiero que vuelva al principio. Quiero n simplemente no encontrar más coincidencias después de que llegue a la ocurrencia final. La razón por la que deseo este comportamiento es para que pueda ver fácilmente cuando busqué en todo el archivo.

¿Alguien sabe cómo llevar a cabo este comportamiento?

FYI: estoy usando las siguientes opciones de .vimrc:

colorscheme zenburn " zenburn colorscheme set nocompatible " prevent Vim from emulating Vi''s bugs set scrolloff=5 " keeps cursor away from top/bottom of screen set nobackup " don''t make automatic backups set incsearch " incremental searching set ignorecase " case insensitive matching set smartcase " smart case matching set showmatch " show matching bracket set autoindent " indentation set smartindent " indentation set cindent " indenting for C code set tabstop=4 " 4-space tabs set shiftwidth=4 " 4-space tabs syntax on " syntax highlighting filetype on " behavior based on file type filetype plugin on " behavior based on file type filetype indent on " behavior based on file type set visualbell " replace beeping with flashing screen set gfn=Lucida_Sans_Typewriter:h10:cANSI


Desactiva la opción ''wrapscan'' .

set nowrapscan