blob: 70fd4c8195cd49bd1105fdd7d054110d463d17c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./style.css">
<meta charset="UTF-8">
<title>n</title>
<script>
function showPost(id) {
let post = document.getElementById(id);
if (post.style.display == "none") {
post.style.display = "block";
} else {
post.style.display = "none";
}
}
</script> </head>
<body>
<h1 class="heading">n</h1>
<div class="posts">
<div class="post">
<div class="date">30/07 2019</div>
<a href="#hold_position!.md" class="post-link" onClick="showPost('hold_position!.md')">Hold Position!</a>
<div id="hold_position!.md" class="post-text" style="display: block">
<p>Often times, when I run a vim command that makes “big” changes to a file (a
macro or a <code>:vimgrep</code> command) I lose my original position and feel disoriented.</p>
<p><em>Save position with <code>winsaveview()</code>!</em></p>
<p>The <code>winsaveview()</code> command returns a <code>Dictionary</code> that contains information
about the view of the current window. This includes the cursor line number,
cursor coloumn, the top most line in the window and a couple of other values,
none of which concern us.</p>
<p>Before running our command (one that jumps around the buffer, a lot), we save
our view, and restore it once its done, with <code>winrestview</code>.</p>
<pre><code>let view = winsaveview()
s/\s\+$//gc " find and (confirm) replace trailing blanks
winrestview(view) " restore our original view!
</code></pre>
<p>It might seem a little overkill in the above example, just use “ (double
backticks) instead, but it comes in handy when you run your file through
heavier filtering.</p>
<a href="#hold_position!.md" class="post-end-link" onClick="showPost('hold_position!.md')">↑ Collapse</a>
<div class=separator></div>
</div>
</div>
<div class="post">
<div class="date">30/07 2019</div>
<a href="#get_better_at_yanking_and_putting_in_vim.md" class="post-link" onClick="showPost('get_better_at_yanking_and_putting_in_vim.md')">Get Better At Yanking And Putting In Vim</a>
<div id="get_better_at_yanking_and_putting_in_vim.md" class="post-text" style="display: none">
<ol>
<li><p>reselecting previously selected text (i use this to fix botched selections):</p>
<pre><code>gv " :h gv for more
" you can use `o` in visual mode to go to the `Other` end of the selection
" use a motion to fix the selection
</code></pre></li>
<li><p>reselecting previously yanked text:</p>
<pre><code>`[v`]
`[ " marks the beginning of the previously yanked text :h `[
`] " marks the end :h `]
v " visual select everything in between
nnoremap gb `[v`] " "a quick map to perform the above
</code></pre></li>
<li><p>pasting and indenting text (in one go):</p>
<pre><code>]p " put (p) and adjust indent to current line
]P " put the text before the cursor (P) and adjust indent to current line
</code></pre></li>
</ol>
<a href="#get_better_at_yanking_and_putting_in_vim.md" class="post-end-link" onClick="showPost('get_better_at_yanking_and_putting_in_vim.md')">↑ Collapse</a>
<div class=separator></div>
</div>
</div>
</div>
</body>
</html>
|