aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2023-08-09 19:20:18 +0200
committerChristian Clason <c.clason@uni-graz.at>2023-08-09 20:44:12 +0200
commitf81645abd2e54b3b70ac5d420594430f27639510 (patch)
tree015e797cfeb452937e88903bbceb97db5798b36c
parent164370a4cb92f5063280d4748e1e67fafc79df34 (diff)
downloadrneovim-f81645abd2e54b3b70ac5d420594430f27639510.tar.gz
rneovim-f81645abd2e54b3b70ac5d420594430f27639510.tar.bz2
rneovim-f81645abd2e54b3b70ac5d420594430f27639510.zip
vim-patch:0401933a5be3
Fix alignment in filetype.txt (vim/vim#12618) There are three spaces because the "<" is concealed. https://github.com/vim/vim/commit/0401933a5be3b72e12427cdaf8b7ff2694690d02 Co-authored-by: zeertzjq <zeertzjq@outlook.com>
-rw-r--r--runtime/doc/filetype.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/filetype.txt b/runtime/doc/filetype.txt
index 1dad3cd433..9ebdc71eb2 100644
--- a/runtime/doc/filetype.txt
+++ b/runtime/doc/filetype.txt
@@ -357,7 +357,7 @@ ways to change this:
You must create a new filetype plugin in a directory early in
'runtimepath'. For Unix, for example you could use this file: >
vim ~/.config/nvim/ftplugin/fortran.vim
-< You can set those settings and mappings that you would like to add. Note
+< You can set those settings and mappings that you would like to add. Note
that the global plugin will be loaded after this, it may overrule the
settings that you do here. If this is the case, you need to use one of the
following two methods.
@@ -366,7 +366,7 @@ ways to change this:
You must put the copy in a directory early in 'runtimepath'. For Unix, for
example, you could do this: >
cp $VIMRUNTIME/ftplugin/fortran.vim ~/.config/nvim/ftplugin/fortran.vim
-< Then you can edit the copied file to your liking. Since the b:did_ftplugin
+< Then you can edit the copied file to your liking. Since the b:did_ftplugin
variable will be set, the global plugin will not be loaded.
A disadvantage of this method is that when the distributed plugin gets
improved, you will have to copy and modify it again.
@@ -375,7 +375,7 @@ ways to change this:
You must create a new filetype plugin in a directory from the end of
'runtimepath'. For Unix, for example, you could use this file: >
vim ~/.config/nvim/after/ftplugin/fortran.vim
-< In this file you can change just those settings that you want to change.
+< In this file you can change just those settings that you want to change.
==============================================================================
3. Docs for the default filetype plugins. *ftplugin-docs*