1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 23:00:04 +08:00

Fix a typo (#4214)

This commit is contained in:
casswedson 2021-04-17 18:13:36 -05:00 committed by GitHub
parent 1796a22812
commit 669a164d44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -476,7 +476,7 @@ function! SpaceVim#mapping#space#init() abort
call SpaceVim#mapping#space#def('nnoremap', ['s', 'G', 'P'], 'call SpaceVim#mapping#search#grep("G", "P")',
\ 'search cursor word in project with git-grep', 1)
call SpaceVim#mapping#space#def('nnoremap', ['s', 'G', 'f'], 'call SpaceVim#mapping#search#grep("G", "f")',
\ 'search in arbitrary directory with git-grep', 1)
\ 'search in arbitrary directory with git-grep', 1)
call SpaceVim#mapping#space#def('nnoremap', ['s', 'G', 'F'], 'call SpaceVim#mapping#search#grep("G", "F")',
\ 'search cursor word in arbitrary directory with git-grep', 1)