components/prism-powershell.js

Branch


Log

Author Commit Date CI Message
Michael Schmidt d30a2da6 2021-12-10T14:34:42 Powershell: Fixed lookbehind + refactoring (#3245)
Michael Schmidt e2630d89 2021-09-26T11:52:18 ESLint: Added `regexp/sort-alternatives` rule (#3093)
Michael Schmidt e8d3b503 2021-06-27T14:56:07 ESLint: Added `regexp/strict` rule (#2944)
Michael Schmidt fa2225ff 2020-08-30T14:49:51 Removed duplicate alternatives in various languages (#2524)
Michael Schmidt fec39bcf 2020-04-27T22:23:57 Powershell: New functions pattern bases on naming conventions (#2301)
Michael Schmidt 7a554b5f 2020-04-16T22:27:54 Fixed several cases of exponential backtracking (#2268)
Michael Schmidt c187e229 2019-10-16T12:06:22 Added test for unused capturing groups (#1996) This adds a test that checks for unused capturing groups in patterns and another test which ensures that lookbehind groups are always the first thing being matched in a pattern.
Michael Schmidt bc53e093 2019-03-11T00:20:18 More variables for better code compression (#1489) This introduces more variables for better code compression in a few languages.
Golmote 9272d6f4 2018-04-27T08:27:02 Powershell: Allow for one level of nesting in expressions inside strings. Fix #1407
Golmote d2c026ef 2018-03-20T20:56:40 Powershell: Add lookbehind to fix function interpolation inside strings. Fix #1361
Golmote cc80ccda 2018-03-13T08:15:56 Remove most of the cloning occurrences in language definitions.
Golmote 3bc3e9cd 2018-03-02T00:33:04 Powershell: Add support for two levels of nested brackets inside namespace pattern. Fixes #1317
Golmote 0d05957a 2017-10-22T15:13:28 PowerShell: Regexp optimisation + don't use captures if not needed
Valtteri Laitinen 8aa2cc4a 2017-05-08T13:56:50 Replace [\w\W] with [\s\S] and [0-9] with \d in regexes (#1107) * Replace [\w\W] with [^] and [0-9] with \d in regexes * Replace [\s\S] with [^] * Replace [^] with [\s\S]
rbricheno 0e3e938d 2016-06-15T17:13:07 Fix highlighting of empty comments A single # on a line by itself with no other characters following it is a valid comment in powershell.
Andreas Rohner 964450e1 2016-04-30T13:35:01 Apply the new greedy flag to a few languages This patch applies the new greedy flag to a few languages and adds the corresponding test cases.
Daniel Flint 27ea7685 2015-08-29T10:29:39 Incorporate code review feedback
Daniel Flint fce9b0ce 2015-08-29T09:20:35 Remaining test cases for PowerShell
Daniel Flint c2ed02da 2015-08-28T23:29:11 More tests
Daniel Flint 118eb8d4 2015-08-28T23:03:44 Starting with powershell tests
Daniel Flint 14da55c1 2015-08-27T14:18:16 Update definitions for command/alias/operators. Double and single quoted strings behave differently, the later uses interpolation and can contain nested PowerShell.
Golmote b1fd5bdc 2015-03-10T08:27:53 Removed unused global flag in all grammars
Daniel Flint 905d952f 2014-12-31T11:45:30 Multiline strings, Booleans, combine regexps, punctuation
Daniel Flint 75f4745c 2014-12-31T10:41:54 Filtered alias list
Daniel Flint 9cfcc2d8 2014-12-31T10:19:19 PowerShell support