1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-15 08:09:11 +08:00

feat(mapping): add help guide for SPC s s

This commit is contained in:
wsdjeg 2022-01-16 22:01:24 +08:00
parent ef67c70f50
commit 0b50d07109

View File

@ -385,8 +385,21 @@ function! SpaceVim#mapping#space#init() abort
call extend(g:_spacevim_mappings_prefixs['[SPC]'], get(g:, '_spacevim_mappings_space', {}))
" Searching in current buffer
call SpaceVim#mapping#space#def('nnoremap', ['s', 's'], "call SpaceVim#plugins#flygrep#open({'input' : input(\"grep pattern:\"), 'files': bufname(\"%\")})",
\ 'grep-in-current-buffer', 1)
let s:lnum = expand('<slnum>') + s:funcbeginline
call SpaceVim#mapping#space#def('nnoremap', ['s', 's'],
\ 'call SpaceVim#plugins#flygrep#open('
\ . '{"input" : input("grep pattern:"), "files": bufname("%")}'
\ . ')',
\ ['grep-in-current-buffer',
\ [
\ 'SPC s s will search text in current buffer, an input promot will be opened.',
\ 'The default searching tool is based on search_tools option',
\ '',
\ 'Definition: ' . s:file . ':' . s:lnum,
\ ]
\ ]
\ , 1)
call SpaceVim#mapping#space#def('nnoremap', ['s', 'S'], "call SpaceVim#plugins#flygrep#open({'input' : expand(\"<cword>\"), 'files': bufname(\"%\")})",
\ 'grep-cword-in-current-buffer', 1)
" Searching in all loaded buffers