Files
neovim/runtime/ftplugin
Felipe Morales 8e48d7c19e tutor: disable old method for setting "expect" regions
tutor: remove movement mappings
2017-07-15 11:01:45 -04:00
..
2014-07-29 02:12:31 +00:00
2014-12-19 15:28:49 -05:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2017-05-01 13:32:51 +02:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2016-04-18 21:50:37 -07:00
2017-01-09 20:24:08 -05:00
2014-07-29 02:12:31 +00:00
2016-05-03 21:13:41 +02:00
2017-01-02 10:45:10 +09:00
2017-04-29 01:51:56 +02:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:13:55 +02:00
2015-01-04 19:42:30 +01:00
2014-07-29 02:12:31 +00:00
2016-07-08 01:38:21 -04:00
2017-04-28 21:13:55 +02:00
2016-05-03 21:22:45 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:13:55 +02:00
2014-12-30 13:51:39 +01:00
2014-07-29 02:12:31 +00:00
2016-10-15 12:15:36 +09:00
2017-04-28 21:13:55 +02:00
2016-05-25 21:05:01 -04:00
2016-05-03 20:59:26 +02:00
2016-04-18 21:50:37 -07:00
2014-07-29 02:12:31 +00:00
2015-11-08 03:39:07 +01:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2015-10-11 18:07:58 -04:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:13:55 +02:00
2015-10-11 18:07:58 -04:00
2017-04-29 01:01:51 +02:00
2017-04-29 01:01:51 +02:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:38:07 +02:00
2016-07-08 01:43:36 -04:00
2016-07-08 01:43:36 -04:00
2017-04-19 21:26:17 +02:00
2014-07-29 02:12:31 +00:00
2016-07-08 01:43:36 -04:00
2014-07-29 02:12:31 +00:00
2016-07-08 01:43:36 -04:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 23:14:36 +02:00
2017-04-28 21:13:55 +02:00
2014-07-29 02:12:31 +00:00
2017-01-09 20:23:41 -05:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2016-04-18 21:50:37 -07:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2014-12-30 13:51:39 +01:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2014-12-19 15:28:49 -05:00
2015-11-08 03:39:07 +01:00

The ftplugin directory is for Vim plugin scripts that are only used for a
specific filetype.

All files ending in .vim in this directory and subdirectories will be sourced
by Vim when it detects the filetype that matches the name of the file or
subdirectory.
For example, these are all loaded for the "c" filetype:

	c.vim
	c_extra.vim
	c/settings.vim

Note that the "_" in "c_extra.vim" is required to separate the filetype name
from the following arbitrary name.

The filetype plugins are only loaded when the ":filetype plugin" command has
been used.

The default filetype plugin files contain settings that 95% of the users will
want to use.  They do not contain personal preferences, like the value of
'shiftwidth'.

If you want to do additional settings, or overrule the default filetype
plugin, you can create your own plugin file.  See ":help ftplugin" in Vim.