All Projects → tacahiroy → Ctrlp Funky

tacahiroy / Ctrlp Funky

Licence: mit
A super simple function navigator for ctrlp.vim

Projects that are alternatives of or similar to Ctrlp Funky

Unsplash Php
👻 Official PHP wrapper for the Unsplash API
Stars: ✭ 332 (-10.99%)
Mutual labels:  search
Algoliasearch Rails
AlgoliaSearch integration to your favorite ORM
Stars: ✭ 352 (-5.63%)
Mutual labels:  search
Jivesearch
A search engine that doesn't track you.
Stars: ✭ 364 (-2.41%)
Mutual labels:  search
Docsearch Configs
DocSearch - Configurations
Stars: ✭ 339 (-9.12%)
Mutual labels:  search
Xapiand
Xapiand: A RESTful Search Engine
Stars: ✭ 347 (-6.97%)
Mutual labels:  search
Searchdialog
仿bilibili搜索框效果(三句代码实现)
Stars: ✭ 361 (-3.22%)
Mutual labels:  search
Fd
A simple, fast and user-friendly alternative to 'find'
Stars: ✭ 19,851 (+5221.98%)
Mutual labels:  search
Undetected Chromedriver
Custom Selenium Chromedriver | Zero-Config | Passes ALL bot mitigation systems (like Distil / Imperva/ Datadadome / CloudFlare IUAM)
Stars: ✭ 365 (-2.14%)
Mutual labels:  navigator
Jetpack Wanandroid
Kotlin+Jetpack+Coroutines+Retrofit+koin 完成的MVVM 组件化客户端 🔥🔥
Stars: ✭ 353 (-5.36%)
Mutual labels:  navigator
Tribler
Privacy enhanced BitTorrent client with P2P content discovery
Stars: ✭ 3,915 (+949.6%)
Mutual labels:  search
Js Worker Search
JavaScript client-side search API with web-worker support
Stars: ✭ 345 (-7.51%)
Mutual labels:  search
Fmap
宇行地图:高仿高德地图Android客户端(持续更新中...)
Stars: ✭ 347 (-6.97%)
Mutual labels:  search
Sparkler
Spark-Crawler: Apache Nutch-like crawler that runs on Apache Spark.
Stars: ✭ 362 (-2.95%)
Mutual labels:  search
Persei
Animated top menu for UITableView / UICollectionView / UIScrollView written in Swift
Stars: ✭ 3,395 (+810.19%)
Mutual labels:  navigator
Highlighter.js
Easily navigate the DOM and highlight the elements - http://720kb.github.io/highlighter.js/
Stars: ✭ 370 (-0.8%)
Mutual labels:  navigator
Scout Extended
Scout Extended: The Full Power of Algolia in Laravel
Stars: ✭ 330 (-11.53%)
Mutual labels:  search
Minsql
High-performance log search engine.
Stars: ✭ 356 (-4.56%)
Mutual labels:  search
Serving
Kubernetes-based, scale-to-zero, request-driven compute
Stars: ✭ 4,238 (+1036.19%)
Mutual labels:  function
Maryam
Maryam: Open-source Intelligence(OSINT) Framework
Stars: ✭ 371 (-0.54%)
Mutual labels:  search
Awesome Search
Awesome Search - this is all about the (e-commerce) search and its awesomeness
Stars: ✭ 361 (-3.22%)
Mutual labels:  search

ctrlp-funky

A super simple function navigator for ctrlp.vim.

SYNOPSIS

This is a ctrlp.vim extension. It simply navigates and jumps to function definitions from the current file without ctags. It just searches for function definitions or equivalent lines using regular expressions, therefore some languages' abstractions aren't accurate because of them being hard to parse.

One of advantages of this plugin is that no configuration is required in most cases, so it starts working right after installation with no ctags required. If you want to have a more accurate list of function defs, you should use other ctags-based tools, etc.

ctrlp-funky

Supported filetypes:

See ctrlp-funky.txt

PREMISE

First of all, I believe you have already installed a great Vim plugin, ctrlp.vim. Otherwise, you need to install ctrlp.vim before you start using this plugin.

INSTALLATION

Plugin managers

It is recommended to install the plugin using your favourite plugin manager or use Vim's built-in package manager if you use Vim 8+.

Manual installation

If you do not use any plugin management system, simply copy autoload and plugin directories to the .vim directory. On Windows, basically, vimfiles directory is used instead of the .vim directory.

CONFIGURATION

It should be useful to define key mappings like this:

nnoremap <Leader>fu :CtrlPFunky<Cr>
" narrow the list down with a word under cursor
nnoremap <Leader>uu :execute 'CtrlPFunky ' . expand('<cword>')<Cr>

EXPERIMENTAL

MATCHED CHARS HIGHLIGHTING

If you want to have this highlight feature, you may configure like this:

let g:ctrlp_funky_matchtype = 'path'

See :h g:ctrlp_funky_matchtype for more details and notes.

funky-matched-chars-highlighting

SYNTAX HIGHLIGHTING

Do you want to make ctrlp-funky funkier? Okay - you can do it with just a single line of config:

let g:ctrlp_funky_syntax_highlight = 1

funky-syntax

Note that this feature doesn't work perfectly, because ctrlp-funky just sets the filetype to the funky buffer. CtrlP's indicator > which appears at the begining of each line in the funky buffer has special meaning for some filetypes such as HTML, XML, etc., so it breaks syntax highlighting.

LINK

LICENSE

Copyright (C) 2012-2020 Takahiro Yoshihara. Distributed under the MIT License.

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