Home

Awesome

<img src="https://devjoe.github.io/public/menu_only.png" align="center" width="500"> > Choose what you want to know! 😼
" Open menu
:CodeQueryMenu Unite Full

" Or query directly
:CodeQuery Definition get_user_id
<br> <br>

vim-codequery

This Vim plugin is built on top of the great tool CodeQuery created by ruben2020, and aims at providing three primary functions to help you to:

  1. Search source code gracefully within Vim.
    • You can find: definition, call, caller, callee, symbol, class, parent, child and more for a string.
    • Convenient menus are created for you.
    • Well-formated results are shown in a custom Quickfix window with usable key bindings.
    • Support asynchronous search (Vim version >= 8.0)
  2. Manage your database easily.
    • Load, make and move your database file by custom Vim commands.
    • Support asynchronous build (Vim version >= 8.0 or NeoVim or by Dispatch plugin)
    • Note: CodeQuery's SQLite database is built on top of ctags and cscope.
  3. Know your code more instantly.
    • (TBD)
<br>

Supported languages

<br>

Demo

Choose a query from menu ➙ Get results

... ➙ Switch to different query ➙ Get results ... ➙ Filter them ➙ Get Results ➙ Undo ➙ Redo

more demo and screenshots

These videos are quite old.   
Now vim-codequery works better than what you see by using Vim8's async feature.
<br>

Schedule

This project is released.

Main TODO:

Current Version: v0.9.2

Welcome to try it! 👌

<br>

Installation

1. Make sure these commands are in your system

<pre> /bin/sh echo mkdir mv cut find awk stat git(optional) </pre>

2. Install CodeQuery

3. Install additional ctags/cscope tools for your languages

LanguageToolsHow to install
PythonPyCscopesudo pip install pycscope
JavascriptStarscopesudo gem install starscope
RubyStarscopesudo gem install starscope
GoStarscopesudo gem install starscope

Java, C and C++ users do not need to install additional ctags/cscope tools.
Starscope has been packaged for Arch Linux

4. Install Vim plugins

" Required
Plug 'Shougo/unite.vim'
Plug 'devjoe/vim-codequery'
  
" Optional
" if your vim version < 8.0
Plug 'tpope/vim-dispatch'
" if you don't have an :Ack (or :Ag) liked command
Plug 'mileszs/ack.vim'

Usage

1. Setup

" Index Python files
:CodeQueryMakeDB python
  
" Or index Python + Javascript files
:CodeQueryMakeDB python javascript 

2. Search

:CodeQuery
:CodeQuery [SubCommand]  
  
" Supported SubCommands are: `Symbol, Text, Call, Caller, Callee, Class, Parent, Child, Member, FunctionList, FileImporter`.  
:CodeQuery [SubCommand] [word]  
:CodeQueryAgain [SubCommand]  
:CodeQuery [SubCommand] [word] -f  
  
" [word] can be: get_* or *user_info or find_*_by_id
:CodeQuery [SubCommand] [word] -a  
:CodeQueryFilter [string]  
  
" [string] can be a regex

3. Use Quickfix

KeyActionNote
s:CodeQueryAgain Symbol
x:CodeQueryAgain Textuse :Ack! by default. #1
c:CodeQueryAgain Call
r:CodeQueryAgain Caller
e:CodeQueryAgain Callee
d:CodeQueryAgain Definition
C:CodeQueryAgain Class
M:CodeQueryAgain Member
P:CodeQueryAgain Parent
D:CodeQueryAgain Child
m:CodeQueryMenu Unite Magic
q:cclose
\:CodeQueryFilter
p<CR><C-W>pPreview
u:colder | CodeQueryShowQFOlder Quickfix Result
<C-R>:cnewer | CodeQueryShowQFNewer Quickfix Result

#1 You can override g:codequery_find_text_cmd to change it.

:CodeQueryShowQF  
  
" This command can also be used to **patch** standard Quickfix.

4. Open Menu

Currently, vim-codequery only provides Unite menu because I love it ⭐. There are two types of menu:

:CodeQueryMenu Unite Full  
  
" The string between :: and :: is the word under cursor
" [F] means this action is for 'function variable only'
" [C] is for 'class variable only'  
<img src="https://devjoe.github.io/public/fullmenu.png" align="center" width="400">
:CodeQueryMenu Unite Magic  
  
" This menu changes dynamically:
" 1. If the word under your cursor begins with a capital letter (possible be class): show [C] actions
" 2. Vice versa (possible be function): show [F] actions
" 3. Show reasonable actions within Quickfix
<img src="https://devjoe.github.io/public/magicmenu.png" align="center" width="300"> <br>

Tips

Open Menu

nnoremap <space>c :CodeQueryMenu Unite Full<CR>
nnoremap <space>; :CodeQueryMenu Unite Magic<CR>
  
" Or enable typing (to search menu items) by default
nnoremap <space>\ :CodeQueryMenu Unite Magic<CR>A

Query

nnoremap <space><CR> :CodeQuery Symbol<CR>
  
" Chain commands to find possible tests (for python)
nnoremap <space>t :CodeQuery Caller<CR>:CodeQueryFilter test_<CR>

Filter

" Filter reversely by adding '!'
:CodeQueryFilter ! [word]

Build

" Trigger db building (in current filetype) when your query fails
let g:codequery_trigger_build_db_when_db_not_found = 1

Find Text

" Custom your `CodeQuery Text` commands
let g:codequery_find_text_cmd = 'Ack!'
  
let g:codequery_find_text_from_current_file_dir = 0
" 0 => search from project dir (git root directory -> then the directory containing xxx.db file)
" 1 => search from the directory containing current file
  
" If you use ':CodeQuery Symbol' in a txt file, of course, it will fail due to wrong filetype.
" With the following option set to 1, ':CodeQuery Text' will be automatically sent when your query fails.
let g:codequery_auto_switch_to_find_text_for_wrong_filetype = 0

Load Ctags File

" Set tags option
set tags=./javascript_tags;/
set tags+=./python_tags;/
set tags+=./ruby_tags;/
set tags+=./go_tags;/
set tags+=./java_tags;/
set tags+=./c_tags;/

Clean Ctags, Cscope ... Files by Languages

let g:codequery_enable_auto_clean_languages = ['python']
  
" It accpepts a list of your languages written in lowercase

Custom Database Building

" Make sure to generate a python.db or xxxx.db file as a result
let g:codequery_build_python_db_cmd = '...'
let g:codequery_build_javascript_db_cmd = '...'
let g:codequery_build_ruby_db_cmd = '...'
let g:codequery_build_go_db_cmd = '...'  
let g:codequery_build_java_db_cmd = '...'  
let g:codequery_build_c_db_cmd = '...'  

Others

" You can disable key binding within quickfix
let g:codequery_disable_qf_key_bindings = 1
  
" if your function usually begins with a capital letter ..., you can change your magic menu to a not-so-magic one
let g:codequery_enable_not_so_magic_menu = 1
<br>

FAQ

Why writing this plugin?

Because I need it.

I already shared the story of making this plugin in local Python user groups Taipei.py and Tainan.py.
Slides are available here: Taipei.py / Tainan.py (Language: Traditional Chinese)

Why not using Ctags or Cscope directly?

Read what @ruben2020 the author of CodeQuery said: Link

In addittion, vim-codequery provides:

  1. Good interface.
  2. Separated Database Management Mechanism.
    (You can open as many projects as you wish in a single Vim session without worrying about messing up Ctags or Cscope files or getting wrong result!)

for Vim users.

More Questions

Ask here or create an issue.

<br>

How to Contribute

Use It

Fork It

And give me PR. It would be better if you open an issue and discuss with me before sending PR.

Star It

If you like it. 👍

<br>

Contributors

<br>

Credits

Thank all for working on these great projects!