aboutsummaryrefslogtreecommitdiff
path: root/posts
diff options
context:
space:
mode:
Diffstat (limited to 'posts')
-rw-r--r--posts/another_post_to_test_date.md1
-rw-r--r--posts/get_better_at_yanking_and_putting_in_vim.md27
-rw-r--r--posts/z_is_the_latest_post.md2
3 files changed, 30 insertions, 0 deletions
diff --git a/posts/another_post_to_test_date.md b/posts/another_post_to_test_date.md
new file mode 100644
index 0000000..6349517
--- /dev/null
+++ b/posts/another_post_to_test_date.md
@@ -0,0 +1 @@
this posts tests chronological arrangement of items
diff --git a/posts/get_better_at_yanking_and_putting_in_vim.md b/posts/get_better_at_yanking_and_putting_in_vim.md
new file mode 100644
index 0000000..44f54f4
--- /dev/null
+++ b/posts/get_better_at_yanking_and_putting_in_vim.md
@@ -0,0 +1,27 @@
1a couple of nifty tricks to help you copy-paste better:
2
31. reselecting previously selected text (i use this to fix botched selections):
4
5 ```
6 gv " :h gv for more
7 " you can use `o` in visual mode to go to the `Other` end of the selection
8 " use a motion to fix the selection
9 ```
10
112. reselecting previously yanked text:
12
13 ```
14 `[v`]
15 `[ " marks the beginning of the previously yanked text :h `[
16 `] " marks the end :h `]
17 v " visual select everything in between
18
19 nnoremap gb `[v`] " "a quick map to perform the above
20 ```
21
223. pasting and indenting text (in one go):
23
24 ```
25 ]p " put (p) and adjust indent to current line
26 ]P " put the text before the cursor (P) and adjust indent to current line
27 ```
diff --git a/posts/z_is_the_latest_post.md b/posts/z_is_the_latest_post.md
new file mode 100644
index 0000000..5feb57e
--- /dev/null
+++ b/posts/z_is_the_latest_post.md
@@ -0,0 +1,2 @@
1this is the latest post,
2hope it shows up at the top