We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1e668a commit 960f176Copy full SHA for 960f176
README.md
@@ -1,4 +1,11 @@
1
vim-files
2
=========
3
4
-My vim files
+My vim files
5
+
6
+`~/.vim/`
7
+--------
8
9
+- `ftdetect/`: See `:help` [ftdetect][]
10
+- `filetype.vim`: See `:help` [new-filetype][] §C
11
+- `scripts.vim`: See `:help` [new-filetype-scripts][]
filetype.vim
@@ -1,5 +1,6 @@
-if exists("did\_load\_filetypes")
- finish
+"See :help new-filetype §C
+if exists("did_load_filetypes")
+ finish
endif
augroup filetypedetect
ftdetect/README.md
@@ -0,0 +1,4 @@
+`~/.vim/ftdetect/`
+=================
+See `:help` [ftdetect][]
scripts.vim
+"See :help new-filetype-scripts
+if did_filetype()
+endif
0 commit comments