An ack/ag powered code search and view tool, like ack.vim or :vimgrep
but together with more context, and let you edit in-place with powerful edit mode.
Edit Mode (with vim-multiple-cursors)
-
Search and display result in a user-friendly view with adjustable context.
-
Edit mode which is incredible useful when you are doing refactoring. (Inspired by vim-ags)
-
Preview mode for fast exploring.
-
Various options for customized search, view and edit.
-
An easy way to install CtrlSF is using a package manager, like pathogen, vundle or neobundle.
In vundle:
Bundle 'dyng/ctrlsf.vim'
-
Read Basic Usage for how to use.
-
Run
:CtrlSF [pattern]
, it will split a new window to show search result. -
Press
Enter
to open corresponding file, or pressq
to quit. -
Press
p
to explore file in a preview window if you only want a glance. -
You can edit search result as you like. Whenever you apply a change, you can save your change to actual file by
:w
. -
If you change your mind after saving, you can always undo it by pressing
u
and saving it again. -
:CtrlSFOpen
can reopen CtrlSF window when you have closed CtrlSF window. It is free because it won't invoke a same but new search. A handy command:CtrlSFToggle
is also available.
In CtrlSF window:
Enter
- Open corresponding file of current line in the window which CtrlSF is launched from.t
- LikeEnter
but open file in a new tab.p
- LikeEnter
but open file in a preview window.O
- LikeEnter
but always leave CtrlSF window opening.T
- Liket
but focus CtrlSF window instead of new opened tab.q
- Quit CtrlSF window.<C-J>
- Move cursor to next match.<C-K>
- Move cursor to previous match.
In preview window:
q
- Close preview window.
Some default defined keys may conflict with keys you have been used to when you are editing. But don't worry, you can customize your mapping by setting g:ctrlsf_mapping
. :h g:ctrlsf_mapping
for more information.
There are also some useful maps need to be mentioned.
-
<Plug>CtrlSFPrompt
Input
:CtrlSF
in command line for you, just a handy shortcut. -
<Plug>CtrlSFVwordPath
Input
:CtrlSF foo
in command line wherefoo
is the current visual selected word, waiting for further input. -
<Plug>CtrlSFVwordExec
Like
<Plug>CtrlSFVwordPath
, but execute it immediately. -
<Plug>CtrlSFCwordPath
Input
:CtrlSF foo
in command line wherefoo
is word under the cursor. -
<Plug>CtrlSFPwordPath
Input
:CtrlSF foo
in command line wherefoo
is the last search pattern of vim.
For a full list of maps, please refer to the document.
I strongly recommend you should do some maps for a nicer user experience, because typing 8 characters for every single search is really boring and painful experience. Another reason is that one of the most useful feature 'Search Visual Selected Word' can be accessed by map only.
Example:
nmap <C-F>f <Plug>CtrlSFPrompt
vmap <C-F>f <Plug>CtrlSFVwordPath
vmap <C-F>F <Plug>CtrlSFVwordExec
nmap <C-F>n <Plug>CtrlSFCwordPath
nmap <C-F>p <Plug>CtrlSFPwordPath
nnoremap <C-F>o :CtrlSFOpen<CR>
nnoremap <C-F>t :CtrlSFToggle<CR>
inoremap <C-F>t <Esc>:CtrlSFToggle<CR>
-
Edit mode is not really a 'mode'. You don't need to press any key to enter edit mode, just edit the result directly.
-
When your editing is done, save it and CtrlSF will ask you for confirmation, 'y' or just enter will make CtrlSF apply those changes to actual files. (You can turn off confirmation by setting
g:ctrlsf_confirm_save
to 0) -
Undo is the same as regular editing. You just need to press 'u' and save again.
-
Finally I recommend using vim-multiple-cursors together with edit mode.
-
You can modify or delete lines but you can't insert. (If it turns out that inserting is really needed, I'll implement it later.)
-
If a file's content varies from last search, CtrlSF will refuse to write your changes to that file (for safety concern). As a rule of thumb, invoke a new search before editing, or just run
:CtrlSFUpdate
.
CtrlSF has a lot of arguments you can use in search. Most arguments are similar to Ack/Ag's but not perfectly same. Here are some most frequently used arguments:
-R
- Use regular expression pattern.-I
,-S
- Search case-insensitively (-I
) or case-sensitively (-S
).-C
,-A
,-B
- Specify how many context lines to be printed, identical to their counterparts in Ag/Ack.
Read :h ctrlsf-arguments
for a full list of arguments.
-
Search a regular expression pattern case-insensitively:
:CtrlSF -R -I foo.*
-
Search a pattern that contains space:
:CtrlSF 'def foo():'
-
Search a pattern with characters requiring escaping:
:CtrlSF '"foobar"' " or :CtrlSF \"foobar\"
-
CtrlSF searches pattern literally by default, which is different from Ack/Ag. If you need to search a regular expression pattern, run
:CtrlSF -R regex
. If you dislike this default behavior, turn it off bylet g:ctrlsf_regex_pattern = 1
. -
By default, CtrlSF use working directory as search path when no path is specified. But CtrlSF can also use project root as its path if you set
g:ctrlsf_default_root
toproject
, CtrlSF does this by searching VCS directory (.git, .hg, etc.) upward from current file. It is useful when you are working with files across multiple projects. -
-filetype
is useful when you only want to search in files of specific type. Read option--type
inack
's manual for more information. -
Running
:CtrlSF
without any argument or pattern will use word under cursor.
-
g:ctrlsf_auto_close
defines if CtrlSF close itself when you are opening some file. By default CtrlSF window will close automatically but you can prevent it by settingg:ctrlsf_auto_close
to 0.let g:ctrlsf_auto_close = 0
-
g:ctrlsf_case_sensitive
defines default case-sensitivity in search. Possible values areyes
,no
andsmart
,smart
works the same as it is in vim. The default value issmart
.let g:ctrlsf_case_sensitive = 'no'
-
g:ctrlsf_context
defines how many context lines will be printed. Please readack
's manual for acceptable format. The default value is-C 3
, and you can set another value bylet g:ctrlsf_context = '-B 5 -A 3'
-
g:ctrlsf_default_root
defines how CtrlSF find search root when no explicit path is given. Two possible values arecwd
andproject
.cwd
means current working directory andproject
means project root. CtrlSF locates project root by searching VCS root (.git, .hg, .svn, etc.)let g:ctrlsf_default_root = 'project'
-
g:ctrlsf_indent
defines how many spaces are placed between line number and content. Default value is 4.let g:ctrlsf_indent = 2
-
g:ctrlsf_mapping
defines maps used in result window and preview window. Value of this option is a dictionary, where key is a method and value is a key for mapping. An empty value can disable that method. You can just define a subset of full dictionary, those not defined functionalities will use default key mapping.let g:ctrlsf_mapping = { \ "next": "n", \ "prev": "N", \ }
-
g:ctrlsf_regex_pattern
defines CtrlSF using literal pattern or regular expression pattern as default. Default value is 0, which means literal pattern.let g:ctrlsf_regex_pattern = 1
-
g:ctrlsf_position
defines where CtrlSf places its window. Possible values areleft
,right
,top
andbottom
. If nothing specified, the default value isleft
.let g:ctrlsf_position = 'bottom'
-
g:ctrlsf_winsize
defines the width (if CtrlSF opens vertically) or height (if CtrlSF opens horizontally) of CtrlSF main window. You can specify it with percent value or absolute value.let g:ctrlsf_winsize = '30%' " or let g:ctrlsf_winsize = '100'
A full list of options can be found in :help ctrlsf-options
.
There are many features and changes introduced in v1.0, but the most important difference is v1.0 breaks backward compatibility.
CtrlSF is at first designed as a wrapper of ag/ack within vim, and the principle of interface design is sticking to the interface of ag/ack running upon shell. This fact lets user get access to all features of ag/ack, and it's easier to implement too. However I found it is not as useful as I thought, what's worse, this principle limits features I could add to CtrlSF and makes CtrlSF counter-intuitive sometimes.
So I want to change it.
Example:
Case-insensitive searching in pre-v1.0 CtrlSF is like this
CtrlSF -i foo
In v1.0, that will be replaced by
CtrlSF -ignorecase foo
For those most frequently used arguments, an upper case short version is available
CtrlSF -I foo
- Brand new edit mode is added.
- Literal searching becomes default.
- Mapping becomes customizable.
- Smart case is added and turned on by default.
g:ctrlsf_leading_space
is replaced byg:ctrlsf_indent
.- etc...