Michael Heath

Results 36 comments of Michael Heath

Powershell strings are all multiline. As such, the syntax is like PHP strings. ```powershell $var = 'abc def' ``` Only a closing quote is needed to terminate the string style....

A .ps1 generator for the autocomplete names: ```ps1 $pattern = "`t`t" [System.Collections.ArrayList]$entries = @() $keywords = ( 'begin', 'break', 'catch', 'class', 'continue', 'data', 'do', 'dynamicparam', 'else', 'elseif', 'end', 'enum', 'exit',...

> For grins and giggles, the above shrinking of the Change History margin can be done using the NppExec plugin using this one line script: `sci_sendmsg 2242 2 1` Perhaps...

`sci_sendmsg 2080 38 7` `IndicSetStyle` (2080) changes `INDICATOR_HISTORY_SAVED_INSERTION` (38) to `INDIC_ROUNDBOX` (7). ![npp2](https://user-images.githubusercontent.com/58158242/197804352-34ef4c49-896a-4bc0-9cc5-8716da07dc49.png) Is that less subtle? Hack harder :smile:

@alankilborn `sci_sendmsg 2080 38 7` applies to `INDICATOR_HISTORY_SAVED_INSERTION` (38) in which the document you show is **modified**, not **saved**. You have not changed the value of `INDICATOR_HISTORY_MODIFIED_INSERTION` (40) which is...

Hi, noob there. https://learn.microsoft.com/en-us/typography/font-list/verdana-pro > **Fixed pitch** False **Verdana (Pro)** is a proportional font, as not fixed pitch, as not a monospace font. A proportional font varies in width so...

> Current Workaround > >Delete the 'd' and retype. Or type `a`, view the list and if the list is too large, then press Esc to cancel the list and...

@mathlete2 > @mpheath thanks for addressing this request so quickly! > > > * Normally pressing `backspace` selects a previous item in the active autocomplete list. The new recall option...

@mathlete2 The options "filter" and "recall" are quite different operations. They can work together or separately. Recall code is like `if (not recall and autoc is active)` then do not...

> I believe this regression is caused by this fix: #12613 The code linked considers that there is only 2 wildcard characters `*` `?` and considers any other wildcard character...