mirror of
https://github.com/iggredible/Learn-Vim
synced 2024-11-10 05:04:13 +00:00
Leader key is backslash
This commit is contained in:
parent
f35e3b5b7a
commit
f2c76987a0
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ nnoremap <silent> <C-f> :Files<CR>
|
|||
|
||||
To search inside files, you can use the `:Rg` command.
|
||||
|
||||
Again, since you will probably use this frequently, let's map it to a keyboard shortcut. I map mine to `<Leader>f`.
|
||||
Again, since you will probably use this frequently, let's map it to a keyboard shortcut. I map mine to `<Leader>f`. The `<Leader>` key is mapped to `\` by default.
|
||||
|
||||
```
|
||||
nnoremap <silent> <Leader>f :Rg<CR>
|
||||
|
|
Loading…
Reference in a new issue