Re: Change background for Notes

2021-09-20 Thread Kyle DeMilo
Seconded. On Saturday, August 28, 2021 at 10:41:41 AM UTC-4 mark@educationsuperhighway.org wrote: > I really appreciate the new Notes feature. I wish there were a way to > change the background color for notes so that it is easy to tell at a > glance when I'm working in a notes window vs.

Re: Add text to beginning and end of file, using a Textfactory?

2021-09-20 Thread jj
Hi Adam, Building on Rich's answer, you could use the Canonize functionality here. (Quoted from the User Manual) Canonize This command allows you to perform batch search and replace operations which are governed by a pre-defined file. The transformation file is itself a list of paired search

Re: Add text to beginning and end of file, using a Textfactory?

2021-09-20 Thread Rich Siegel
On 20 Sep 2021, at 14:16, Adam Potthast wrote: I'm looking for a textfactory action like "Prefix/Suffix Lines", but I want to automatically add a string to the beginning and end of each file (not each line). I figured finding this would be easy, but so far it has escaped me. Using Grep,

Add text to beginning and end of file, using a Textfactory?

2021-09-20 Thread Adam Potthast
Hello everyone, I'm looking for a textfactory action like "Prefix/Suffix Lines", but I want to automatically add a string to the beginning and end of each file (not each line). I figured finding this would be easy, but so far it has escaped me. So ideally the input files would go from being:

Re: How to replace contents between two specific words

2021-09-20 Thread Neil Faiman
(?:subpattern) by itself makes the parentheses non-capturing. But (?letters:subpattern) sets GREP options that apply just to the subpattern within the parentheses. (The alternative is (?letters) which sets GREP options that apply to everything that comes after it in the pattern.) The ?s