Skip to content

Commit

Permalink
Remove the onEnter rules from html in php as they will never get appl…
Browse files Browse the repository at this point in the history
…ied in a php block #39142
  • Loading branch information
ramya-rao-a committed Dec 5, 2017
1 parent 7d45b64 commit 6aa6f0d
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions extensions/php/src/phpMain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ import PHPHoverProvider from './features/hoverProvider';
import PHPSignatureHelpProvider from './features/signatureHelpProvider';
import PHPValidationProvider from './features/validationProvider';

const EMPTY_ELEMENTS: string[] = ['area', 'base', 'br', 'col', 'embed', 'hr', 'img', 'input', 'keygen', 'link', 'menuitem', 'meta', 'param', 'source', 'track', 'wbr'];

export function activate(context: vscode.ExtensionContext): any {

let validator = new PHPValidationProvider(context.workspaceState);
Expand Down Expand Up @@ -54,15 +52,6 @@ export function activate(context: vscode.ExtensionContext): any {
// e.g. *-----*/|
beforeText: /^(\t|(\ \ ))*\ \*[^/]*\*\/\s*$/,
action: { indentAction: vscode.IndentAction.None, removeText: 1 }
},
{
beforeText: new RegExp(`<(?!(?:${EMPTY_ELEMENTS.join('|')}))([_:\\w][_:\\w-.\\d]*)([^/>]*(?!/)>)[^<]*$`, 'i'),
afterText: /^<\/([_:\w][_:\w-.\d]*)\s*>/i,
action: { indentAction: vscode.IndentAction.IndentOutdent }
},
{
beforeText: new RegExp(`<(?!(?:${EMPTY_ELEMENTS.join('|')}))(\\w[\\w\\d]*)([^/>]*(?!/)>)[^<]*$`, 'i'),
action: { indentAction: vscode.IndentAction.Indent }
}
]
});
Expand Down

0 comments on commit 6aa6f0d

Please sign in to comment.