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 237d551 commit 8054dedCopy full SHA for 8054ded
doc/vimlint.txt
@@ -101,15 +101,22 @@ EVL105: global variable `v` is defined without g:
101
EVL106: local variable `v` is used without l: *EVL106*
102
See |v:count|.
103
>
104
- function! g:incorrect()
+ function! Incorrect()
105
let count = 1
106
endif
107
- function! g:correct()
+ function! Correct()
108
let l:count = 1
109
110
<
111
EVL107: A function name does not allowd to contain a colon. *EVL107*
112
-
+>
113
+ function! g:incorrect()
114
+ return 0
115
+ endif
116
117
+ return 1
118
119
+<
120
code
121
EVL201: unreachable code `return/throw` *EVL201*
122
EVL201: unreachable code `continue/break`
0 commit comments