mirror of
https://github.com/iggredible/Learn-Vim
synced 2024-11-13 22:47:07 +00:00
Remove redundant texts
This commit is contained in:
parent
097bf5df19
commit
51202c3e69
1 changed files with 0 additions and 8 deletions
|
@ -274,14 +274,6 @@ g* Search for word under cursor forward
|
|||
g# Search for word under cursor backward
|
||||
|
||||
```
|
||||
When searching, I personally like to have these three options:
|
||||
|
||||
```
|
||||
set hlsearch to highlight matches
|
||||
set incsearch pattern-match while typing
|
||||
set wrapscan go to top after end of file
|
||||
```
|
||||
|
||||
## Marking Position
|
||||
|
||||
You can use marks to save your current position and return to this position later. It's like a bookmark for text editing. You can set a mark with `mx`, where `x` can be any alphabetical letter `a-zA-Z`. There are two ways to return to mark: exact (line and column) with `` `x`` and linewise (`'x`).
|
||||
|
|
Loading…
Reference in a new issue