Merge pull request #93 from victorhck/master

fix really small typo ch27
pull/99/head
Igor Irianto 3 years ago committed by GitHub
commit 456e598ab6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -48,7 +48,7 @@ To see all the built-in and custom functions in Vim, you can run `:function` com
You can also search for functions with pattern with `:function /pattern`, similar to Vim's search navigation (`/pattern`). To search for all function containing the phrase "map", run `:function /map`. If you use external plugins, Vim will display the functions defined in those plugins.
If you want to look at where a function originates, you can use the `:verbose` command with the `:function` command. To look at where all the functions containing teh word "map" are originated, run:
If you want to look at where a function originates, you can use the `:verbose` command with the `:function` command. To look at where all the functions containing the word "map" are originated, run:
```
:verbose function /map
@ -63,7 +63,7 @@ function fzf#vim#maps(mode, ...)
## Removing A Function
To remove an existing function, use `:delfunction {function-name}`. To delete `Tasty`, run `:delfunction Tasty`.
To remove an existing function, use `:delfunction {Function_name}`. To delete `Tasty`, run `:delfunction Tasty`.
## Function Return Value

Loading…
Cancel
Save