diff options
author | Max Christian Pohle | 2016-10-13 17:14:45 +0200 |
---|---|---|
committer | Max Christian Pohle | 2016-10-13 17:14:45 +0200 |
commit | 04194c29e8b9b887363e13bec2bdefc15fdbd37b (patch) | |
tree | cb3ba554208ce3a202616a493e16ac02689a2686 /doc/gitignore | |
parent | 52349625ead61bfba78a67c79ab8305710c926f4 (diff) | |
download | vim-karlmarks-04194c29e8b9b887363e13bec2bdefc15fdbd37b.tar.bz2 vim-karlmarks-04194c29e8b9b887363e13bec2bdefc15fdbd37b.zip |
make Ctrl-Backspace delete a word in insert mode
added most important of all command :viusage to the shortcuts.txt (which
is my custom and less comprehensive version of viusage)
added gitignore file from github as a reference.
Diffstat (limited to 'doc/gitignore')
-rw-r--r-- | doc/gitignore | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/doc/gitignore b/doc/gitignore new file mode 100644 index 0000000..1d8dd28 --- /dev/null +++ b/doc/gitignore | |||
@@ -0,0 +1,50 @@ | |||
1 | # Byte-compiled / optimized / DLL files | ||
2 | __pycache__/ | ||
3 | *.py[cod] | ||
4 | |||
5 | # C extensions | ||
6 | *.so | ||
7 | |||
8 | # Distribution / packaging | ||
9 | bin/ | ||
10 | build/ | ||
11 | develop-eggs/ | ||
12 | dist/ | ||
13 | eggs/ | ||
14 | lib/ | ||
15 | lib64/ | ||
16 | parts/ | ||
17 | sdist/ | ||
18 | var/ | ||
19 | *.egg-info/ | ||
20 | .installed.cfg | ||
21 | *.egg | ||
22 | |||
23 | # Installer logs | ||
24 | pip-log.txt | ||
25 | pip-delete-this-directory.txt | ||
26 | |||
27 | # Unit test / coverage reports | ||
28 | .tox/ | ||
29 | .coverage | ||
30 | .cache | ||
31 | nosetests.xml | ||
32 | coverage.xml | ||
33 | |||
34 | # Translations | ||
35 | *.mo | ||
36 | |||
37 | # Mr Developer | ||
38 | .mr.developer.cfg | ||
39 | .project | ||
40 | .pydevproject | ||
41 | |||
42 | # Rope | ||
43 | .ropeproject | ||
44 | |||
45 | # Django stuff: | ||
46 | *.log | ||
47 | *.pot | ||
48 | |||
49 | # Sphinx documentation | ||
50 | docs/_build/ | ||