-
Notifications
You must be signed in to change notification settings - Fork 48
Description
Anything between should be ignored when determining indentation.
/* */ blocks should also be ignored in JavaScript files.
For example, a file starting with the following contents
<!doctype html>
<!--
* line starts with a space, several lines like it might follow
-->
<html>
<head>
<script type="text/javascript">
function func() {
if (true) { // line starts with a tab, and all lines following start with tabs
is incorrectly parsed by Detect Indent:
Detected spaces and tabs; has_leading_tabs: 1, has_leading_spaces: 1, shortest_leading_spaces_run: 1, shortest_leading_spaces_idx: 3, longest_leading_spaces_run: 1
Initial buffer settings changed: tabstop changed from 4 to 2, shiftwidth changed from 4 to 1
I expect tabs since the entire file past the comment block on top uses tabs.
Also, is it necessary to check for filetype (HasCStyleComments) when checking for comment lines? Perhaps filetype checks should be removed. I could have a long multiline JavaScript comment with /* and */ in an html file that could throw off Detect Indent, for example.