All Projects → voldikss → Vim Codelf

voldikss / Vim Codelf

(Neo)Vim plugin for searching variable names

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Vim Codelf

Briofita vim
colorful Vim colorscheme for both GUI and 256-color terminals
Stars: ✭ 9 (-80.85%)
Mutual labels:  vim-plugin
Notational Fzf Vim
Notational velocity for vim.
Stars: ✭ 975 (+1974.47%)
Mutual labels:  vim-plugin
Vim Hexedit
Hexedit is a plug-in under VIM, which is used to strengthen the hex editing ability of VIM.
Stars: ✭ 42 (-10.64%)
Mutual labels:  vim-plugin
Vim Gofmt
Formats Go source code asynchronously with multiple Go formatters.
Stars: ✭ 11 (-76.6%)
Mutual labels:  vim-plugin
Vimrc
📝 Vim Configuration for nerds with vim-plug
Stars: ✭ 33 (-29.79%)
Mutual labels:  vim-plugin
Zepl.vim
Lightweight and easy REPL integration for Vim and Neovim.
Stars: ✭ 39 (-17.02%)
Mutual labels:  vim-plugin
Vim Healthcheck
Polyfill of Neovim's health-check for Vim
Stars: ✭ 26 (-44.68%)
Mutual labels:  vim-plugin
Vim Grepper
👾 Helps you win at grep.
Stars: ✭ 1,030 (+2091.49%)
Mutual labels:  vim-plugin
Tskeleton vim
File Templates and Code Skeletons/Snippets for VIM
Stars: ✭ 33 (-29.79%)
Mutual labels:  vim-plugin
Easytree.vim
easytree.vim - tree file manager
Stars: ✭ 41 (-12.77%)
Mutual labels:  vim-plugin
Quick Scope
Lightning fast left-right movement in Vim
Stars: ✭ 876 (+1763.83%)
Mutual labels:  vim-plugin
Hot Reload.vim
A (Neo)vim plugin for Flutter to automatically hot reload the project every time a file is saved
Stars: ✭ 33 (-29.79%)
Mutual labels:  vim-plugin
Plugpac.vim
Thin wrapper of minpac, provides vim-plug-like experience
Stars: ✭ 40 (-14.89%)
Mutual labels:  vim-plugin
Vim Bootstrap Updater
vim-bootstrap plugin to upgrade
Stars: ✭ 9 (-80.85%)
Mutual labels:  vim-plugin
Vim Outdated Plugins
🔄 Async Vim/Neovim plugin for showing the number of your outdated plugins
Stars: ✭ 44 (-6.38%)
Mutual labels:  vim-plugin
Vim Clang Format
Vim plugin for clang-format, a formatter for C, C++, Obj-C, Java, JavaScript, TypeScript and ProtoBuf.
Stars: ✭ 837 (+1680.85%)
Mutual labels:  vim-plugin
Vim Strand
A barebones Vim plugin manger written in Rust
Stars: ✭ 38 (-19.15%)
Mutual labels:  vim-plugin
Vim Scrollstatus
A Vim plugin to display a scrollbar in the statusline
Stars: ✭ 46 (-2.13%)
Mutual labels:  vim-plugin
Sad.vim
Quick search and replace for Vim
Stars: ✭ 44 (-6.38%)
Mutual labels:  vim-plugin
Incsearch.vim
🔦 Improved incremental searching for Vim
Stars: ✭ 1,009 (+2046.81%)
Mutual labels:  vim-plugin

vim-codelf

CI

(Neo)Vim plugin for searching useful variable names from CODELF

Install

Plug 'voldikss/vim-codelf'

Keymap

" Example key mappings configuration
inoremap <silent> <F9> <C-R>=codelf#start()<CR>
nnoremap <silent> <F9> :call codelf#start()<CR>

Configuration

g:codelf_enable_popup_menu

If set v:true, the available variable names will displayed in popup menu, which behaviors just like code completion. Otherwise, they will be displayed in cmdline, prompting the user to select one(like :z=) to replace the word under the cursor.

g:codelf_proxy_url

e.g. let g:codelf_proxy_url=http://127.0.0.1:1081

Commands

:Codelf [word]

Query the word from codelf, return the variable name.

:CodelfOpenBrowser [word]

Go to CODELF for the word. If no word, use the word under the cursor. vim-browser-search supplies the same function.

Statusline

  • g:codelf_status

Q&As

  • How to stop it from displaying after triggering a codelf query?

    If the cursor was moved to another place, the callback function will be disabled.

  • Will it frozen my Vim?

    If your (Neo)Vim has job feature, this plugin won't stop your behavior. Otherwise, yes(and this plugin is not recommended in that case).

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