-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vim_notes
84 lines (84 loc) · 2.54 KB
/
.vim_notes
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
# ########################################################################################################################################################################### #
#
# Reload vim config while editing it.
#
# :so %
#
# ########################################################################################################################################################################### #
#
# Buffer sizing
#
# ctl+w...
#
# o only (close all other buffers)
# | max h
# _ max v
# = equal
#
# ########################################################################################################################################################################### #
#
# :ls list buffers
# :ba open all horizontally
#
# ########################################################################################################################################################################### #
#
# Create new tab from pane
#
# :tabe %
#
# ########################################################################################################################################################################### #
#
# Boxdraw - https://github.com/gyim/vim-boxdraw
#
# +...
#
# o empty box
# O box with label
#
# | end w/ v line, no arr
# - end w/ h line, no arr
# v end w/ v line, arr
# > end w/ h line, arr
#
# ++...double arrs
#
# ########################################################################################################################################################################### #
#
# Folding - http://vimdoc.sourceforge.net/htmldoc/fold.html
#
# z...
#
# # foldmethod=manual
#
# fG fold from cursor to bottom of file.
# f#j fold from cursor down # lines.
# f/string fold from the cursor to match.
#
# d deletes the fold at the cursor.
# E deletes all folds.
#
# Manual folding can be tedious.
#
# # foldmethod=indent (fold where indentations occur - real useful for configuration files)
#
# m increases the foldlevel by one.
# M closes all open folds.
#
# r decreases the foldlevel by one.
# R decreases the foldlevel to zero -- all folds will be open.
#
# o opens a fold at the cursor.
# O opens all folds at the cursor.
#
# c close a fold at cursor.
# C close all folds under cursor recursively.
#
# j moves the cursor to the next fold.
# k moves the cursor to the previous fold.
#
# These are not prepended by 'z'...
#
# [z move to start of open fold.
# ]z move to end of open fold.
#
# ########################################################################################################################################################################### #