All Projects → ripxorip → Aerojump.nvim

ripxorip / Aerojump.nvim

Licence: mit
Aerojump is a fuzzy-match searcher/jumper for Neovim with the goal of quick keyboard navigation

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Aerojump.nvim

Vim Crates
Handle Cargo dependencies like a Rustavimean.
Stars: ✭ 54 (-70.65%)
Mutual labels:  plugin, neovim
Close Buffers.vim
📖 Quickly close (bdelete) several buffers at once 📕
Stars: ✭ 99 (-46.2%)
Mutual labels:  plugin, neovim
Obs Streamfx
StreamFX is a plugin for OBS Studio which adds many new effects, filters, sources, transitions and encoders - all for free! Be it 3D Transform, Blur, complex Masking, or even custom shaders, you'll find it all here.
Stars: ✭ 1,128 (+513.04%)
Mutual labels:  plugin, filter
Markdown Preview.vim
⚠️ PLEASE USE https://github.com/iamcco/markdown-preview.nvim INSTEAD
Stars: ✭ 764 (+315.22%)
Mutual labels:  plugin, neovim
Iris.vim
📫 Simple mail client for Vim.
Stars: ✭ 148 (-19.57%)
Mutual labels:  plugin, neovim
Vim Dirvish
Directory viewer for Vim ⚡️
Stars: ✭ 929 (+404.89%)
Mutual labels:  plugin, neovim
Mongoose Fuzzy Searching
Mongoose Fuzzy Searching Plugin
Stars: ✭ 94 (-48.91%)
Mutual labels:  fuzzy, plugin
Gen tags.vim
Async plugin for vim and neovim to ease the use of ctags/gtags
Stars: ✭ 288 (+56.52%)
Mutual labels:  plugin, neovim
Vim Laravel
Vim support for Laravel/Lumen projects
Stars: ✭ 128 (-30.43%)
Mutual labels:  plugin, neovim
Nvim Lspconfig
Quickstart configurations for the Nvim LSP client
Stars: ✭ 3,410 (+1753.26%)
Mutual labels:  plugin, neovim
Gina.vim
👣 Asynchronously control git repositories in Neovim/Vim 8
Stars: ✭ 587 (+219.02%)
Mutual labels:  plugin, neovim
Z.lua
⚡ A new cd command that helps you navigate faster by learning your habits.
Stars: ✭ 2,164 (+1076.09%)
Mutual labels:  fuzzy, plugin
Comfortable Motion.vim
Brings physics-based smooth scrolling to the Vim world!
Stars: ✭ 543 (+195.11%)
Mutual labels:  plugin, neovim
Neoformat
✨ A (Neo)vim plugin for formatting code.
Stars: ✭ 977 (+430.98%)
Mutual labels:  plugin, neovim
Vimpyter
Edit your Jupyter notebooks in Vim/Neovim
Stars: ✭ 308 (+67.39%)
Mutual labels:  plugin, neovim
Sniprun
A neovim plugin to run lines/blocs of code (independently of the rest of the file), supporting multiples languages
Stars: ✭ 93 (-49.46%)
Mutual labels:  plugin, neovim
Fuzzysort
Fast SublimeText-like fuzzy search for JavaScript.
Stars: ✭ 2,569 (+1296.2%)
Mutual labels:  fuzzy, filter
svelte-typeahead
Accessible, fuzzy search typeahead component
Stars: ✭ 141 (-23.37%)
Mutual labels:  filter, fuzzy
Nvim Toggleterm.lua
A neovim lua plugin to help easily manage multiple terminal windows
Stars: ✭ 102 (-44.57%)
Mutual labels:  plugin, neovim
Vim Svelte
Vim syntax highlighting and indentation for Svelte 3 components.
Stars: ✭ 158 (-14.13%)
Mutual labels:  plugin, neovim

aerojump.nvim

Aerojump logo

Aerojump is a fuzzy-match searcher/jumper for Neovim. Its goal is to enable fast navigation through searching using the keyboard. It features several modes which can be used depending on your needs. By using an intelligent scoring system it will move the cursor to the best match based on your input.

Demo

Space mode

Example Highlight

Quickly move the cursor the line you want to go by typing some letters present in the line. All other lines are filtered away as you continue typing.

Bolt mode

Example Highlight

Perform a search using fuzzy-matching, results are graded through a scoring system presenting the most relevant hits first.

Boring mode

Example Highlight

Space mode but unmatched lines are left intact.

Installation

Note: aerojump.nvim requires Neovim(latest is recommended) with Python3 enabled. See requirements if you aren't sure whether you have this.

" Install plugin using (in this example using VimPlug)

call plug#begin()

Plug 'ripxorip/aerojump.nvim', { 'do': ':UpdateRemotePlugins' }

call plug#end()

" Create mappings (with leader)
nmap <Leader>as <Plug>(AerojumpSpace)
nmap <Leader>ab <Plug>(AerojumpBolt)
nmap <Leader>aa <Plug>(AerojumpFromCursorBolt)
nmap <Leader>ad <Plug>(AerojumpDefault) " Boring mode
....

" Or create mappings (without leader)
nmap <space> <Plug>(AerojumpSpace)

Usage

Invoke aerojump in the desired mode. Start typing some characters that matches where you will go and finish the query by pressing either enter (to go there) or escape to return to where you were in the buffer before.

Keybindings

You're able to modify those keybindings through g:aerojump_keymaps.

Command Action
enter Move cursor to the selected result
esc Move cursor to the selected result
aj Move cursor to the selected result
Space Move cursor to the selected result
C-q Exit aerojump (cursor moves back to original position)
Ctrl-n/p Navigate line wise (up/down)
Ctrl-g/l Navigate match wise (next/previous)
C-space Move cursor to the selected result

Self-Promotion

Like aerojump.nvim? Make sure to follow the repository and why not leave a star.

Contributors

License

MIT License

Copyright (c) 2019 Philip Karlsson Gisslow

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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].