mirror of
https://github.com/neovim/neovim.git
synced 2025-12-15 19:05:40 +00:00
spelling fixes #827
This commit is contained in:
committed by
Justin M. Keyes
parent
168575f3f7
commit
5b3b3fd3ed
@@ -36,7 +36,7 @@ local tokens = P { "tokens";
|
||||
-- Single line comment
|
||||
line_comment = Ct(P"//" * C((1 - V"newline")^0) * Cc"comment_line"),
|
||||
|
||||
-- Single platform independant line break which increments line number
|
||||
-- Single platform independent line break which increments line number
|
||||
newline = (P"\r\n" + P"\n\r" + S"\r\n") * (Cp() * Carg(1)) / function(pos, state)
|
||||
state.line = state.line + 1
|
||||
state.line_start = pos
|
||||
|
||||
Reference in New Issue
Block a user