Skip to content

Commit ba2ce02

Browse files
authored
Correct language name to "Vim script" (#241)
1 parent 8b7da79 commit ba2ce02

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

autoload/editorconfig.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
" autoload/editorconfig.vim: EditorConfig native Vimscript plugin
1+
" autoload/editorconfig.vim: EditorConfig native Vim script plugin
22
" Copyright (c) 2011-2019 EditorConfig Team
33
" All rights reserved.
44
"

doc/editorconfig.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Specify the mode of EditorConfig core. Generally it is OK to leave this option
4747
empty. Currently, the supported modes are "vim_core" (default) and
4848
"external_command".
4949

50-
vim_core: Use the included VimScript EditorConfig Core.
50+
vim_core: Use the included Vim script EditorConfig Core.
5151
external_command: Run external EditorConfig Core.
5252

5353
If "g:EditorConfig_core_mode" is not specified, this plugin will automatically

plugin/editorconfig.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
" plugin/editorconfig.vim: EditorConfig native Vimscript plugin file
1+
" plugin/editorconfig.vim: EditorConfig native Vim script plugin file
22
" Copyright (c) 2011-2019 EditorConfig Team
33
" All rights reserved.
44
"

tests/core/ecvimlib.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ecvimlib.ps1: Editorconfig Vimscript core CLI, PowerShell version,
1+
# ecvimlib.ps1: Editorconfig Vim script core CLI, PowerShell version,
22
# library routines.
33
# Copyright (c) 2018--2019 Chris White. All rights reserved.
44
# Licensed CC-BY-SA, version 3.0 or any later version, at your option.

tests/core/editorconfig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/bin/bash
2-
# editorconfig: Editorconfig Vimscript core CLI
2+
# editorconfig: Editorconfig Vim script core CLI
33
# Copyright (c) 2018--2019 Chris White. All rights reserved.
44
# Licensed CC-BY-SA, version 3.0 or any later version, at your option.
55

66
# Documentation {{{1
77
helpstr=$(cat<<'EOF'
8-
editorconfig: command-line invoker for the Vimscript editorconfig core
8+
editorconfig: command-line invoker for the Vim script editorconfig core
99
1010
Normal usage:
1111
editorconfig [-f <config-file name>] [-b <version>]
@@ -117,7 +117,7 @@ done
117117
shift $(( $OPTIND - 1 ))
118118

119119
if [[ $print_ver ]]; then
120-
echo "EditorConfig VimScript Core Version 0.12.2"
120+
echo "EditorConfig Vim script Core Version 0.12.2"
121121
exit 0
122122
fi
123123

tests/core/editorconfig2.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# editorconfig2.ps1: Editorconfig Vimscript core CLI, PowerShell version
1+
# editorconfig2.ps1: Editorconfig Vim script core CLI, PowerShell version
22
# Copyright (c) 2018--2019 Chris White. All rights reserved.
33
# Licensed CC-BY-SA, version 3.0 or any later version, at your option.
44
# Thanks to https://cecs.wright.edu/~pmateti/Courses/233/Labs/Scripting/bashVsPowerShellTable.html
@@ -90,7 +90,7 @@ if($debug) {
9090
}
9191

9292
if($report_version) {
93-
echo "EditorConfig VimScript Core Version 0.12.2"
93+
echo "EditorConfig Vim script Core Version 0.12.2"
9494
exit
9595
}
9696

tests/travis-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ if [[ "$TEST_WHICH" = 'plugin' ]]; then # test plugin
3535
bundle install --jobs=3 --retry=3 --deployment
3636
fi
3737

38-
# Use the standalone Vimscript EditorConfig core to test the plugin's
38+
# Use the standalone Vim script EditorConfig core to test the plugin's
3939
# external_command mode
4040
export EDITORCONFIG_VIM_EXTERNAL_CORE=tests/core/editorconfig
4141

0 commit comments

Comments
 (0)