From c039afa7802c36b6a402b025bc7e74342f8c9bdf Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 29 Mar 2021 21:34:48 -0700 Subject: [PATCH] vim notes --- 349ceffd.md | 15 +++++++++++++++ 38003bd5.md | 10 ++++++++++ 6d0a076e.md | 10 ++++++++++ f0b50398.md | 9 +++++++++ f0e5cfc1.md | 10 ++++++++++ 5 files changed, 54 insertions(+) create mode 100644 349ceffd.md create mode 100644 38003bd5.md create mode 100644 6d0a076e.md create mode 100644 f0b50398.md create mode 100644 f0e5cfc1.md diff --git a/349ceffd.md b/349ceffd.md new file mode 100644 index 0000000..2bd0c11 --- /dev/null +++ b/349ceffd.md @@ -0,0 +1,15 @@ +--- +date: 2021-03-29T21:24 +tags: + - vim +--- + +# mark basics + +`m{a-zA-Z}`: set a "bookmark" at a cursor position. + +`'{mark}`: jumps the cursor to first non-whitespace character on the line with. + +`` `{mark}``: jump the cursor to the exact mark position. + +Uppercase marks are global, and by default are persisted across sessions. diff --git a/38003bd5.md b/38003bd5.md new file mode 100644 index 0000000..8e23a3d --- /dev/null +++ b/38003bd5.md @@ -0,0 +1,10 @@ +--- +date: 2021-03-29T21:21 +tags: + - vim +--- + +# search is a motion + +Don't forget, search is a motion, and can be combined with other actions, +like `d` (delete): `d/foo`. diff --git a/6d0a076e.md b/6d0a076e.md new file mode 100644 index 0000000..a9130c4 --- /dev/null +++ b/6d0a076e.md @@ -0,0 +1,10 @@ +--- +date: 2021-03-29T21:14 +tags: + - vim +--- + +# display lines + +Interacting with display lines (vs real lines) is easier when you prefix +motion commands with a `g`. diff --git a/f0b50398.md b/f0b50398.md new file mode 100644 index 0000000..5b265a7 --- /dev/null +++ b/f0b50398.md @@ -0,0 +1,9 @@ +--- +date: 2021-03-29T21:30 +tags: + - vim +--- + +# the jump list is primarily for between-file motions + +`` & `` & `:jumps` diff --git a/f0e5cfc1.md b/f0e5cfc1.md new file mode 100644 index 0000000..d51ecff --- /dev/null +++ b/f0e5cfc1.md @@ -0,0 +1,10 @@ +--- +date: 2021-03-29T21:32 +tags: + - vim +--- + +# the `gf` motion will jump to the filename under the cursor + +The `suffixadd` option needs to be set, although most common filetype plugins +should handle this automatically.